diff --git a/src/server/project.ts b/src/server/project.ts index 05e6442a84c42..e3dc2b77369d6 100644 --- a/src/server/project.ts +++ b/src/server/project.ts @@ -1605,6 +1605,7 @@ namespace ts.server { } protected enableGlobalPlugins(options: CompilerOptions, pluginConfigOverrides: Map | undefined): void { + if (!this.projectService.globalPlugins.length) return; const host = this.projectService.host; if (!host.require && !host.importPlugin) { @@ -1619,20 +1620,18 @@ namespace ts.server { combinePaths(this.projectService.getExecutingFilePath(), "../../.."), ]; - if (this.projectService.globalPlugins) { - // Enable global plugins with synthetic configuration entries - for (const globalPluginName of this.projectService.globalPlugins) { - // Skip empty names from odd commandline parses - if (!globalPluginName) continue; + // Enable global plugins with synthetic configuration entries + for (const globalPluginName of this.projectService.globalPlugins) { + // Skip empty names from odd commandline parses + if (!globalPluginName) continue; - // Skip already-locally-loaded plugins - if (options.plugins && options.plugins.some(p => p.name === globalPluginName)) continue; + // Skip already-locally-loaded plugins + if (options.plugins && options.plugins.some(p => p.name === globalPluginName)) continue; - // Provide global: true so plugins can detect why they can't find their config - this.projectService.logger.info(`Loading global plugin ${globalPluginName}`); + // Provide global: true so plugins can detect why they can't find their config + this.projectService.logger.info(`Loading global plugin ${globalPluginName}`); - this.enablePlugin({ name: globalPluginName, global: true } as PluginImport, searchPaths, pluginConfigOverrides); - } + this.enablePlugin({ name: globalPluginName, global: true } as PluginImport, searchPaths, pluginConfigOverrides); } } @@ -2521,6 +2520,7 @@ namespace ts.server { /*@internal*/ enablePluginsWithOptions(options: CompilerOptions, pluginConfigOverrides: ESMap | undefined): void { + if (!options.plugins?.length && !this.projectService.globalPlugins.length) return; const host = this.projectService.host; if (!host.require && !host.importPlugin) { this.projectService.logger.info("Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded"); diff --git a/src/testRunner/unittests/config/commandLineParsing.ts b/src/testRunner/unittests/config/commandLineParsing.ts index e2b48977106b6..4b4c200d49985 100644 --- a/src/testRunner/unittests/config/commandLineParsing.ts +++ b/src/testRunner/unittests/config/commandLineParsing.ts @@ -1,530 +1,114 @@ namespace ts { describe("unittests:: config:: commandLineParsing:: parseCommandLine", () => { - - function assertParseResult(commandLine: string[], expectedParsedCommandLine: ParsedCommandLine, workerDiagnostic?: () => ParseCommandLineWorkerDiagnostics) { - const parsed = parseCommandLineWorker(workerDiagnostic?.() || compilerOptionsDidYouMeanDiagnostics, commandLine); - assert.deepEqual(parsed.options, expectedParsedCommandLine.options); - assert.deepEqual(parsed.watchOptions, expectedParsedCommandLine.watchOptions); - - const parsedErrors = parsed.errors; - const expectedErrors = expectedParsedCommandLine.errors; - assert.isTrue(parsedErrors.length === expectedErrors.length, `Expected error: ${JSON.stringify(expectedErrors)}. Actual error: ${JSON.stringify(parsedErrors)}.`); - for (let i = 0; i < parsedErrors.length; i++) { - const parsedError = parsedErrors[i]; - const expectedError = expectedErrors[i]; - assert.equal(parsedError.code, expectedError.code); - assert.equal(parsedError.category, expectedError.category); - // Allow matching a prefix of the error message - if (typeof expectedError.messageText === "string" && expectedError.messageText.includes("[...]")) { - const prefix = expectedError.messageText.split("[...]")[0]; - assert(expectedError.messageText.startsWith(prefix)); - } - else { - assert.equal(parsedError.messageText, expectedError.messageText); - } - } - - const parsedFileNames = parsed.fileNames; - const expectedFileNames = expectedParsedCommandLine.fileNames; - assert.isTrue(parsedFileNames.length === expectedFileNames.length, `Expected fileNames: [${JSON.stringify(expectedFileNames)}]. Actual fileNames: [${JSON.stringify(parsedFileNames)}].`); - for (let i = 0; i < parsedFileNames.length; i++) { - const parsedFileName = parsedFileNames[i]; - const expectedFileName = expectedFileNames[i]; - assert.equal(parsedFileName, expectedFileName); - } - } - - it("Parse single option of library flag ", () => { - // --lib es6 0.ts - assertParseResult(["--lib", "es6", "0.ts"], - { - errors: [], - fileNames: ["0.ts"], - options: { - lib: ["lib.es2015.d.ts"] - } - }); - }); - - it("Handles 'may only be used with --build' flags", () => { - const buildFlags = ["--clean", "--dry", "--force", "--verbose"]; - - assertParseResult(buildFlags, { - errors: buildFlags.map(buildFlag => ({ - messageText: `Compiler option '${buildFlag}' may only be used with '--build'.`, - category: Diagnostics.Compiler_option_0_may_only_be_used_with_build.category, - code: Diagnostics.Compiler_option_0_may_only_be_used_with_build.code, - file: undefined, - start: undefined, - length: undefined - })), - fileNames: [], - options: {} + function assertParseResult(subScenario: string, commandLine: string[], workerDiagnostic?: () => ParseCommandLineWorkerDiagnostics) { + it(subScenario, () => { + const baseline: string[] = []; + baseline.push(commandLine.join(" ")); + const parsed = parseCommandLineWorker(workerDiagnostic?.() || compilerOptionsDidYouMeanDiagnostics, commandLine); + baseline.push("CompilerOptions::"); + baseline.push(JSON.stringify(parsed.options, /*replacer*/ undefined, " ")); + baseline.push("WatchOptions::"); + baseline.push(JSON.stringify(parsed.watchOptions, /*replacer*/ undefined, " ")); + baseline.push("FileNames::"); + baseline.push(parsed.fileNames.join()); + baseline.push("Errors::"); + baseline.push(formatDiagnostics(parsed.errors, { + getCurrentDirectory: () => "/", + getCanonicalFileName: identity, + getNewLine: () => "\n", + })); + Harness.Baseline.runBaseline(`config/commandLineParsing/parseCommandLine/${subScenario}.js`, baseline.join("\n")); }); - }); - - it("Handles 'did you mean?' for misspelt flags", () => { - // --declarations --allowTS - assertParseResult(["--declarations", "--allowTS"], { - errors: [ - { - messageText: "Unknown compiler option '--declarations'. Did you mean 'declaration'?", - category: Diagnostics.Unknown_compiler_option_0_Did_you_mean_1.category, - code: Diagnostics.Unknown_compiler_option_0_Did_you_mean_1.code, - file: undefined, - start: undefined, - length: undefined - }, - { - messageText: "Unknown compiler option '--allowTS'. Did you mean 'allowJs'?", - category: Diagnostics.Unknown_compiler_option_0_Did_you_mean_1.category, - code: Diagnostics.Unknown_compiler_option_0_Did_you_mean_1.code, - file: undefined, - start: undefined, - length: undefined - } - ], - fileNames: [], - options: {} - }); - }); - - - it("Parse multiple options of library flags ", () => { - // --lib es5,es2015.symbol.wellknown 0.ts - assertParseResult(["--lib", "es5,es2015.symbol.wellknown", "0.ts"], - { - errors: [], - fileNames: ["0.ts"], - options: { - lib: ["lib.es5.d.ts", "lib.es2015.symbol.wellknown.d.ts"] - } - }); - }); - - it("Parse invalid option of library flags ", () => { - // --lib es5,invalidOption 0.ts - assertParseResult(["--lib", "es5,invalidOption", "0.ts"], - { - errors: [{ - messageText: "Argument for '--lib' option must be: 'es5', 'es6' [...]", - category: Diagnostics.Argument_for_0_option_must_be_Colon_1.category, - code: Diagnostics.Argument_for_0_option_must_be_Colon_1.code, - file: undefined, - start: undefined, - length: undefined, - }], - fileNames: ["0.ts"], - options: { - lib: ["lib.es5.d.ts"] - } - }); - }); - it("Parse empty options of --jsx ", () => { - // 0.ts --jsx - assertParseResult(["0.ts", "--jsx"], - { - errors: [{ - messageText: "Compiler option 'jsx' expects an argument.", - category: Diagnostics.Compiler_option_0_expects_an_argument.category, - code: Diagnostics.Compiler_option_0_expects_an_argument.code, - - file: undefined, - start: undefined, - length: undefined, - }, { - messageText: "Argument for '--jsx' option must be: 'preserve', 'react-native', 'react', 'react-jsx', 'react-jsxdev'.", - category: Diagnostics.Argument_for_0_option_must_be_Colon_1.category, - code: Diagnostics.Argument_for_0_option_must_be_Colon_1.code, - - file: undefined, - start: undefined, - length: undefined, - }], - fileNames: ["0.ts"], - options: { jsx: undefined } - }); - }); - - it("Parse empty options of --module ", () => { - // 0.ts -- - assertParseResult(["0.ts", "--module"], - { - errors: [{ - messageText: "Compiler option 'module' expects an argument.", - category: Diagnostics.Compiler_option_0_expects_an_argument.category, - code: Diagnostics.Compiler_option_0_expects_an_argument.code, - - file: undefined, - start: undefined, - length: undefined, - }, { - messageText: "Argument for '--module' option must be: 'none', 'commonjs', 'amd', 'system', 'umd', 'es6', 'es2015', 'es2020', 'es2022', 'esnext', 'node16', 'nodenext'.", - category: Diagnostics.Argument_for_0_option_must_be_Colon_1.category, - code: Diagnostics.Argument_for_0_option_must_be_Colon_1.code, - - file: undefined, - start: undefined, - length: undefined, - }], - fileNames: ["0.ts"], - options: { module: undefined } - }); - }); - - it("Parse empty options of --newLine ", () => { - // 0.ts --newLine - assertParseResult(["0.ts", "--newLine"], - { - errors: [{ - messageText: "Compiler option 'newLine' expects an argument.", - category: Diagnostics.Compiler_option_0_expects_an_argument.category, - code: Diagnostics.Compiler_option_0_expects_an_argument.code, - - file: undefined, - start: undefined, - length: undefined, - }, { - messageText: "Argument for '--newLine' option must be: 'crlf', 'lf'.", - category: Diagnostics.Argument_for_0_option_must_be_Colon_1.category, - code: Diagnostics.Argument_for_0_option_must_be_Colon_1.code, - - file: undefined, - start: undefined, - length: undefined, - }], - fileNames: ["0.ts"], - options: { newLine: undefined } - }); - }); - - it("Parse empty options of --target ", () => { - // 0.ts --target - assertParseResult(["0.ts", "--target"], - { - errors: [{ - messageText: "Compiler option 'target' expects an argument.", - category: Diagnostics.Compiler_option_0_expects_an_argument.category, - code: Diagnostics.Compiler_option_0_expects_an_argument.code, - - file: undefined, - start: undefined, - length: undefined, - }, { - messageText: "Argument for '--target' option must be: 'es3', 'es5', 'es6', 'es2015', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'esnext'.", - category: Diagnostics.Argument_for_0_option_must_be_Colon_1.category, - code: Diagnostics.Argument_for_0_option_must_be_Colon_1.code, - - file: undefined, - start: undefined, - length: undefined, - }], - fileNames: ["0.ts"], - options: { target: undefined } - }); - }); - - it("Parse empty options of --moduleResolution ", () => { - // 0.ts --moduleResolution - assertParseResult(["0.ts", "--moduleResolution"], - { - errors: [{ - messageText: "Compiler option 'moduleResolution' expects an argument.", - category: Diagnostics.Compiler_option_0_expects_an_argument.category, - code: Diagnostics.Compiler_option_0_expects_an_argument.code, - - file: undefined, - start: undefined, - length: undefined, - }, { - messageText: "Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'.", - category: Diagnostics.Argument_for_0_option_must_be_Colon_1.category, - code: Diagnostics.Argument_for_0_option_must_be_Colon_1.code, - - file: undefined, - start: undefined, - length: undefined, - }], - fileNames: ["0.ts"], - options: { moduleResolution: undefined } - }); - }); - - it("Parse empty options of --lib ", () => { - // 0.ts --lib - assertParseResult(["0.ts", "--lib"], - { - errors: [{ - messageText: "Compiler option 'lib' expects an argument.", - category: Diagnostics.Compiler_option_0_expects_an_argument.category, - code: Diagnostics.Compiler_option_0_expects_an_argument.code, - - file: undefined, - start: undefined, - length: undefined, - }], - fileNames: ["0.ts"], - options: { - lib: [] - } - }); - }); - - it("Parse empty string of --lib ", () => { - // 0.ts --lib - // This test is an error because the empty string is falsey - assertParseResult(["0.ts", "--lib", ""], - { - errors: [{ - messageText: "Compiler option 'lib' expects an argument.", - category: Diagnostics.Compiler_option_0_expects_an_argument.category, - code: Diagnostics.Compiler_option_0_expects_an_argument.code, - - file: undefined, - start: undefined, - length: undefined, - }], - fileNames: ["0.ts"], - options: { - lib: [] - } - }); - }); - - it("Parse immediately following command line argument of --lib ", () => { - // 0.ts --lib - assertParseResult(["0.ts", "--lib", "--sourcemap"], - { - errors: [], - fileNames: ["0.ts"], - options: { - lib: [], - sourceMap: true - } - }); - }); - - it("Parse --lib option with extra comma ", () => { - // --lib es5, es7 0.ts - assertParseResult(["--lib", "es5,", "es7", "0.ts"], - { - errors: [{ - messageText: "Argument for '--lib' option must be: 'es5', 'es6' [...].", - category: Diagnostics.Argument_for_0_option_must_be_Colon_1.category, - code: Diagnostics.Argument_for_0_option_must_be_Colon_1.code, - file: undefined, - start: undefined, - length: undefined, - }], - fileNames: ["es7", "0.ts"], - options: { - lib: ["lib.es5.d.ts"] - } - }); - }); - - it("Parse --lib option with trailing white-space ", () => { - // --lib es5, es7 0.ts - assertParseResult(["--lib", "es5, ", "es7", "0.ts"], - { - errors: [{ - messageText: "Argument for '--lib' option must be: 'es5', 'es6', [...]", - category: Diagnostics.Argument_for_0_option_must_be_Colon_1.category, - code: Diagnostics.Argument_for_0_option_must_be_Colon_1.code, - file: undefined, - start: undefined, - length: undefined, - }], - fileNames: ["es7", "0.ts"], - options: { - lib: ["lib.es5.d.ts"] - } - }); - }); - - it("Parse multiple compiler flags with input files at the end", () => { - // --lib es5,es2015.symbol.wellknown --target es5 0.ts - assertParseResult(["--lib", "es5,es2015.symbol.wellknown", "--target", "es5", "0.ts"], - { - errors: [], - fileNames: ["0.ts"], - options: { - lib: ["lib.es5.d.ts", "lib.es2015.symbol.wellknown.d.ts"], - target: ScriptTarget.ES5, - } - }); - }); - - it("Parse multiple compiler flags with input files in the middle", () => { - // --module commonjs --target es5 0.ts --lib es5,es2015.symbol.wellknown - assertParseResult(["--module", "commonjs", "--target", "es5", "0.ts", "--lib", "es5,es2015.symbol.wellknown"], - { - errors: [], - fileNames: ["0.ts"], - options: { - module: ModuleKind.CommonJS, - target: ScriptTarget.ES5, - lib: ["lib.es5.d.ts", "lib.es2015.symbol.wellknown.d.ts"], - } - }); - }); - - it("Parse multiple library compiler flags ", () => { - // --module commonjs --target es5 --lib es5 0.ts --library es2015.array,es2015.symbol.wellknown - assertParseResult(["--module", "commonjs", "--target", "es5", "--lib", "es5", "0.ts", "--lib", "es2015.core, es2015.symbol.wellknown "], - { - errors: [], - fileNames: ["0.ts"], - options: { - module: ModuleKind.CommonJS, - target: ScriptTarget.ES5, - lib: ["lib.es2015.core.d.ts", "lib.es2015.symbol.wellknown.d.ts"], - } - }); - }); - - it("Parse explicit boolean flag value", () => { - assertParseResult(["--strictNullChecks", "false", "0.ts"], - { - errors: [], - fileNames: ["0.ts"], - options: { - strictNullChecks: false, - } - }); - }); - - it("Parse non boolean argument after boolean flag", () => { - assertParseResult(["--noImplicitAny", "t", "0.ts"], - { - errors: [], - fileNames: ["t", "0.ts"], - options: { - noImplicitAny: true, - } - }); - }); - - it("Parse implicit boolean flag value", () => { - assertParseResult(["--strictNullChecks"], - { - errors: [], - fileNames: [], - options: { - strictNullChecks: true, - } - }); - }); - - it("parse --incremental", () => { - // --lib es6 0.ts - assertParseResult(["--incremental", "0.ts"], - { - errors: [], - fileNames: ["0.ts"], - options: { incremental: true } - }); - }); + } - it("parse --tsBuildInfoFile", () => { - // --lib es6 0.ts - assertParseResult(["--tsBuildInfoFile", "build.tsbuildinfo", "0.ts"], - { - errors: [], - fileNames: ["0.ts"], - options: { tsBuildInfoFile: "build.tsbuildinfo" } - }); - }); + // --lib es6 0.ts + assertParseResult("Parse single option of library flag", ["--lib", "es6", "0.ts"]); + assertParseResult("Handles may only be used with --build flags", ["--clean", "--dry", "--force", "--verbose"]); + // --declarations --allowTS + assertParseResult("Handles did you mean for misspelt flags", ["--declarations", "--allowTS"]); + // --lib es5,es2015.symbol.wellknown 0.ts + assertParseResult("Parse multiple options of library flags", ["--lib", "es5,es2015.symbol.wellknown", "0.ts"]); + // --lib es5,invalidOption 0.ts + assertParseResult("Parse invalid option of library flags", ["--lib", "es5,invalidOption", "0.ts"]); + // 0.ts --jsx + assertParseResult("Parse empty options of --jsx", ["0.ts", "--jsx"]); + // 0.ts -- + assertParseResult("Parse empty options of --module", ["0.ts", "--module"]); + // 0.ts --newLine + assertParseResult("Parse empty options of --newLine", ["0.ts", "--newLine"]); + // 0.ts --target + assertParseResult("Parse empty options of --target", ["0.ts", "--target"]); + // 0.ts --moduleResolution + assertParseResult("Parse empty options of --moduleResolution", ["0.ts", "--moduleResolution"]); + // 0.ts --lib + assertParseResult("Parse empty options of --lib", ["0.ts", "--lib"]); + // 0.ts --lib + // This test is an error because the empty string is falsey + assertParseResult("Parse empty string of --lib", ["0.ts", "--lib", ""]); + // 0.ts --lib + assertParseResult("Parse immediately following command line argument of --lib", ["0.ts", "--lib", "--sourcemap"]); + // --lib es5, es7 0.ts + assertParseResult("Parse --lib option with extra comma", ["--lib", "es5,", "es7", "0.ts"]); + // --lib es5, es7 0.ts + assertParseResult("Parse --lib option with trailing white-space", ["--lib", "es5, ", "es7", "0.ts"]); + // --lib es5,es2015.symbol.wellknown --target es5 0.ts + assertParseResult("Parse multiple compiler flags with input files at the end", ["--lib", "es5,es2015.symbol.wellknown", "--target", "es5", "0.ts"]); + // --module commonjs --target es5 0.ts --lib es5,es2015.symbol.wellknown + assertParseResult("Parse multiple compiler flags with input files in the middle", ["--module", "commonjs", "--target", "es5", "0.ts", "--lib", "es5,es2015.symbol.wellknown"]); + // --module commonjs --target es5 --lib es5 0.ts --library es2015.array,es2015.symbol.wellknown + assertParseResult("Parse multiple library compiler flags ", ["--module", "commonjs", "--target", "es5", "--lib", "es5", "0.ts", "--lib", "es2015.core, es2015.symbol.wellknown "]); + assertParseResult("Parse explicit boolean flag value", ["--strictNullChecks", "false", "0.ts"]); + assertParseResult("Parse non boolean argument after boolean flag", ["--noImplicitAny", "t", "0.ts"]); + assertParseResult("Parse implicit boolean flag value", ["--strictNullChecks"]); + assertParseResult("parse --incremental", ["--incremental", "0.ts"]); + assertParseResult("parse --tsBuildInfoFile", ["--tsBuildInfoFile", "build.tsbuildinfo", "0.ts"]); describe("parses command line null for tsconfig only option", () => { interface VerifyNull { + subScenario: string, optionName: string; nonNullValue?: string; workerDiagnostic?: () => ParseCommandLineWorkerDiagnostics; - diagnosticMessage: DiagnosticMessage; } - function verifyNull({ optionName, nonNullValue, workerDiagnostic, diagnosticMessage }: VerifyNull) { - it("allows setting it to null", () => { + function verifyNull({ subScenario, optionName, nonNullValue, workerDiagnostic }: VerifyNull) { + describe(subScenario, () => { assertParseResult( + `${subScenario} allows setting it to null`, [`--${optionName}`, "null", "0.ts"], - { - errors: [], - fileNames: ["0.ts"], - options: { [optionName]: undefined } - }, workerDiagnostic ); - }); - - if (nonNullValue) { - it("errors if non null value is passed", () => { + if (nonNullValue) { assertParseResult( + `${subScenario} errors if non null value is passed`, [`--${optionName}`, nonNullValue, "0.ts"], - { - errors: [{ - messageText: formatStringFromArgs(diagnosticMessage.message, [optionName]), - category: diagnosticMessage.category, - code: diagnosticMessage.code, - file: undefined, - start: undefined, - length: undefined - }], - fileNames: ["0.ts"], - options: {} - }, workerDiagnostic ); - }); - } + } - it("errors if its followed by another option", () => { assertParseResult( + `${subScenario} errors if its followed by another option`, ["0.ts", "--strictNullChecks", `--${optionName}`], - { - errors: [{ - messageText: formatStringFromArgs(diagnosticMessage.message, [optionName]), - category: diagnosticMessage.category, - code: diagnosticMessage.code, - file: undefined, - start: undefined, - length: undefined - }], - fileNames: ["0.ts"], - options: { strictNullChecks: true } - }, workerDiagnostic ); - }); - it("errors if its last option", () => { assertParseResult( + `${subScenario} errors if its last option`, ["0.ts", `--${optionName}`], - { - errors: [{ - messageText: formatStringFromArgs(diagnosticMessage.message, [optionName]), - category: diagnosticMessage.category, - code: diagnosticMessage.code, - file: undefined, - start: undefined, - length: undefined - }], - fileNames: ["0.ts"], - options: {} - }, workerDiagnostic ); }); } interface VerifyNullNonIncludedOption { + subScenario: string, type: () => "string" | "number" | ESMap; nonNullValue?: string; } - function verifyNullNonIncludedOption({ type, nonNullValue }: VerifyNullNonIncludedOption) { + function verifyNullNonIncludedOption({ subScenario, type, nonNullValue }: VerifyNullNonIncludedOption) { verifyNull({ + subScenario, optionName: "optionName", nonNullValue, - diagnosticMessage: Diagnostics.Option_0_can_only_be_specified_in_tsconfig_json_file_or_set_to_null_on_command_line, workerDiagnostic: () => { const optionDeclarations: CommandLineOption[] = [ ...compilerOptionsDidYouMeanDiagnostics.optionDeclarations, @@ -547,392 +131,101 @@ namespace ts { } describe("option of type boolean", () => { - it("allows setting it to false", () => { - assertParseResult( - ["--composite", "false", "0.ts"], - { - errors: [], - fileNames: ["0.ts"], - options: { composite: false } - } - ); - }); + assertParseResult( + "allows setting option type boolean to false", + ["--composite", "false", "0.ts"], + ); verifyNull({ + subScenario: "option of type boolean", optionName: "composite", nonNullValue: "true", - diagnosticMessage: Diagnostics.Option_0_can_only_be_specified_in_tsconfig_json_file_or_set_to_false_or_null_on_command_line }); }); - describe("option of type object", () => { - verifyNull({ - optionName: "paths", - diagnosticMessage: Diagnostics.Option_0_can_only_be_specified_in_tsconfig_json_file_or_set_to_null_on_command_line - }); + verifyNull({ + subScenario: "option of type object", + optionName: "paths", }); - describe("option of type list", () => { - verifyNull({ - optionName: "rootDirs", - nonNullValue: "abc,xyz", - diagnosticMessage: Diagnostics.Option_0_can_only_be_specified_in_tsconfig_json_file_or_set_to_null_on_command_line - }); + verifyNull({ + subScenario: "option of type list", + optionName: "rootDirs", + nonNullValue: "abc,xyz", }); - - describe("option of type string", () => { - verifyNullNonIncludedOption({ - type: () => "string", - nonNullValue: "hello" - }); + verifyNullNonIncludedOption({ + subScenario: "option of type string", + type: () => "string", + nonNullValue: "hello" }); - describe("option of type number", () => { - verifyNullNonIncludedOption({ - type: () => "number", - nonNullValue: "10" - }); + verifyNullNonIncludedOption({ + subScenario: "option of type number", + type: () => "number", + nonNullValue: "10" }); - describe("option of type Map", () => { - verifyNullNonIncludedOption({ - type: () => new Map(getEntries({ - node: ModuleResolutionKind.NodeJs, - classic: ModuleResolutionKind.Classic, - })), - nonNullValue: "node" - }); + verifyNullNonIncludedOption({ + subScenario: "option of type custom map", + type: () => new Map(getEntries({ + node: ModuleResolutionKind.NodeJs, + classic: ModuleResolutionKind.Classic, + })), + nonNullValue: "node" }); }); - it("allows tsconfig only option to be set to null", () => { - assertParseResult(["--composite", "null", "-tsBuildInfoFile", "null", "0.ts"], - { - errors: [], - fileNames: ["0.ts"], - options: { composite: undefined, tsBuildInfoFile: undefined } - }); - }); + assertParseResult("allows tsconfig only option to be set to null", ["--composite", "null", "-tsBuildInfoFile", "null", "0.ts"]); describe("Watch options", () => { - it("parse --watchFile", () => { - assertParseResult(["--watchFile", "UseFsEvents", "0.ts"], - { - errors: [], - fileNames: ["0.ts"], - options: {}, - watchOptions: { watchFile: WatchFileKind.UseFsEvents } - }); - }); - - it("parse --watchDirectory", () => { - assertParseResult(["--watchDirectory", "FixedPollingInterval", "0.ts"], - { - errors: [], - fileNames: ["0.ts"], - options: {}, - watchOptions: { watchDirectory: WatchDirectoryKind.FixedPollingInterval } - }); - }); - - it("parse --fallbackPolling", () => { - assertParseResult(["--fallbackPolling", "PriorityInterval", "0.ts"], - { - errors: [], - fileNames: ["0.ts"], - options: {}, - watchOptions: { fallbackPolling: PollingWatchKind.PriorityInterval } - }); - }); - - it("parse --synchronousWatchDirectory", () => { - assertParseResult(["--synchronousWatchDirectory", "0.ts"], - { - errors: [], - fileNames: ["0.ts"], - options: {}, - watchOptions: { synchronousWatchDirectory: true } - }); - }); - - it("errors on missing argument to --fallbackPolling", () => { - assertParseResult(["0.ts", "--fallbackPolling"], - { - errors: [ - { - messageText: "Watch option 'fallbackPolling' requires a value of type string.", - category: Diagnostics.Watch_option_0_requires_a_value_of_type_1.category, - code: Diagnostics.Watch_option_0_requires_a_value_of_type_1.code, - file: undefined, - start: undefined, - length: undefined - }, - { - messageText: "Argument for '--fallbackPolling' option must be: 'fixedinterval', 'priorityinterval', 'dynamicpriority', 'fixedchunksize'.", - category: Diagnostics.Argument_for_0_option_must_be_Colon_1.category, - code: Diagnostics.Argument_for_0_option_must_be_Colon_1.code, - file: undefined, - start: undefined, - length: undefined - } - ], - fileNames: ["0.ts"], - options: {}, - watchOptions: { fallbackPolling: undefined } - }); - }); - - it("parse --excludeDirectories", () => { - assertParseResult(["--excludeDirectories", "**/temp", "0.ts"], - { - errors: [], - fileNames: ["0.ts"], - options: {}, - watchOptions: { excludeDirectories: ["**/temp"] } - }); - }); - - it("errors on invalid excludeDirectories", () => { - assertParseResult(["--excludeDirectories", "**/../*", "0.ts"], - { - errors: [ - { - messageText: `File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '**/../*'.`, - category: Diagnostics.File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0.category, - code: Diagnostics.File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0.code, - file: undefined, - start: undefined, - length: undefined - } - ], - fileNames: ["0.ts"], - options: {}, - watchOptions: { excludeDirectories: [] } - }); - }); - - it("parse --excludeFiles", () => { - assertParseResult(["--excludeFiles", "**/temp/*.ts", "0.ts"], - { - errors: [], - fileNames: ["0.ts"], - options: {}, - watchOptions: { excludeFiles: ["**/temp/*.ts"] } - }); - }); - - it("errors on invalid excludeFiles", () => { - assertParseResult(["--excludeFiles", "**/../*", "0.ts"], - { - errors: [ - { - messageText: `File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '**/../*'.`, - category: Diagnostics.File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0.category, - code: Diagnostics.File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0.code, - file: undefined, - start: undefined, - length: undefined - } - ], - fileNames: ["0.ts"], - options: {}, - watchOptions: { excludeFiles: [] } - }); - }); + assertParseResult("parse --watchFile", ["--watchFile", "UseFsEvents", "0.ts"]); + assertParseResult("parse --watchDirectory", ["--watchDirectory", "FixedPollingInterval", "0.ts"]); + assertParseResult("parse --fallbackPolling", ["--fallbackPolling", "PriorityInterval", "0.ts"]); + assertParseResult("parse --synchronousWatchDirectory", ["--synchronousWatchDirectory", "0.ts"]); + assertParseResult("errors on missing argument to --fallbackPolling", ["0.ts", "--fallbackPolling"]); + assertParseResult("parse --excludeDirectories", ["--excludeDirectories", "**/temp", "0.ts"]); + assertParseResult("errors on invalid excludeDirectories", ["--excludeDirectories", "**/../*", "0.ts"]); + assertParseResult("parse --excludeFiles", ["--excludeFiles", "**/temp/*.ts", "0.ts"]); + assertParseResult("errors on invalid excludeFiles", ["--excludeFiles", "**/../*", "0.ts"]); }); }); describe("unittests:: config:: commandLineParsing:: parseBuildOptions", () => { - function assertParseResult(commandLine: string[], expectedParsedBuildCommand: ParsedBuildCommand) { - const parsed = parseBuildCommand(commandLine); - assert.deepEqual(parsed.buildOptions, expectedParsedBuildCommand.buildOptions); - assert.deepEqual(parsed.watchOptions, expectedParsedBuildCommand.watchOptions); - - const parsedErrors = parsed.errors; - const expectedErrors = expectedParsedBuildCommand.errors; - assert.isTrue(parsedErrors.length === expectedErrors.length, `Expected error: ${JSON.stringify(expectedErrors)}. Actual error: ${JSON.stringify(parsedErrors)}.`); - for (let i = 0; i < parsedErrors.length; i++) { - const parsedError = parsedErrors[i]; - const expectedError = expectedErrors[i]; - assert.equal(parsedError.code, expectedError.code); - assert.equal(parsedError.category, expectedError.category); - assert.equal(parsedError.messageText, expectedError.messageText); - } - - const parsedProjects = parsed.projects; - const expectedProjects = expectedParsedBuildCommand.projects; - assert.deepEqual(parsedProjects, expectedProjects, `Expected projects: [${JSON.stringify(expectedProjects)}]. Actual projects: [${JSON.stringify(parsedProjects)}].`); - } - it("parse build without any options ", () => { - // --lib es6 0.ts - assertParseResult([], - { - errors: [], - projects: ["."], - buildOptions: {}, - watchOptions: undefined - }); - }); - - it("Parse multiple options", () => { - // --lib es5,es2015.symbol.wellknown 0.ts - assertParseResult(["--verbose", "--force", "tests"], - { - errors: [], - projects: ["tests"], - buildOptions: { verbose: true, force: true }, - watchOptions: undefined - }); - }); - - it("Parse option with invalid option ", () => { - // --lib es5,invalidOption 0.ts - assertParseResult(["--verbose", "--invalidOption"], - { - errors: [{ - messageText: "Unknown build option '--invalidOption'.", - category: Diagnostics.Unknown_build_option_0.category, - code: Diagnostics.Unknown_build_option_0.code, - file: undefined, - start: undefined, - length: undefined, - }], - projects: ["."], - buildOptions: { verbose: true }, - watchOptions: undefined - }); - }); - - it("parse build with listFilesOnly ", () => { - // --lib es6 0.ts - assertParseResult(["--listFilesOnly"], - { - errors: [{ - messageText: "Compiler option '--listFilesOnly' may not be used with '--build'.", - category: Diagnostics.Compiler_option_0_may_not_be_used_with_build.category, - code: Diagnostics.Compiler_option_0_may_not_be_used_with_build.code, - file: undefined, - start: undefined, - length: undefined, - }], - projects: ["."], - buildOptions: {}, - watchOptions: undefined, - }); - }); - - it("Parse multiple flags with input projects at the end", () => { - // --lib es5,es2015.symbol.wellknown --target es5 0.ts - assertParseResult(["--force", "--verbose", "src", "tests"], - { - errors: [], - projects: ["src", "tests"], - buildOptions: { force: true, verbose: true }, - watchOptions: undefined, - }); - }); - - it("Parse multiple flags with input projects in the middle", () => { - // --module commonjs --target es5 0.ts --lib es5,es2015.symbol.wellknown - assertParseResult(["--force", "src", "tests", "--verbose"], - { - errors: [], - projects: ["src", "tests"], - buildOptions: { force: true, verbose: true }, - watchOptions: undefined, - }); - }); - - it("Parse multiple flags with input projects in the beginning", () => { - // --module commonjs --target es5 0.ts --lib es5,es2015.symbol.wellknown - assertParseResult(["src", "tests", "--force", "--verbose"], - { - errors: [], - projects: ["src", "tests"], - buildOptions: { force: true, verbose: true }, - watchOptions: undefined, - }); - }); - - it("parse build with --incremental", () => { - // --lib es6 0.ts - assertParseResult(["--incremental", "tests"], - { - errors: [], - projects: ["tests"], - buildOptions: { incremental: true }, - watchOptions: undefined, - }); - }); - - it("parse build with --locale en-us", () => { - // --lib es6 0.ts - assertParseResult(["--locale", "en-us", "src"], - { - errors: [], - projects: ["src"], - buildOptions: { locale: "en-us" }, - watchOptions: undefined, - }); - }); - - it("parse build with --tsBuildInfoFile", () => { - // --lib es6 0.ts - assertParseResult(["--tsBuildInfoFile", "build.tsbuildinfo", "tests"], - { - errors: [{ - messageText: "Compiler option '--tsBuildInfoFile' may not be used with '--build'.", - category: Diagnostics.Compiler_option_0_may_not_be_used_with_build.category, - code: Diagnostics.Compiler_option_0_may_not_be_used_with_build.code, - file: undefined, - start: undefined, - length: undefined - }], - projects: ["build.tsbuildinfo", "tests"], - buildOptions: {}, - watchOptions: undefined, - }); - }); - - it("reports other common 'may not be used with --build' flags", () => { - const buildFlags = ["--declaration", "--strict"]; - - assertParseResult(buildFlags, { - errors: buildFlags.map(buildFlag => ({ - messageText: `Compiler option '${buildFlag}' may not be used with '--build'.`, - category: Diagnostics.Compiler_option_0_may_not_be_used_with_build.category, - code: Diagnostics.Compiler_option_0_may_not_be_used_with_build.code, - file: undefined, - start: undefined, - length: undefined - })), - buildOptions: {}, - projects: ["."], - watchOptions: undefined, + function assertParseResult(subScenario: string, commandLine: string[]) { + it(subScenario, () => { + const baseline: string[] = []; + baseline.push(commandLine.join(" ")); + const parsed = parseBuildCommand(commandLine); + baseline.push("buildOptions::"); + baseline.push(JSON.stringify(parsed.buildOptions, /*replacer*/ undefined, " ")); + baseline.push("WatchOptions::"); + baseline.push(JSON.stringify(parsed.watchOptions, /*replacer*/ undefined, " ")); + baseline.push("Projects::"); + baseline.push(parsed.projects.join()); + baseline.push("Errors::"); + baseline.push(formatDiagnostics(parsed.errors, { + getCurrentDirectory: () => "/", + getCanonicalFileName: identity, + getNewLine: () => "\n", + })); + Harness.Baseline.runBaseline(`config/commandLineParsing/parseBuildOptions/${subScenario}.js`, baseline.join("\n")); }); - }); + } + assertParseResult("parse build without any options ", []); + assertParseResult("Parse multiple options", ["--verbose", "--force", "tests"]); + assertParseResult("Parse option with invalid option", ["--verbose", "--invalidOption"]); + assertParseResult("Parse multiple flags with input projects at the end", ["--force", "--verbose", "src", "tests"]); + assertParseResult("Parse multiple flags with input projects in the middle", ["--force", "src", "tests", "--verbose"]); + assertParseResult("Parse multiple flags with input projects in the beginning", ["src", "tests", "--force", "--verbose"]); + assertParseResult("parse build with --incremental", ["--incremental", "tests"]); + assertParseResult("parse build with --locale en-us", ["--locale", "en-us", "src"]); + assertParseResult("parse build with --tsBuildInfoFile", ["--tsBuildInfoFile", "build.tsbuildinfo", "tests"]); + assertParseResult("reports other common may not be used with --build flags", ["--declaration", "--strict"]); describe("Combining options that make no sense together", () => { function verifyInvalidCombination(flag1: keyof BuildOptions, flag2: keyof BuildOptions) { - it(`--${flag1} and --${flag2} together is invalid`, () => { - // --module commonjs --target es5 0.ts --lib es5,es2015.symbol.wellknown - assertParseResult([`--${flag1}`, `--${flag2}`], - { - errors: [{ - messageText: `Options '${flag1}' and '${flag2}' cannot be combined.`, - category: Diagnostics.Options_0_and_1_cannot_be_combined.category, - code: Diagnostics.Options_0_and_1_cannot_be_combined.code, - file: undefined, - start: undefined, - length: undefined, - }], - projects: ["."], - buildOptions: { [flag1]: true, [flag2]: true }, - watchOptions: undefined, - }); - }); + assertParseResult(`--${flag1} and --${flag2} together is invalid`, [`--${flag1}`, `--${flag2}`]); } - verifyInvalidCombination("clean", "force"); verifyInvalidCombination("clean", "verbose"); verifyInvalidCombination("clean", "watch"); @@ -940,120 +233,14 @@ namespace ts { }); describe("Watch options", () => { - it("parse --watchFile", () => { - assertParseResult(["--watchFile", "UseFsEvents", "--verbose"], - { - errors: [], - projects: ["."], - buildOptions: { verbose: true }, - watchOptions: { watchFile: WatchFileKind.UseFsEvents } - }); - }); - - it("parse --watchDirectory", () => { - assertParseResult(["--watchDirectory", "FixedPollingInterval", "--verbose"], - { - errors: [], - projects: ["."], - buildOptions: { verbose: true }, - watchOptions: { watchDirectory: WatchDirectoryKind.FixedPollingInterval } - }); - }); - - it("parse --fallbackPolling", () => { - assertParseResult(["--fallbackPolling", "PriorityInterval", "--verbose"], - { - errors: [], - projects: ["."], - buildOptions: { verbose: true }, - watchOptions: { fallbackPolling: PollingWatchKind.PriorityInterval } - }); - }); - - it("parse --synchronousWatchDirectory", () => { - assertParseResult(["--synchronousWatchDirectory", "--verbose"], - { - errors: [], - projects: ["."], - buildOptions: { verbose: true }, - watchOptions: { synchronousWatchDirectory: true } - }); - }); - - it("errors on missing argument", () => { - assertParseResult(["--verbose", "--fallbackPolling"], - { - errors: [ - { - messageText: "Watch option 'fallbackPolling' requires a value of type string.", - category: Diagnostics.Watch_option_0_requires_a_value_of_type_1.category, - code: Diagnostics.Watch_option_0_requires_a_value_of_type_1.code, - file: undefined, - start: undefined, - length: undefined - }, - { - messageText: "Argument for '--fallbackPolling' option must be: 'fixedinterval', 'priorityinterval', 'dynamicpriority', 'fixedchunksize'.", - category: Diagnostics.Argument_for_0_option_must_be_Colon_1.category, - code: Diagnostics.Argument_for_0_option_must_be_Colon_1.code, - file: undefined, - start: undefined, - length: undefined - } - ], - projects: ["."], - buildOptions: { verbose: true }, - watchOptions: { fallbackPolling: undefined } - }); - }); - - it("errors on invalid excludeDirectories", () => { - assertParseResult(["--excludeDirectories", "**/../*"], - { - errors: [ - { - messageText: `File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '**/../*'.`, - category: Diagnostics.File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0.category, - code: Diagnostics.File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0.code, - file: undefined, - start: undefined, - length: undefined - } - ], - projects: ["."], - buildOptions: {}, - watchOptions: { excludeDirectories: [] } - }); - }); - - it("parse --excludeFiles", () => { - assertParseResult(["--excludeFiles", "**/temp/*.ts"], - { - errors: [], - projects: ["."], - buildOptions: {}, - watchOptions: { excludeFiles: ["**/temp/*.ts"] } - }); - }); - - it("errors on invalid excludeFiles", () => { - assertParseResult(["--excludeFiles", "**/../*"], - { - errors: [ - { - messageText: `File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '**/../*'.`, - category: Diagnostics.File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0.category, - code: Diagnostics.File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0.code, - file: undefined, - start: undefined, - length: undefined - } - ], - projects: ["."], - buildOptions: {}, - watchOptions: { excludeFiles: [] } - }); - }); + assertParseResult("parse --watchFile", ["--watchFile", "UseFsEvents", "--verbose"]); + assertParseResult("parse --watchDirectory", ["--watchDirectory", "FixedPollingInterval", "--verbose"]); + assertParseResult("parse --fallbackPolling", ["--fallbackPolling", "PriorityInterval", "--verbose"]); + assertParseResult("parse --synchronousWatchDirectory", ["--synchronousWatchDirectory", "--verbose"]); + assertParseResult("errors on missing argument", ["--verbose", "--fallbackPolling"]); + assertParseResult("errors on invalid excludeDirectories", ["--excludeDirectories", "**/../*"]); + assertParseResult("parse --excludeFiles", ["--excludeFiles", "**/temp/*.ts"]); + assertParseResult("errors on invalid excludeFiles", ["--excludeFiles", "**/../*"]); }); }); } diff --git a/src/testRunner/unittests/config/initializeTSConfig.ts b/src/testRunner/unittests/config/initializeTSConfig.ts index 68c56ac4e179f..d92c906f46180 100644 --- a/src/testRunner/unittests/config/initializeTSConfig.ts +++ b/src/testRunner/unittests/config/initializeTSConfig.ts @@ -4,7 +4,7 @@ namespace ts { describe(name, () => { const commandLine = parseCommandLine(commandLinesArgs); const initResult = generateTSConfig(commandLine.options, commandLine.fileNames, "\n"); - const outputFileName = `tsConfig/${name.replace(/[^a-z0-9\-. ]/ig, "")}/tsconfig.json`; + const outputFileName = `config/initTSConfig/${name.replace(/[^a-z0-9\-. ]/ig, "")}/tsconfig.json`; it(`Correct output for ${outputFileName}`, () => { Harness.Baseline.runBaseline(outputFileName, initResult, { PrintDiff: true }); diff --git a/src/testRunner/unittests/config/showConfig.ts b/src/testRunner/unittests/config/showConfig.ts index f8905e3412677..530d3c7e56904 100644 --- a/src/testRunner/unittests/config/showConfig.ts +++ b/src/testRunner/unittests/config/showConfig.ts @@ -2,7 +2,7 @@ namespace ts { describe("unittests:: config:: showConfig", () => { function showTSConfigCorrectly(name: string, commandLinesArgs: string[], configJson?: object) { describe(name, () => { - const outputFileName = `showConfig/${name.replace(/[^a-z0-9\-./ ]/ig, "")}/tsconfig.json`; + const outputFileName = `config/showConfig/${name.replace(/[^a-z0-9\-./ ]/ig, "")}/tsconfig.json`; it(`Correct output for ${outputFileName}`, () => { const cwd = `/${name}`; diff --git a/src/testRunner/unittests/config/tsconfigParsingWatchOptions.ts b/src/testRunner/unittests/config/tsconfigParsingWatchOptions.ts index 120dd42d2c542..a8179558baa2f 100644 --- a/src/testRunner/unittests/config/tsconfigParsingWatchOptions.ts +++ b/src/testRunner/unittests/config/tsconfigParsingWatchOptions.ts @@ -42,190 +42,132 @@ namespace ts { interface VerifyWatchOptions { json: object; - expectedOptions: WatchOptions | undefined; additionalFiles?: vfs.FileSet; existingWatchOptions?: WatchOptions | undefined; - expectedErrors?: (sourceFile?: SourceFile) => Diagnostic[]; } - function verifyWatchOptions(scenario: () => VerifyWatchOptions[]) { - it("with json api", () => { - for (const { json, expectedOptions, additionalFiles, existingWatchOptions, expectedErrors } of scenario()) { - const parsed = getParsedCommandJson(json, additionalFiles, existingWatchOptions); - assert.deepEqual(parsed.watchOptions, expectedOptions, `With ${JSON.stringify(json)}`); - if (length(parsed.errors)) { - assert.deepEqual(parsed.errors, expectedErrors?.()); + function verifyWatchOptions(subScenario: string, scenario: () => VerifyWatchOptions[]) { + describe(subScenario, () => { + it("with json api", () => { + const baseline: string[] = []; + for (const { json, additionalFiles, existingWatchOptions } of scenario()) { + addToBaseLine(baseline, json, getParsedCommandJson(json, additionalFiles, existingWatchOptions)); } - else { - assert.equal(0, length(expectedErrors?.()), `Expected no errors`); - } - } - }); + runBaseline(`${subScenario} with json api`, baseline); + }); - it("with json source file api", () => { - for (const { json, expectedOptions, additionalFiles, existingWatchOptions, expectedErrors } of scenario()) { - const parsed = getParsedCommandJsonNode(json, additionalFiles, existingWatchOptions); - assert.deepEqual(parsed.watchOptions, expectedOptions); - if (length(parsed.errors)) { - assert.deepEqual(parsed.errors, expectedErrors?.(parsed.options.configFile)); - } - else { - assert.equal(0, length(expectedErrors?.(parsed.options.configFile)), `Expected no errors`); + it("with json source file api", () => { + const baseline: string[] = []; + for (const { json, additionalFiles, existingWatchOptions, } of scenario()) { + addToBaseLine(baseline, json, getParsedCommandJsonNode(json, additionalFiles, existingWatchOptions)); } - } + runBaseline(`${subScenario} with jsonSourceFile api`, baseline); + }); }); + function addToBaseLine(baseline: string[], json: object, parsed: ParsedCommandLine) { + baseline.push(`Input:: ${JSON.stringify(json, /*replacer*/ undefined, " ")}`); + baseline.push(`Result: WatchOptions::`); + baseline.push(JSON.stringify(parsed.watchOptions, /*replacer*/ undefined, " ")); + baseline.push(`Result: Errors::`); + baseline.push(formatDiagnosticsWithColorAndContext(parsed.errors, { + getCurrentDirectory: () => "/", + getCanonicalFileName: identity, + getNewLine: () => "\n" + })); + } + function runBaseline(subScenario: string, baseline: readonly string[]) { + Harness.Baseline.runBaseline(`config/tsconfigParsingWatchOptions/${subScenario}.js`, baseline.join("\n")); + } } - describe("no watchOptions specified option", () => { - verifyWatchOptions(() => [{ - json: {}, - expectedOptions: undefined - }]); - }); + verifyWatchOptions("no watchOptions specified option", () => [{ + json: {}, + }]); - describe("empty watchOptions specified option", () => { - verifyWatchOptions(() => [{ - json: { watchOptions: {} }, - expectedOptions: undefined - }]); - }); + verifyWatchOptions("empty watchOptions specified option", () => [{ + json: { watchOptions: {} }, + }]); - describe("extending config file", () => { - describe("when extending config file without watchOptions", () => { - verifyWatchOptions(() => [ - { - json: { - extends: "./base.json", - watchOptions: { watchFile: "UseFsEvents" } - }, - expectedOptions: { watchFile: WatchFileKind.UseFsEvents }, - additionalFiles: { "/base.json": "{}" } - }, - { - json: { extends: "./base.json", }, - expectedOptions: undefined, - additionalFiles: { "/base.json": "{}" } - } - ]); - }); + verifyWatchOptions("when extending config file without watchOptions", () => [ + { + json: { + extends: "./base.json", + watchOptions: { watchFile: "UseFsEvents" } + }, + additionalFiles: { "/base.json": "{}" } + }, + { + json: { extends: "./base.json", }, + additionalFiles: { "/base.json": "{}" } + } + ]); - describe("when extending config file with watchOptions", () => { - verifyWatchOptions(() => [ - { - json: { - extends: "./base.json", - watchOptions: { - watchFile: "UseFsEvents", - } - }, - expectedOptions: { - watchFile: WatchFileKind.UseFsEvents, - watchDirectory: WatchDirectoryKind.FixedPollingInterval - }, - additionalFiles: { - "/base.json": JSON.stringify({ - watchOptions: { - watchFile: "UseFsEventsOnParentDirectory", - watchDirectory: "FixedPollingInterval" - } - }) - } - }, - { - json: { - extends: "./base.json", - }, - expectedOptions: { - watchFile: WatchFileKind.UseFsEventsOnParentDirectory, - watchDirectory: WatchDirectoryKind.FixedPollingInterval - }, - additionalFiles: { - "/base.json": JSON.stringify({ - watchOptions: { - watchFile: "UseFsEventsOnParentDirectory", - watchDirectory: "FixedPollingInterval" - } - }) - } + verifyWatchOptions("when extending config file with watchOptions", () => [ + { + json: { + extends: "./base.json", + watchOptions: { + watchFile: "UseFsEvents", } - ]); - }); - }); - - describe("different options", () => { - verifyWatchOptions(() => [ - { - json: { watchOptions: { watchFile: "UseFsEvents" } }, - expectedOptions: { watchFile: WatchFileKind.UseFsEvents } - }, - { - json: { watchOptions: { watchDirectory: "UseFsEvents" } }, - expectedOptions: { watchDirectory: WatchDirectoryKind.UseFsEvents } - }, - { - json: { watchOptions: { fallbackPolling: "DynamicPriority" } }, - expectedOptions: { fallbackPolling: PollingWatchKind.DynamicPriority } - }, - { - json: { watchOptions: { synchronousWatchDirectory: true } }, - expectedOptions: { synchronousWatchDirectory: true } - }, - { - json: { watchOptions: { excludeDirectories: ["**/temp"] } }, - expectedOptions: { excludeDirectories: ["/**/temp"] } - }, - { - json: { watchOptions: { excludeFiles: ["**/temp/*.ts"] } }, - expectedOptions: { excludeFiles: ["/**/temp/*.ts"] } }, - { - json: { watchOptions: { excludeDirectories: ["**/../*"] } }, - expectedOptions: { excludeDirectories: [] }, - expectedErrors: sourceFile => [ - { - messageText: `File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '**/../*'.`, - category: Diagnostics.File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0.category, - code: Diagnostics.File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0.code, - file: sourceFile, - start: sourceFile && sourceFile.text.indexOf(`"**/../*"`), - length: sourceFile && `"**/../*"`.length, - reportsDeprecated: undefined, - reportsUnnecessary: undefined + additionalFiles: { + "/base.json": JSON.stringify({ + watchOptions: { + watchFile: "UseFsEventsOnParentDirectory", + watchDirectory: "FixedPollingInterval" } - ] + }) + } + }, + { + json: { + extends: "./base.json", }, - { - json: { watchOptions: { excludeFiles: ["**/../*"] } }, - expectedOptions: { excludeFiles: [] }, - expectedErrors: sourceFile => [ - { - messageText: `File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '**/../*'.`, - category: Diagnostics.File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0.category, - code: Diagnostics.File_specification_cannot_contain_a_parent_directory_that_appears_after_a_recursive_directory_wildcard_Asterisk_Asterisk_Colon_0.code, - file: sourceFile, - start: sourceFile && sourceFile.text.indexOf(`"**/../*"`), - length: sourceFile && `"**/../*"`.length, - reportsDeprecated: undefined, - reportsUnnecessary: undefined + additionalFiles: { + "/base.json": JSON.stringify({ + watchOptions: { + watchFile: "UseFsEventsOnParentDirectory", + watchDirectory: "FixedPollingInterval" } - ] - }, - ]); - }); + }) + } + } + ]); - describe("watch options extending passed in watch options", () => { - verifyWatchOptions(() => [ - { - json: { watchOptions: { watchFile: "UseFsEvents" } }, - expectedOptions: { watchFile: WatchFileKind.UseFsEvents, watchDirectory: WatchDirectoryKind.FixedPollingInterval }, - existingWatchOptions: { watchDirectory: WatchDirectoryKind.FixedPollingInterval } - }, - { - json: {}, - expectedOptions: { watchDirectory: WatchDirectoryKind.FixedPollingInterval }, - existingWatchOptions: { watchDirectory: WatchDirectoryKind.FixedPollingInterval } - }, - ]); - }); + verifyWatchOptions("different options", () => [ + { + json: { watchOptions: { watchFile: "UseFsEvents" } }, + }, + { + json: { watchOptions: { watchDirectory: "UseFsEvents" } }, + }, + { + json: { watchOptions: { fallbackPolling: "DynamicPriority" } }, + }, + { + json: { watchOptions: { synchronousWatchDirectory: true } }, + }, + { + json: { watchOptions: { excludeDirectories: ["**/temp"] } }, + }, + { + json: { watchOptions: { excludeFiles: ["**/temp/*.ts"] } }, + }, + { + json: { watchOptions: { excludeDirectories: ["**/../*"] } }, + }, + { + json: { watchOptions: { excludeFiles: ["**/../*"] } }, + }, + ]); + + verifyWatchOptions("watch options extending passed in watch options", () => [ + { + json: { watchOptions: { watchFile: "UseFsEvents" } }, + }, + { + json: {}, + }, + ]); }); } diff --git a/src/testRunner/unittests/tsserver/configuredProjects.ts b/src/testRunner/unittests/tsserver/configuredProjects.ts index 3524e69206dfc..efe430930b19b 100644 --- a/src/testRunner/unittests/tsserver/configuredProjects.ts +++ b/src/testRunner/unittests/tsserver/configuredProjects.ts @@ -577,7 +577,7 @@ namespace ts.projectSystem { content: "let zz = 1;" }; host.writeFile(file5.path, file5.content); - projectService.baselineHost("File5 written"); + projectService.testhost.baselineHost("File5 written"); projectService.openClientFile(file5.path); baselineTsserverLogs("configuredProjects", "Open ref of configured project when open file gets added to the project as part of configured file update", projectService); diff --git a/src/testRunner/unittests/tsserver/helpers.ts b/src/testRunner/unittests/tsserver/helpers.ts index 82b4946e42ce4..17b449b8459ea 100644 --- a/src/testRunner/unittests/tsserver/helpers.ts +++ b/src/testRunner/unittests/tsserver/helpers.ts @@ -343,38 +343,57 @@ namespace ts.projectSystem { } } - function patchHostTimeouts(host: TestFSWithWatch.TestServerHostTrackingWrittenFiles, session: TestSession | TestProjectService) { + export type TestSessionAndServiceHost = TestFSWithWatch.TestServerHostTrackingWrittenFiles & { + baselineHost(title: string): void; + }; + function patchHostTimeouts( + inputHost: TestFSWithWatch.TestServerHostTrackingWrittenFiles, + session: TestSession | TestProjectService + ) { + const host = inputHost as TestSessionAndServiceHost; const originalCheckTimeoutQueueLength = host.checkTimeoutQueueLength; const originalRunQueuedTimeoutCallbacks = host.runQueuedTimeoutCallbacks; const originalRunQueuedImmediateCallbacks = host.runQueuedImmediateCallbacks; + let hostDiff: ReturnType | undefined; host.checkTimeoutQueueLengthAndRun = checkTimeoutQueueLengthAndRun; host.checkTimeoutQueueLength = checkTimeoutQueueLength; host.runQueuedTimeoutCallbacks = runQueuedTimeoutCallbacks; host.runQueuedImmediateCallbacks = runQueuedImmediateCallbacks; + host.baselineHost = baselineHost; + return host; function checkTimeoutQueueLengthAndRun(expected: number) { - session.baselineHost(`Before checking timeout queue length (${expected}) and running`); + host.baselineHost(`Before checking timeout queue length (${expected}) and running`); originalCheckTimeoutQueueLength.call(host, expected); originalRunQueuedTimeoutCallbacks.call(host); - session.baselineHost(`After checking timeout queue length (${expected}) and running`); + host.baselineHost(`After checking timeout queue length (${expected}) and running`); } function checkTimeoutQueueLength(expected: number) { - session.baselineHost(`Checking timeout queue length: ${expected}`); + host.baselineHost(`Checking timeout queue length: ${expected}`); originalCheckTimeoutQueueLength.call(host, expected); } function runQueuedTimeoutCallbacks(timeoutId?: number) { - session.baselineHost(`Before running timeout callback${timeoutId === undefined ? "s" : timeoutId}`); + host.baselineHost(`Before running timeout callback${timeoutId === undefined ? "s" : timeoutId}`); originalRunQueuedTimeoutCallbacks.call(host, timeoutId); - session.baselineHost(`After running timeout callback${timeoutId === undefined ? "s" : timeoutId}`); + host.baselineHost(`After running timeout callback${timeoutId === undefined ? "s" : timeoutId}`); } function runQueuedImmediateCallbacks(checkCount?: number) { - session.baselineHost(`Before running immediate callbacks${checkCount === undefined ? "" : ` and checking length (${checkCount})`}`); + host.baselineHost(`Before running immediate callbacks${checkCount === undefined ? "" : ` and checking length (${checkCount})`}`); originalRunQueuedImmediateCallbacks.call(host, checkCount); - session.baselineHost(`Before running immediate callbacks${checkCount === undefined ? "" : ` and checking length (${checkCount})`}`); + host.baselineHost(`Before running immediate callbacks${checkCount === undefined ? "" : ` and checking length (${checkCount})`}`); + } + + function baselineHost(title: string) { + if (!session.logger.hasLevel(server.LogLevel.verbose)) return; + session.logger.logs.push(title); + host.diff(session.logger.logs, hostDiff); + host.serializeWatches(session.logger.logs); + hostDiff = host.snap(); + host.writtenFiles.clear(); } } @@ -385,15 +404,16 @@ namespace ts.projectSystem { export class TestSession extends server.Session { private seq = 0; public events: protocol.Event[] = []; - public testhost: TestFSWithWatch.TestServerHostTrackingWrittenFiles; + public testhost: TestSessionAndServiceHost; public logger: Logger; - private hostDiff: ReturnType | undefined; constructor(opts: TestSessionOptions) { super(opts); this.logger = opts.logger; - this.testhost = TestFSWithWatch.changeToHostTrackingWrittenFiles(this.host as TestServerHost); - patchHostTimeouts(this.testhost, this); + this.testhost = patchHostTimeouts( + TestFSWithWatch.changeToHostTrackingWrittenFiles(this.host as TestServerHost), + this + ); } getProjectService() { @@ -432,19 +452,10 @@ namespace ts.projectSystem { private baseline(type: "request" | "response", requestOrResult: T): T { if (!this.logger.hasLevel(server.LogLevel.verbose)) return requestOrResult; if (type === "request") this.logger.info(`request:${server.indent(JSON.stringify(requestOrResult, undefined, 2))}`); - this.baselineHost(type === "request" ? "Before request" : "After request"); + this.testhost.baselineHost(type === "request" ? "Before request" : "After request"); if (type === "response") this.logger.info(`response:${server.indent(JSON.stringify(requestOrResult, undefined, 2))}`); return requestOrResult; } - - baselineHost(title: string) { - if (!this.logger.hasLevel(server.LogLevel.verbose)) return; - this.logger.logs.push(title); - this.testhost.diff(this.logger.logs, this.hostDiff); - this.testhost.serializeWatches(this.logger.logs); - this.hostDiff = this.testhost.snap(); - this.testhost.writtenFiles.clear(); - } } export function createSession(host: server.ServerHost, opts: Partial = {}) { @@ -511,8 +522,7 @@ namespace ts.projectSystem { } export class TestProjectService extends server.ProjectService { - public testhost: TestFSWithWatch.TestServerHostTrackingWrittenFiles; - private hostDiff: ReturnType | undefined; + public testhost: TestSessionAndServiceHost; constructor(host: TestServerHost, public logger: Logger, cancellationToken: HostCancellationToken, useSingleInferredProject: boolean, typingsInstaller: server.ITypingsInstaller, opts: Partial = {}) { super({ @@ -526,23 +536,16 @@ namespace ts.projectSystem { typesMapLocation: customTypesMap.path, ...opts }); - this.testhost = TestFSWithWatch.changeToHostTrackingWrittenFiles(this.host as TestServerHost); - patchHostTimeouts(this.testhost, this); - this.baselineHost("Creating project service"); + this.testhost = patchHostTimeouts( + TestFSWithWatch.changeToHostTrackingWrittenFiles(this.host as TestServerHost), + this + ); + this.testhost.baselineHost("Creating project service"); } checkNumberOfProjects(count: { inferredProjects?: number, configuredProjects?: number, externalProjects?: number }) { checkNumberOfProjects(this, count); } - - baselineHost(title: string) { - if (!this.logger.hasLevel(server.LogLevel.verbose)) return; - this.logger.logs.push(title); - this.testhost.diff(this.logger.logs, this.hostDiff); - this.testhost.serializeWatches(this.logger.logs); - this.hostDiff = this.testhost.snap(); - this.testhost.writtenFiles.clear(); - } } export function createProjectService(host: TestServerHost, options?: Partial) { diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/--clean and --force together is invalid.js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/--clean and --force together is invalid.js new file mode 100644 index 0000000000000..ff703f25ce7fa --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/--clean and --force together is invalid.js @@ -0,0 +1,12 @@ +--clean --force +buildOptions:: +{ + "clean": true, + "force": true +} +WatchOptions:: + +Projects:: +. +Errors:: +error TS6370: Options 'clean' and 'force' cannot be combined. diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/--clean and --verbose together is invalid.js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/--clean and --verbose together is invalid.js new file mode 100644 index 0000000000000..a5f665c196d61 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/--clean and --verbose together is invalid.js @@ -0,0 +1,12 @@ +--clean --verbose +buildOptions:: +{ + "clean": true, + "verbose": true +} +WatchOptions:: + +Projects:: +. +Errors:: +error TS6370: Options 'clean' and 'verbose' cannot be combined. diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/--clean and --watch together is invalid.js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/--clean and --watch together is invalid.js new file mode 100644 index 0000000000000..754283ce029bd --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/--clean and --watch together is invalid.js @@ -0,0 +1,12 @@ +--clean --watch +buildOptions:: +{ + "clean": true, + "watch": true +} +WatchOptions:: + +Projects:: +. +Errors:: +error TS6370: Options 'clean' and 'watch' cannot be combined. diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/--watch and --dry together is invalid.js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/--watch and --dry together is invalid.js new file mode 100644 index 0000000000000..841b0dfbb57eb --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/--watch and --dry together is invalid.js @@ -0,0 +1,12 @@ +--watch --dry +buildOptions:: +{ + "watch": true, + "dry": true +} +WatchOptions:: + +Projects:: +. +Errors:: +error TS6370: Options 'watch' and 'dry' cannot be combined. diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/Parse multiple flags with input projects at the end.js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/Parse multiple flags with input projects at the end.js new file mode 100644 index 0000000000000..e647a4a039c25 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/Parse multiple flags with input projects at the end.js @@ -0,0 +1,11 @@ +--force --verbose src tests +buildOptions:: +{ + "force": true, + "verbose": true +} +WatchOptions:: + +Projects:: +src,tests +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/Parse multiple flags with input projects in the beginning.js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/Parse multiple flags with input projects in the beginning.js new file mode 100644 index 0000000000000..42aae4de856c4 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/Parse multiple flags with input projects in the beginning.js @@ -0,0 +1,11 @@ +src tests --force --verbose +buildOptions:: +{ + "force": true, + "verbose": true +} +WatchOptions:: + +Projects:: +src,tests +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/Parse multiple flags with input projects in the middle.js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/Parse multiple flags with input projects in the middle.js new file mode 100644 index 0000000000000..0dbec2c7666ad --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/Parse multiple flags with input projects in the middle.js @@ -0,0 +1,11 @@ +--force src tests --verbose +buildOptions:: +{ + "force": true, + "verbose": true +} +WatchOptions:: + +Projects:: +src,tests +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/Parse multiple options.js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/Parse multiple options.js new file mode 100644 index 0000000000000..e29895636f602 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/Parse multiple options.js @@ -0,0 +1,11 @@ +--verbose --force tests +buildOptions:: +{ + "verbose": true, + "force": true +} +WatchOptions:: + +Projects:: +tests +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/Parse option with invalid option.js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/Parse option with invalid option.js new file mode 100644 index 0000000000000..d385a51f7320d --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/Parse option with invalid option.js @@ -0,0 +1,11 @@ +--verbose --invalidOption +buildOptions:: +{ + "verbose": true +} +WatchOptions:: + +Projects:: +. +Errors:: +error TS5072: Unknown build option '--invalidOption'. diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/errors on invalid excludeDirectories.js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/errors on invalid excludeDirectories.js new file mode 100644 index 0000000000000..35f0a639f9c8d --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/errors on invalid excludeDirectories.js @@ -0,0 +1,11 @@ +--excludeDirectories **/../* +buildOptions:: +{} +WatchOptions:: +{ + "excludeDirectories": [] +} +Projects:: +. +Errors:: +error TS5065: File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '**/../*'. diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/errors on invalid excludeFiles.js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/errors on invalid excludeFiles.js new file mode 100644 index 0000000000000..89d564b19aa96 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/errors on invalid excludeFiles.js @@ -0,0 +1,11 @@ +--excludeFiles **/../* +buildOptions:: +{} +WatchOptions:: +{ + "excludeFiles": [] +} +Projects:: +. +Errors:: +error TS5065: File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '**/../*'. diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/errors on missing argument.js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/errors on missing argument.js new file mode 100644 index 0000000000000..212cae1eb636e --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/errors on missing argument.js @@ -0,0 +1,12 @@ +--verbose --fallbackPolling +buildOptions:: +{ + "verbose": true +} +WatchOptions:: +{} +Projects:: +. +Errors:: +error TS5080: Watch option 'fallbackPolling' requires a value of type string. +error TS6046: Argument for '--fallbackPolling' option must be: 'fixedinterval', 'priorityinterval', 'dynamicpriority', 'fixedchunksize'. diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse --excludeFiles.js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse --excludeFiles.js new file mode 100644 index 0000000000000..d62c5f98e0450 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse --excludeFiles.js @@ -0,0 +1,12 @@ +--excludeFiles **/temp/*.ts +buildOptions:: +{} +WatchOptions:: +{ + "excludeFiles": [ + "**/temp/*.ts" + ] +} +Projects:: +. +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse --fallbackPolling.js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse --fallbackPolling.js new file mode 100644 index 0000000000000..1fd285ef9759f --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse --fallbackPolling.js @@ -0,0 +1,12 @@ +--fallbackPolling PriorityInterval --verbose +buildOptions:: +{ + "verbose": true +} +WatchOptions:: +{ + "fallbackPolling": 1 +} +Projects:: +. +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse --synchronousWatchDirectory.js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse --synchronousWatchDirectory.js new file mode 100644 index 0000000000000..5b065234cf12c --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse --synchronousWatchDirectory.js @@ -0,0 +1,12 @@ +--synchronousWatchDirectory --verbose +buildOptions:: +{ + "verbose": true +} +WatchOptions:: +{ + "synchronousWatchDirectory": true +} +Projects:: +. +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse --watchDirectory.js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse --watchDirectory.js new file mode 100644 index 0000000000000..62a74a7a9d26c --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse --watchDirectory.js @@ -0,0 +1,12 @@ +--watchDirectory FixedPollingInterval --verbose +buildOptions:: +{ + "verbose": true +} +WatchOptions:: +{ + "watchDirectory": 1 +} +Projects:: +. +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse --watchFile.js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse --watchFile.js new file mode 100644 index 0000000000000..1f881f80f8a8e --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse --watchFile.js @@ -0,0 +1,12 @@ +--watchFile UseFsEvents --verbose +buildOptions:: +{ + "verbose": true +} +WatchOptions:: +{ + "watchFile": 4 +} +Projects:: +. +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse build with --incremental.js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse build with --incremental.js new file mode 100644 index 0000000000000..91cebea73a395 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse build with --incremental.js @@ -0,0 +1,10 @@ +--incremental tests +buildOptions:: +{ + "incremental": true +} +WatchOptions:: + +Projects:: +tests +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse build with --locale en-us.js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse build with --locale en-us.js new file mode 100644 index 0000000000000..8b3e814d4f1c7 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse build with --locale en-us.js @@ -0,0 +1,10 @@ +--locale en-us src +buildOptions:: +{ + "locale": "en-us" +} +WatchOptions:: + +Projects:: +src +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse build with --tsBuildInfoFile.js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse build with --tsBuildInfoFile.js new file mode 100644 index 0000000000000..1ddf67e0c54ab --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse build with --tsBuildInfoFile.js @@ -0,0 +1,9 @@ +--tsBuildInfoFile build.tsbuildinfo tests +buildOptions:: +{} +WatchOptions:: + +Projects:: +build.tsbuildinfo,tests +Errors:: +error TS5094: Compiler option '--tsBuildInfoFile' may not be used with '--build'. diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse build without any options .js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse build without any options .js new file mode 100644 index 0000000000000..36e1149f47356 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/parse build without any options .js @@ -0,0 +1,8 @@ + +buildOptions:: +{} +WatchOptions:: + +Projects:: +. +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/reports other common may not be used with --build flags.js b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/reports other common may not be used with --build flags.js new file mode 100644 index 0000000000000..b758998ce1620 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseBuildOptions/reports other common may not be used with --build flags.js @@ -0,0 +1,10 @@ +--declaration --strict +buildOptions:: +{} +WatchOptions:: + +Projects:: +. +Errors:: +error TS5094: Compiler option '--declaration' may not be used with '--build'. +error TS5094: Compiler option '--strict' may not be used with '--build'. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Handles did you mean for misspelt flags.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Handles did you mean for misspelt flags.js new file mode 100644 index 0000000000000..9e7bb151eac62 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Handles did you mean for misspelt flags.js @@ -0,0 +1,10 @@ +--declarations --allowTS +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: + +Errors:: +error TS5025: Unknown compiler option '--declarations'. Did you mean 'declaration'? +error TS5025: Unknown compiler option '--allowTS'. Did you mean 'allowJs'? diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Handles may only be used with --build flags.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Handles may only be used with --build flags.js new file mode 100644 index 0000000000000..d7e2490b18fdf --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Handles may only be used with --build flags.js @@ -0,0 +1,12 @@ +--clean --dry --force --verbose +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: + +Errors:: +error TS5093: Compiler option '--clean' may only be used with '--build'. +error TS5093: Compiler option '--dry' may only be used with '--build'. +error TS5093: Compiler option '--force' may only be used with '--build'. +error TS5093: Compiler option '--verbose' may only be used with '--build'. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse --lib option with extra comma.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse --lib option with extra comma.js new file mode 100644 index 0000000000000..cd9c9e4957d17 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse --lib option with extra comma.js @@ -0,0 +1,13 @@ +--lib es5, es7 0.ts +CompilerOptions:: +{ + "lib": [ + "lib.es5.d.ts" + ] +} +WatchOptions:: + +FileNames:: +es7,0.ts +Errors:: +error TS6046: Argument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'esnext', 'dom', 'dom.iterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.sharedmemory', 'es2022.string', 'esnext.array', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref'. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse --lib option with trailing white-space.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse --lib option with trailing white-space.js new file mode 100644 index 0000000000000..db535ca00f994 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse --lib option with trailing white-space.js @@ -0,0 +1,13 @@ +--lib es5, es7 0.ts +CompilerOptions:: +{ + "lib": [ + "lib.es5.d.ts" + ] +} +WatchOptions:: + +FileNames:: +es7,0.ts +Errors:: +error TS6046: Argument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'esnext', 'dom', 'dom.iterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.sharedmemory', 'es2022.string', 'esnext.array', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref'. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse empty options of --jsx.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse empty options of --jsx.js new file mode 100644 index 0000000000000..a4a41ae126044 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse empty options of --jsx.js @@ -0,0 +1,10 @@ +0.ts --jsx +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6044: Compiler option 'jsx' expects an argument. +error TS6046: Argument for '--jsx' option must be: 'preserve', 'react-native', 'react', 'react-jsx', 'react-jsxdev'. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse empty options of --lib.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse empty options of --lib.js new file mode 100644 index 0000000000000..d3f0a03b606d1 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse empty options of --lib.js @@ -0,0 +1,11 @@ +0.ts --lib +CompilerOptions:: +{ + "lib": [] +} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6044: Compiler option 'lib' expects an argument. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse empty options of --module.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse empty options of --module.js new file mode 100644 index 0000000000000..6eac025950521 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse empty options of --module.js @@ -0,0 +1,10 @@ +0.ts --module +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6044: Compiler option 'module' expects an argument. +error TS6046: Argument for '--module' option must be: 'none', 'commonjs', 'amd', 'system', 'umd', 'es6', 'es2015', 'es2020', 'es2022', 'esnext', 'node16', 'nodenext'. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse empty options of --moduleResolution.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse empty options of --moduleResolution.js new file mode 100644 index 0000000000000..fb361238364f5 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse empty options of --moduleResolution.js @@ -0,0 +1,10 @@ +0.ts --moduleResolution +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6044: Compiler option 'moduleResolution' expects an argument. +error TS6046: Argument for '--moduleResolution' option must be: 'node', 'classic', 'node16', 'nodenext'. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse empty options of --newLine.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse empty options of --newLine.js new file mode 100644 index 0000000000000..cd6c862f1320c --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse empty options of --newLine.js @@ -0,0 +1,10 @@ +0.ts --newLine +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6044: Compiler option 'newLine' expects an argument. +error TS6046: Argument for '--newLine' option must be: 'crlf', 'lf'. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse empty options of --target.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse empty options of --target.js new file mode 100644 index 0000000000000..35926083139a7 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse empty options of --target.js @@ -0,0 +1,10 @@ +0.ts --target +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6044: Compiler option 'target' expects an argument. +error TS6046: Argument for '--target' option must be: 'es3', 'es5', 'es6', 'es2015', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'esnext'. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse empty string of --lib.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse empty string of --lib.js new file mode 100644 index 0000000000000..a21dc499ae458 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse empty string of --lib.js @@ -0,0 +1,11 @@ +0.ts --lib +CompilerOptions:: +{ + "lib": [] +} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6044: Compiler option 'lib' expects an argument. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse explicit boolean flag value.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse explicit boolean flag value.js new file mode 100644 index 0000000000000..dd8cca535a400 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse explicit boolean flag value.js @@ -0,0 +1,10 @@ +--strictNullChecks false 0.ts +CompilerOptions:: +{ + "strictNullChecks": false +} +WatchOptions:: + +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse immediately following command line argument of --lib.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse immediately following command line argument of --lib.js new file mode 100644 index 0000000000000..635303d8967ef --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse immediately following command line argument of --lib.js @@ -0,0 +1,11 @@ +0.ts --lib --sourcemap +CompilerOptions:: +{ + "lib": [], + "sourceMap": true +} +WatchOptions:: + +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse implicit boolean flag value.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse implicit boolean flag value.js new file mode 100644 index 0000000000000..b278bb6260549 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse implicit boolean flag value.js @@ -0,0 +1,10 @@ +--strictNullChecks +CompilerOptions:: +{ + "strictNullChecks": true +} +WatchOptions:: + +FileNames:: + +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse invalid option of library flags.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse invalid option of library flags.js new file mode 100644 index 0000000000000..06df71f899e4b --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse invalid option of library flags.js @@ -0,0 +1,13 @@ +--lib es5,invalidOption 0.ts +CompilerOptions:: +{ + "lib": [ + "lib.es5.d.ts" + ] +} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6046: Argument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'esnext', 'dom', 'dom.iterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.sharedmemory', 'es2022.string', 'esnext.array', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref'. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse multiple compiler flags with input files at the end.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse multiple compiler flags with input files at the end.js new file mode 100644 index 0000000000000..b3c7bea3fd566 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse multiple compiler flags with input files at the end.js @@ -0,0 +1,14 @@ +--lib es5,es2015.symbol.wellknown --target es5 0.ts +CompilerOptions:: +{ + "lib": [ + "lib.es5.d.ts", + "lib.es2015.symbol.wellknown.d.ts" + ], + "target": 1 +} +WatchOptions:: + +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse multiple compiler flags with input files in the middle.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse multiple compiler flags with input files in the middle.js new file mode 100644 index 0000000000000..6dd0ef5b372dc --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse multiple compiler flags with input files in the middle.js @@ -0,0 +1,15 @@ +--module commonjs --target es5 0.ts --lib es5,es2015.symbol.wellknown +CompilerOptions:: +{ + "module": 1, + "target": 1, + "lib": [ + "lib.es5.d.ts", + "lib.es2015.symbol.wellknown.d.ts" + ] +} +WatchOptions:: + +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse multiple library compiler flags .js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse multiple library compiler flags .js new file mode 100644 index 0000000000000..fe6bf903acfca --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse multiple library compiler flags .js @@ -0,0 +1,15 @@ +--module commonjs --target es5 --lib es5 0.ts --lib es2015.core, es2015.symbol.wellknown +CompilerOptions:: +{ + "module": 1, + "target": 1, + "lib": [ + "lib.es2015.core.d.ts", + "lib.es2015.symbol.wellknown.d.ts" + ] +} +WatchOptions:: + +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse multiple options of library flags.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse multiple options of library flags.js new file mode 100644 index 0000000000000..02be8361d616c --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse multiple options of library flags.js @@ -0,0 +1,13 @@ +--lib es5,es2015.symbol.wellknown 0.ts +CompilerOptions:: +{ + "lib": [ + "lib.es5.d.ts", + "lib.es2015.symbol.wellknown.d.ts" + ] +} +WatchOptions:: + +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse non boolean argument after boolean flag.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse non boolean argument after boolean flag.js new file mode 100644 index 0000000000000..f170c944b910d --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse non boolean argument after boolean flag.js @@ -0,0 +1,10 @@ +--noImplicitAny t 0.ts +CompilerOptions:: +{ + "noImplicitAny": true +} +WatchOptions:: + +FileNames:: +t,0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse single option of library flag.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse single option of library flag.js new file mode 100644 index 0000000000000..085396bb590ef --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/Parse single option of library flag.js @@ -0,0 +1,12 @@ +--lib es6 0.ts +CompilerOptions:: +{ + "lib": [ + "lib.es2015.d.ts" + ] +} +WatchOptions:: + +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/allows setting option type boolean to false.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/allows setting option type boolean to false.js new file mode 100644 index 0000000000000..f030755d829ca --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/allows setting option type boolean to false.js @@ -0,0 +1,10 @@ +--composite false 0.ts +CompilerOptions:: +{ + "composite": false +} +WatchOptions:: + +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/allows tsconfig only option to be set to null.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/allows tsconfig only option to be set to null.js new file mode 100644 index 0000000000000..7b0c75eb519e5 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/allows tsconfig only option to be set to null.js @@ -0,0 +1,8 @@ +--composite null -tsBuildInfoFile null 0.ts +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/errors on invalid excludeDirectories.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/errors on invalid excludeDirectories.js new file mode 100644 index 0000000000000..fbe68473c5a5b --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/errors on invalid excludeDirectories.js @@ -0,0 +1,11 @@ +--excludeDirectories **/../* 0.ts +CompilerOptions:: +{} +WatchOptions:: +{ + "excludeDirectories": [] +} +FileNames:: +0.ts +Errors:: +error TS5065: File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '**/../*'. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/errors on invalid excludeFiles.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/errors on invalid excludeFiles.js new file mode 100644 index 0000000000000..83588c628de48 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/errors on invalid excludeFiles.js @@ -0,0 +1,11 @@ +--excludeFiles **/../* 0.ts +CompilerOptions:: +{} +WatchOptions:: +{ + "excludeFiles": [] +} +FileNames:: +0.ts +Errors:: +error TS5065: File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '**/../*'. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/errors on missing argument to --fallbackPolling.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/errors on missing argument to --fallbackPolling.js new file mode 100644 index 0000000000000..0ccf34a297a4d --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/errors on missing argument to --fallbackPolling.js @@ -0,0 +1,10 @@ +0.ts --fallbackPolling +CompilerOptions:: +{} +WatchOptions:: +{} +FileNames:: +0.ts +Errors:: +error TS5080: Watch option 'fallbackPolling' requires a value of type string. +error TS6046: Argument for '--fallbackPolling' option must be: 'fixedinterval', 'priorityinterval', 'dynamicpriority', 'fixedchunksize'. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type boolean allows setting it to null.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type boolean allows setting it to null.js new file mode 100644 index 0000000000000..5c75a44457e94 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type boolean allows setting it to null.js @@ -0,0 +1,8 @@ +--composite null 0.ts +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type boolean errors if its followed by another option.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type boolean errors if its followed by another option.js new file mode 100644 index 0000000000000..7c257fe64a8b7 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type boolean errors if its followed by another option.js @@ -0,0 +1,11 @@ +0.ts --strictNullChecks --composite +CompilerOptions:: +{ + "strictNullChecks": true +} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6230: Option 'composite' can only be specified in 'tsconfig.json' file or set to 'false' or 'null' on command line. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type boolean errors if its last option.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type boolean errors if its last option.js new file mode 100644 index 0000000000000..7ecdc431d698b --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type boolean errors if its last option.js @@ -0,0 +1,9 @@ +0.ts --composite +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6230: Option 'composite' can only be specified in 'tsconfig.json' file or set to 'false' or 'null' on command line. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type boolean errors if non null value is passed.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type boolean errors if non null value is passed.js new file mode 100644 index 0000000000000..6955df27f9c83 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type boolean errors if non null value is passed.js @@ -0,0 +1,9 @@ +--composite true 0.ts +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6230: Option 'composite' can only be specified in 'tsconfig.json' file or set to 'false' or 'null' on command line. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type custom map allows setting it to null.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type custom map allows setting it to null.js new file mode 100644 index 0000000000000..996e097ab4150 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type custom map allows setting it to null.js @@ -0,0 +1,8 @@ +--optionName null 0.ts +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type custom map errors if its followed by another option.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type custom map errors if its followed by another option.js new file mode 100644 index 0000000000000..c37d4e514708f --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type custom map errors if its followed by another option.js @@ -0,0 +1,11 @@ +0.ts --strictNullChecks --optionName +CompilerOptions:: +{ + "strictNullChecks": true +} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6064: Option 'optionName' can only be specified in 'tsconfig.json' file or set to 'null' on command line. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type custom map errors if its last option.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type custom map errors if its last option.js new file mode 100644 index 0000000000000..e6a3e96e4c377 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type custom map errors if its last option.js @@ -0,0 +1,9 @@ +0.ts --optionName +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6064: Option 'optionName' can only be specified in 'tsconfig.json' file or set to 'null' on command line. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type custom map errors if non null value is passed.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type custom map errors if non null value is passed.js new file mode 100644 index 0000000000000..1da840835c12b --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type custom map errors if non null value is passed.js @@ -0,0 +1,9 @@ +--optionName node 0.ts +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6064: Option 'optionName' can only be specified in 'tsconfig.json' file or set to 'null' on command line. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type list allows setting it to null.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type list allows setting it to null.js new file mode 100644 index 0000000000000..3cd02971c418a --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type list allows setting it to null.js @@ -0,0 +1,8 @@ +--rootDirs null 0.ts +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type list errors if its followed by another option.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type list errors if its followed by another option.js new file mode 100644 index 0000000000000..66cf451885b78 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type list errors if its followed by another option.js @@ -0,0 +1,11 @@ +0.ts --strictNullChecks --rootDirs +CompilerOptions:: +{ + "strictNullChecks": true +} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6064: Option 'rootDirs' can only be specified in 'tsconfig.json' file or set to 'null' on command line. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type list errors if its last option.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type list errors if its last option.js new file mode 100644 index 0000000000000..21b489264bf4c --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type list errors if its last option.js @@ -0,0 +1,9 @@ +0.ts --rootDirs +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6064: Option 'rootDirs' can only be specified in 'tsconfig.json' file or set to 'null' on command line. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type list errors if non null value is passed.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type list errors if non null value is passed.js new file mode 100644 index 0000000000000..6ad60c46173c9 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type list errors if non null value is passed.js @@ -0,0 +1,9 @@ +--rootDirs abc,xyz 0.ts +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6064: Option 'rootDirs' can only be specified in 'tsconfig.json' file or set to 'null' on command line. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type number allows setting it to null.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type number allows setting it to null.js new file mode 100644 index 0000000000000..996e097ab4150 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type number allows setting it to null.js @@ -0,0 +1,8 @@ +--optionName null 0.ts +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type number errors if its followed by another option.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type number errors if its followed by another option.js new file mode 100644 index 0000000000000..c37d4e514708f --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type number errors if its followed by another option.js @@ -0,0 +1,11 @@ +0.ts --strictNullChecks --optionName +CompilerOptions:: +{ + "strictNullChecks": true +} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6064: Option 'optionName' can only be specified in 'tsconfig.json' file or set to 'null' on command line. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type number errors if its last option.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type number errors if its last option.js new file mode 100644 index 0000000000000..e6a3e96e4c377 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type number errors if its last option.js @@ -0,0 +1,9 @@ +0.ts --optionName +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6064: Option 'optionName' can only be specified in 'tsconfig.json' file or set to 'null' on command line. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type number errors if non null value is passed.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type number errors if non null value is passed.js new file mode 100644 index 0000000000000..240c1b2bff023 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type number errors if non null value is passed.js @@ -0,0 +1,9 @@ +--optionName 10 0.ts +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6064: Option 'optionName' can only be specified in 'tsconfig.json' file or set to 'null' on command line. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type object allows setting it to null.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type object allows setting it to null.js new file mode 100644 index 0000000000000..ee407a280596b --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type object allows setting it to null.js @@ -0,0 +1,8 @@ +--paths null 0.ts +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type object errors if its followed by another option.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type object errors if its followed by another option.js new file mode 100644 index 0000000000000..f7fe0fb368ee6 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type object errors if its followed by another option.js @@ -0,0 +1,11 @@ +0.ts --strictNullChecks --paths +CompilerOptions:: +{ + "strictNullChecks": true +} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6064: Option 'paths' can only be specified in 'tsconfig.json' file or set to 'null' on command line. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type object errors if its last option.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type object errors if its last option.js new file mode 100644 index 0000000000000..f0e5be51c62fd --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type object errors if its last option.js @@ -0,0 +1,9 @@ +0.ts --paths +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6064: Option 'paths' can only be specified in 'tsconfig.json' file or set to 'null' on command line. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type string allows setting it to null.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type string allows setting it to null.js new file mode 100644 index 0000000000000..996e097ab4150 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type string allows setting it to null.js @@ -0,0 +1,8 @@ +--optionName null 0.ts +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type string errors if its followed by another option.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type string errors if its followed by another option.js new file mode 100644 index 0000000000000..c37d4e514708f --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type string errors if its followed by another option.js @@ -0,0 +1,11 @@ +0.ts --strictNullChecks --optionName +CompilerOptions:: +{ + "strictNullChecks": true +} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6064: Option 'optionName' can only be specified in 'tsconfig.json' file or set to 'null' on command line. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type string errors if its last option.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type string errors if its last option.js new file mode 100644 index 0000000000000..e6a3e96e4c377 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type string errors if its last option.js @@ -0,0 +1,9 @@ +0.ts --optionName +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6064: Option 'optionName' can only be specified in 'tsconfig.json' file or set to 'null' on command line. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type string errors if non null value is passed.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type string errors if non null value is passed.js new file mode 100644 index 0000000000000..0af5f2676a8e6 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/option of type string errors if non null value is passed.js @@ -0,0 +1,9 @@ +--optionName hello 0.ts +CompilerOptions:: +{} +WatchOptions:: + +FileNames:: +0.ts +Errors:: +error TS6064: Option 'optionName' can only be specified in 'tsconfig.json' file or set to 'null' on command line. diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --excludeDirectories.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --excludeDirectories.js new file mode 100644 index 0000000000000..4c27ef1ace0e0 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --excludeDirectories.js @@ -0,0 +1,12 @@ +--excludeDirectories **/temp 0.ts +CompilerOptions:: +{} +WatchOptions:: +{ + "excludeDirectories": [ + "**/temp" + ] +} +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --excludeFiles.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --excludeFiles.js new file mode 100644 index 0000000000000..0ec40cbf6a32b --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --excludeFiles.js @@ -0,0 +1,12 @@ +--excludeFiles **/temp/*.ts 0.ts +CompilerOptions:: +{} +WatchOptions:: +{ + "excludeFiles": [ + "**/temp/*.ts" + ] +} +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --fallbackPolling.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --fallbackPolling.js new file mode 100644 index 0000000000000..3380894332710 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --fallbackPolling.js @@ -0,0 +1,10 @@ +--fallbackPolling PriorityInterval 0.ts +CompilerOptions:: +{} +WatchOptions:: +{ + "fallbackPolling": 1 +} +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --incremental.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --incremental.js new file mode 100644 index 0000000000000..d2abf3408a1fc --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --incremental.js @@ -0,0 +1,10 @@ +--incremental 0.ts +CompilerOptions:: +{ + "incremental": true +} +WatchOptions:: + +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --synchronousWatchDirectory.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --synchronousWatchDirectory.js new file mode 100644 index 0000000000000..c8dbf2744c9a7 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --synchronousWatchDirectory.js @@ -0,0 +1,10 @@ +--synchronousWatchDirectory 0.ts +CompilerOptions:: +{} +WatchOptions:: +{ + "synchronousWatchDirectory": true +} +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --tsBuildInfoFile.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --tsBuildInfoFile.js new file mode 100644 index 0000000000000..2abe1bcc152a9 --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --tsBuildInfoFile.js @@ -0,0 +1,10 @@ +--tsBuildInfoFile build.tsbuildinfo 0.ts +CompilerOptions:: +{ + "tsBuildInfoFile": "build.tsbuildinfo" +} +WatchOptions:: + +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --watchDirectory.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --watchDirectory.js new file mode 100644 index 0000000000000..f2ac41de85c1f --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --watchDirectory.js @@ -0,0 +1,10 @@ +--watchDirectory FixedPollingInterval 0.ts +CompilerOptions:: +{} +WatchOptions:: +{ + "watchDirectory": 1 +} +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --watchFile.js b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --watchFile.js new file mode 100644 index 0000000000000..6869e6d47b0ce --- /dev/null +++ b/tests/baselines/reference/config/commandLineParsing/parseCommandLine/parse --watchFile.js @@ -0,0 +1,10 @@ +--watchFile UseFsEvents 0.ts +CompilerOptions:: +{} +WatchOptions:: +{ + "watchFile": 4 +} +FileNames:: +0.ts +Errors:: diff --git a/tests/baselines/reference/tsConfig/Default initialized TSConfig/tsconfig.json b/tests/baselines/reference/config/initTSConfig/Default initialized TSConfig/tsconfig.json similarity index 100% rename from tests/baselines/reference/tsConfig/Default initialized TSConfig/tsconfig.json rename to tests/baselines/reference/config/initTSConfig/Default initialized TSConfig/tsconfig.json diff --git a/tests/baselines/reference/tsConfig/Initialized TSConfig with --help/tsconfig.json b/tests/baselines/reference/config/initTSConfig/Initialized TSConfig with --help/tsconfig.json similarity index 100% rename from tests/baselines/reference/tsConfig/Initialized TSConfig with --help/tsconfig.json rename to tests/baselines/reference/config/initTSConfig/Initialized TSConfig with --help/tsconfig.json diff --git a/tests/baselines/reference/tsConfig/Initialized TSConfig with --watch/tsconfig.json b/tests/baselines/reference/config/initTSConfig/Initialized TSConfig with --watch/tsconfig.json similarity index 100% rename from tests/baselines/reference/tsConfig/Initialized TSConfig with --watch/tsconfig.json rename to tests/baselines/reference/config/initTSConfig/Initialized TSConfig with --watch/tsconfig.json diff --git a/tests/baselines/reference/tsConfig/Initialized TSConfig with advanced options/tsconfig.json b/tests/baselines/reference/config/initTSConfig/Initialized TSConfig with advanced options/tsconfig.json similarity index 100% rename from tests/baselines/reference/tsConfig/Initialized TSConfig with advanced options/tsconfig.json rename to tests/baselines/reference/config/initTSConfig/Initialized TSConfig with advanced options/tsconfig.json diff --git a/tests/baselines/reference/tsConfig/Initialized TSConfig with boolean value compiler options/tsconfig.json b/tests/baselines/reference/config/initTSConfig/Initialized TSConfig with boolean value compiler options/tsconfig.json similarity index 100% rename from tests/baselines/reference/tsConfig/Initialized TSConfig with boolean value compiler options/tsconfig.json rename to tests/baselines/reference/config/initTSConfig/Initialized TSConfig with boolean value compiler options/tsconfig.json diff --git a/tests/baselines/reference/tsConfig/Initialized TSConfig with enum value compiler options/tsconfig.json b/tests/baselines/reference/config/initTSConfig/Initialized TSConfig with enum value compiler options/tsconfig.json similarity index 100% rename from tests/baselines/reference/tsConfig/Initialized TSConfig with enum value compiler options/tsconfig.json rename to tests/baselines/reference/config/initTSConfig/Initialized TSConfig with enum value compiler options/tsconfig.json diff --git a/tests/baselines/reference/tsConfig/Initialized TSConfig with files options/tsconfig.json b/tests/baselines/reference/config/initTSConfig/Initialized TSConfig with files options/tsconfig.json similarity index 100% rename from tests/baselines/reference/tsConfig/Initialized TSConfig with files options/tsconfig.json rename to tests/baselines/reference/config/initTSConfig/Initialized TSConfig with files options/tsconfig.json diff --git a/tests/baselines/reference/tsConfig/Initialized TSConfig with incorrect compiler option value/tsconfig.json b/tests/baselines/reference/config/initTSConfig/Initialized TSConfig with incorrect compiler option value/tsconfig.json similarity index 100% rename from tests/baselines/reference/tsConfig/Initialized TSConfig with incorrect compiler option value/tsconfig.json rename to tests/baselines/reference/config/initTSConfig/Initialized TSConfig with incorrect compiler option value/tsconfig.json diff --git a/tests/baselines/reference/tsConfig/Initialized TSConfig with incorrect compiler option/tsconfig.json b/tests/baselines/reference/config/initTSConfig/Initialized TSConfig with incorrect compiler option/tsconfig.json similarity index 100% rename from tests/baselines/reference/tsConfig/Initialized TSConfig with incorrect compiler option/tsconfig.json rename to tests/baselines/reference/config/initTSConfig/Initialized TSConfig with incorrect compiler option/tsconfig.json diff --git a/tests/baselines/reference/tsConfig/Initialized TSConfig with list compiler options with enum value/tsconfig.json b/tests/baselines/reference/config/initTSConfig/Initialized TSConfig with list compiler options with enum value/tsconfig.json similarity index 100% rename from tests/baselines/reference/tsConfig/Initialized TSConfig with list compiler options with enum value/tsconfig.json rename to tests/baselines/reference/config/initTSConfig/Initialized TSConfig with list compiler options with enum value/tsconfig.json diff --git a/tests/baselines/reference/tsConfig/Initialized TSConfig with list compiler options/tsconfig.json b/tests/baselines/reference/config/initTSConfig/Initialized TSConfig with list compiler options/tsconfig.json similarity index 100% rename from tests/baselines/reference/tsConfig/Initialized TSConfig with list compiler options/tsconfig.json rename to tests/baselines/reference/config/initTSConfig/Initialized TSConfig with list compiler options/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Default initialized TSConfig/tsconfig.json b/tests/baselines/reference/config/showConfig/Default initialized TSConfig/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Default initialized TSConfig/tsconfig.json rename to tests/baselines/reference/config/showConfig/Default initialized TSConfig/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Show TSConfig with advanced options/tsconfig.json b/tests/baselines/reference/config/showConfig/Show TSConfig with advanced options/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Show TSConfig with advanced options/tsconfig.json rename to tests/baselines/reference/config/showConfig/Show TSConfig with advanced options/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Show TSConfig with boolean value compiler options/tsconfig.json b/tests/baselines/reference/config/showConfig/Show TSConfig with boolean value compiler options/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Show TSConfig with boolean value compiler options/tsconfig.json rename to tests/baselines/reference/config/showConfig/Show TSConfig with boolean value compiler options/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Show TSConfig with compileOnSave and more/tsconfig.json b/tests/baselines/reference/config/showConfig/Show TSConfig with compileOnSave and more/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Show TSConfig with compileOnSave and more/tsconfig.json rename to tests/baselines/reference/config/showConfig/Show TSConfig with compileOnSave and more/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Show TSConfig with enum value compiler options/tsconfig.json b/tests/baselines/reference/config/showConfig/Show TSConfig with enum value compiler options/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Show TSConfig with enum value compiler options/tsconfig.json rename to tests/baselines/reference/config/showConfig/Show TSConfig with enum value compiler options/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Show TSConfig with files options/tsconfig.json b/tests/baselines/reference/config/showConfig/Show TSConfig with files options/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Show TSConfig with files options/tsconfig.json rename to tests/baselines/reference/config/showConfig/Show TSConfig with files options/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Show TSConfig with incorrect compiler option value/tsconfig.json b/tests/baselines/reference/config/showConfig/Show TSConfig with incorrect compiler option value/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Show TSConfig with incorrect compiler option value/tsconfig.json rename to tests/baselines/reference/config/showConfig/Show TSConfig with incorrect compiler option value/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Show TSConfig with incorrect compiler option/tsconfig.json b/tests/baselines/reference/config/showConfig/Show TSConfig with incorrect compiler option/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Show TSConfig with incorrect compiler option/tsconfig.json rename to tests/baselines/reference/config/showConfig/Show TSConfig with incorrect compiler option/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Show TSConfig with list compiler options with enum value/tsconfig.json b/tests/baselines/reference/config/showConfig/Show TSConfig with list compiler options with enum value/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Show TSConfig with list compiler options with enum value/tsconfig.json rename to tests/baselines/reference/config/showConfig/Show TSConfig with list compiler options with enum value/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Show TSConfig with list compiler options/tsconfig.json b/tests/baselines/reference/config/showConfig/Show TSConfig with list compiler options/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Show TSConfig with list compiler options/tsconfig.json rename to tests/baselines/reference/config/showConfig/Show TSConfig with list compiler options/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Show TSConfig with paths and more/tsconfig.json b/tests/baselines/reference/config/showConfig/Show TSConfig with paths and more/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Show TSConfig with paths and more/tsconfig.json rename to tests/baselines/reference/config/showConfig/Show TSConfig with paths and more/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Show TSConfig with watch options/tsconfig.json b/tests/baselines/reference/config/showConfig/Show TSConfig with watch options/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Show TSConfig with watch options/tsconfig.json rename to tests/baselines/reference/config/showConfig/Show TSConfig with watch options/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/all/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/all/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/all/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/all/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/allowJs/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/allowJs/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/allowJs/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/allowJs/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/allowSyntheticDefaultImports/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/allowSyntheticDefaultImports/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/allowSyntheticDefaultImports/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/allowSyntheticDefaultImports/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/allowUmdGlobalAccess/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/allowUmdGlobalAccess/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/allowUmdGlobalAccess/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/allowUmdGlobalAccess/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/allowUnreachableCode/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/allowUnreachableCode/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/allowUnreachableCode/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/allowUnreachableCode/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/allowUnusedLabels/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/allowUnusedLabels/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/allowUnusedLabels/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/allowUnusedLabels/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/alwaysStrict/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/alwaysStrict/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/alwaysStrict/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/alwaysStrict/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/assumeChangesOnlyAffectDirectDependencies/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/assumeChangesOnlyAffectDirectDependencies/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/assumeChangesOnlyAffectDirectDependencies/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/assumeChangesOnlyAffectDirectDependencies/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/baseUrl/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/baseUrl/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/baseUrl/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/baseUrl/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/build/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/build/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/build/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/build/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/charset/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/charset/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/charset/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/charset/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/checkJs/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/checkJs/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/checkJs/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/checkJs/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/composite/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/composite/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/composite/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/composite/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/declaration/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/declaration/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/declaration/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/declaration/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/declarationDir/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/declarationDir/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/declarationDir/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/declarationDir/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/declarationMap/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/declarationMap/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/declarationMap/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/declarationMap/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/diagnostics/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/diagnostics/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/diagnostics/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/diagnostics/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/disableReferencedProjectLoad/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/disableReferencedProjectLoad/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/disableReferencedProjectLoad/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/disableReferencedProjectLoad/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/disableSizeLimit/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/disableSizeLimit/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/disableSizeLimit/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/disableSizeLimit/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/disableSolutionSearching/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/disableSolutionSearching/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/disableSolutionSearching/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/disableSolutionSearching/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/disableSourceOfProjectReferenceRedirect/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/disableSourceOfProjectReferenceRedirect/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/disableSourceOfProjectReferenceRedirect/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/disableSourceOfProjectReferenceRedirect/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/downlevelIteration/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/downlevelIteration/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/downlevelIteration/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/downlevelIteration/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/emitBOM/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/emitBOM/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/emitBOM/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/emitBOM/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/emitDeclarationOnly/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/emitDeclarationOnly/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/emitDeclarationOnly/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/emitDeclarationOnly/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/emitDecoratorMetadata/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/emitDecoratorMetadata/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/emitDecoratorMetadata/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/emitDecoratorMetadata/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/esModuleInterop/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/esModuleInterop/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/esModuleInterop/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/esModuleInterop/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/exactOptionalPropertyTypes/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/exactOptionalPropertyTypes/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/exactOptionalPropertyTypes/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/exactOptionalPropertyTypes/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/excludeDirectories/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/excludeDirectories/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/excludeDirectories/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/excludeDirectories/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/excludeFiles/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/excludeFiles/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/excludeFiles/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/excludeFiles/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/experimentalDecorators/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/experimentalDecorators/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/experimentalDecorators/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/experimentalDecorators/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/explainFiles/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/explainFiles/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/explainFiles/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/explainFiles/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/extendedDiagnostics/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/extendedDiagnostics/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/extendedDiagnostics/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/extendedDiagnostics/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/fallbackPolling/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/fallbackPolling/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/fallbackPolling/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/fallbackPolling/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/forceConsistentCasingInFileNames/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/forceConsistentCasingInFileNames/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/forceConsistentCasingInFileNames/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/forceConsistentCasingInFileNames/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/generateCpuProfile/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/generateCpuProfile/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/generateCpuProfile/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/generateCpuProfile/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/generateTrace/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/generateTrace/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/generateTrace/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/generateTrace/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/help/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/help/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/help/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/help/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/importHelpers/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/importHelpers/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/importHelpers/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/importHelpers/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/importsNotUsedAsValues/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/importsNotUsedAsValues/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/importsNotUsedAsValues/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/importsNotUsedAsValues/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/incremental/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/incremental/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/incremental/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/incremental/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/init/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/init/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/init/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/init/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/inlineSourceMap/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/inlineSourceMap/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/inlineSourceMap/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/inlineSourceMap/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/inlineSources/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/inlineSources/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/inlineSources/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/inlineSources/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/isolatedModules/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/isolatedModules/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/isolatedModules/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/isolatedModules/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/jsx/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/jsx/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/jsx/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/jsx/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/jsxFactory/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/jsxFactory/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/jsxFactory/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/jsxFactory/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/jsxFragmentFactory/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/jsxFragmentFactory/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/jsxFragmentFactory/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/jsxFragmentFactory/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/jsxImportSource/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/jsxImportSource/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/jsxImportSource/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/jsxImportSource/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/keyofStringsOnly/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/keyofStringsOnly/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/keyofStringsOnly/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/keyofStringsOnly/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/lib/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/lib/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/lib/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/lib/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/listEmittedFiles/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/listEmittedFiles/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/listEmittedFiles/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/listEmittedFiles/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/listFiles/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/listFiles/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/listFiles/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/listFiles/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/listFilesOnly/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/listFilesOnly/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/listFilesOnly/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/listFilesOnly/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/locale/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/locale/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/locale/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/locale/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/mapRoot/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/mapRoot/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/mapRoot/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/mapRoot/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/maxNodeModuleJsDepth/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/maxNodeModuleJsDepth/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/maxNodeModuleJsDepth/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/maxNodeModuleJsDepth/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/module/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/module/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/module/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/module/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/moduleDetection/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/moduleDetection/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/moduleDetection/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/moduleDetection/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/moduleResolution/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/moduleResolution/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/moduleResolution/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/moduleResolution/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/moduleSuffixes/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/moduleSuffixes/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/moduleSuffixes/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/moduleSuffixes/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/newLine/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/newLine/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/newLine/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/newLine/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/noEmit/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noEmit/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/noEmit/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noEmit/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/noEmitHelpers/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noEmitHelpers/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/noEmitHelpers/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noEmitHelpers/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/noEmitOnError/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noEmitOnError/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/noEmitOnError/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noEmitOnError/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/noErrorTruncation/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noErrorTruncation/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/noErrorTruncation/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noErrorTruncation/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/noFallthroughCasesInSwitch/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noFallthroughCasesInSwitch/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/noFallthroughCasesInSwitch/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noFallthroughCasesInSwitch/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/noImplicitAny/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noImplicitAny/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/noImplicitAny/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noImplicitAny/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/noImplicitOverride/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noImplicitOverride/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/noImplicitOverride/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noImplicitOverride/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/noImplicitReturns/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noImplicitReturns/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/noImplicitReturns/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noImplicitReturns/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/noImplicitThis/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noImplicitThis/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/noImplicitThis/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noImplicitThis/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/noImplicitUseStrict/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noImplicitUseStrict/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/noImplicitUseStrict/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noImplicitUseStrict/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/noLib/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noLib/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/noLib/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noLib/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/noPropertyAccessFromIndexSignature/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noPropertyAccessFromIndexSignature/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/noPropertyAccessFromIndexSignature/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noPropertyAccessFromIndexSignature/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/noResolve/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noResolve/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/noResolve/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noResolve/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/noStrictGenericChecks/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noStrictGenericChecks/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/noStrictGenericChecks/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noStrictGenericChecks/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/noUncheckedIndexedAccess/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noUncheckedIndexedAccess/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/noUncheckedIndexedAccess/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noUncheckedIndexedAccess/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/noUnusedLocals/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noUnusedLocals/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/noUnusedLocals/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noUnusedLocals/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/noUnusedParameters/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noUnusedParameters/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/noUnusedParameters/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/noUnusedParameters/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/out/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/out/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/out/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/out/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/outDir/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/outDir/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/outDir/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/outDir/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/outFile/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/outFile/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/outFile/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/outFile/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/paths/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/paths/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/paths/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/paths/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/plugins/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/plugins/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/plugins/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/plugins/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/preserveConstEnums/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/preserveConstEnums/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/preserveConstEnums/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/preserveConstEnums/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/preserveSymlinks/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/preserveSymlinks/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/preserveSymlinks/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/preserveSymlinks/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/preserveValueImports/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/preserveValueImports/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/preserveValueImports/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/preserveValueImports/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/preserveWatchOutput/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/preserveWatchOutput/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/preserveWatchOutput/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/preserveWatchOutput/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/pretty/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/pretty/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/pretty/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/pretty/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/reactNamespace/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/reactNamespace/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/reactNamespace/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/reactNamespace/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/removeComments/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/removeComments/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/removeComments/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/removeComments/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/resolveJsonModule/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/resolveJsonModule/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/resolveJsonModule/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/resolveJsonModule/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/rootDir/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/rootDir/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/rootDir/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/rootDir/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/rootDirs/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/rootDirs/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/rootDirs/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/rootDirs/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/showConfig/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/showConfig/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/showConfig/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/showConfig/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/skipDefaultLibCheck/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/skipDefaultLibCheck/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/skipDefaultLibCheck/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/skipDefaultLibCheck/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/skipLibCheck/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/skipLibCheck/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/skipLibCheck/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/skipLibCheck/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/sourceMap/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/sourceMap/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/sourceMap/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/sourceMap/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/sourceRoot/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/sourceRoot/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/sourceRoot/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/sourceRoot/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/strict/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/strict/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/strict/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/strict/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/strictBindCallApply/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/strictBindCallApply/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/strictBindCallApply/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/strictBindCallApply/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/strictFunctionTypes/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/strictFunctionTypes/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/strictFunctionTypes/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/strictFunctionTypes/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/strictNullChecks/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/strictNullChecks/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/strictNullChecks/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/strictNullChecks/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/strictPropertyInitialization/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/strictPropertyInitialization/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/strictPropertyInitialization/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/strictPropertyInitialization/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/stripInternal/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/stripInternal/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/stripInternal/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/stripInternal/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/suppressExcessPropertyErrors/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/suppressExcessPropertyErrors/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/suppressExcessPropertyErrors/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/suppressExcessPropertyErrors/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/suppressImplicitAnyIndexErrors/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/suppressImplicitAnyIndexErrors/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/suppressImplicitAnyIndexErrors/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/suppressImplicitAnyIndexErrors/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/synchronousWatchDirectory/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/synchronousWatchDirectory/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/synchronousWatchDirectory/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/synchronousWatchDirectory/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/target/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/target/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/target/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/target/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/traceResolution/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/traceResolution/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/traceResolution/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/traceResolution/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/tsBuildInfoFile/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/tsBuildInfoFile/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/tsBuildInfoFile/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/tsBuildInfoFile/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/typeRoots/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/typeRoots/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/typeRoots/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/typeRoots/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/types/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/types/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/types/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/types/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/useDefineForClassFields/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/useDefineForClassFields/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/useDefineForClassFields/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/useDefineForClassFields/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/useUnknownInCatchVariables/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/useUnknownInCatchVariables/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/useUnknownInCatchVariables/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/useUnknownInCatchVariables/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/version/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/version/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/version/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/version/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/watch/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/watch/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/watch/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/watch/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/watchDirectory/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/watchDirectory/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/watchDirectory/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/watchDirectory/tsconfig.json diff --git a/tests/baselines/reference/showConfig/Shows tsconfig for single option/watchFile/tsconfig.json b/tests/baselines/reference/config/showConfig/Shows tsconfig for single option/watchFile/tsconfig.json similarity index 100% rename from tests/baselines/reference/showConfig/Shows tsconfig for single option/watchFile/tsconfig.json rename to tests/baselines/reference/config/showConfig/Shows tsconfig for single option/watchFile/tsconfig.json diff --git a/tests/baselines/reference/config/tsconfigParsingWatchOptions/different options with json api.js b/tests/baselines/reference/config/tsconfigParsingWatchOptions/different options with json api.js new file mode 100644 index 0000000000000..cc94977b4a120 --- /dev/null +++ b/tests/baselines/reference/config/tsconfigParsingWatchOptions/different options with json api.js @@ -0,0 +1,109 @@ +Input:: { + "watchOptions": { + "watchFile": "UseFsEvents" + }, + "compileOnSave": false +} +Result: WatchOptions:: +{ + "watchFile": 4 +} +Result: Errors:: + +Input:: { + "watchOptions": { + "watchDirectory": "UseFsEvents" + }, + "compileOnSave": false +} +Result: WatchOptions:: +{ + "watchDirectory": 0 +} +Result: Errors:: + +Input:: { + "watchOptions": { + "fallbackPolling": "DynamicPriority" + }, + "compileOnSave": false +} +Result: WatchOptions:: +{ + "fallbackPolling": 2 +} +Result: Errors:: + +Input:: { + "watchOptions": { + "synchronousWatchDirectory": true + }, + "compileOnSave": false +} +Result: WatchOptions:: +{ + "synchronousWatchDirectory": true +} +Result: Errors:: + +Input:: { + "watchOptions": { + "excludeDirectories": [ + "**/temp" + ] + }, + "compileOnSave": false +} +Result: WatchOptions:: +{ + "excludeDirectories": [ + "/**/temp" + ] +} +Result: Errors:: + +Input:: { + "watchOptions": { + "excludeFiles": [ + "**/temp/*.ts" + ] + }, + "compileOnSave": false +} +Result: WatchOptions:: +{ + "excludeFiles": [ + "/**/temp/*.ts" + ] +} +Result: Errors:: + +Input:: { + "watchOptions": { + "excludeDirectories": [ + "**/../*" + ] + }, + "compileOnSave": false +} +Result: WatchOptions:: +{ + "excludeDirectories": [] +} +Result: Errors:: +error TS5065: File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '**/../*'. + +Input:: { + "watchOptions": { + "excludeFiles": [ + "**/../*" + ] + }, + "compileOnSave": false +} +Result: WatchOptions:: +{ + "excludeFiles": [] +} +Result: Errors:: +error TS5065: File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '**/../*'. diff --git a/tests/baselines/reference/config/tsconfigParsingWatchOptions/different options with jsonSourceFile api.js b/tests/baselines/reference/config/tsconfigParsingWatchOptions/different options with jsonSourceFile api.js new file mode 100644 index 0000000000000..c335b45b794da --- /dev/null +++ b/tests/baselines/reference/config/tsconfigParsingWatchOptions/different options with jsonSourceFile api.js @@ -0,0 +1,107 @@ +Input:: { + "watchOptions": { + "watchFile": "UseFsEvents" + } +} +Result: WatchOptions:: +{ + "watchFile": 4 +} +Result: Errors:: + +Input:: { + "watchOptions": { + "watchDirectory": "UseFsEvents" + } +} +Result: WatchOptions:: +{ + "watchDirectory": 0 +} +Result: Errors:: + +Input:: { + "watchOptions": { + "fallbackPolling": "DynamicPriority" + } +} +Result: WatchOptions:: +{ + "fallbackPolling": 2 +} +Result: Errors:: + +Input:: { + "watchOptions": { + "synchronousWatchDirectory": true + } +} +Result: WatchOptions:: +{ + "synchronousWatchDirectory": true +} +Result: Errors:: + +Input:: { + "watchOptions": { + "excludeDirectories": [ + "**/temp" + ] + } +} +Result: WatchOptions:: +{ + "excludeDirectories": [ + "/**/temp" + ] +} +Result: Errors:: + +Input:: { + "watchOptions": { + "excludeFiles": [ + "**/temp/*.ts" + ] + } +} +Result: WatchOptions:: +{ + "excludeFiles": [ + "/**/temp/*.ts" + ] +} +Result: Errors:: + +Input:: { + "watchOptions": { + "excludeDirectories": [ + "**/../*" + ] + } +} +Result: WatchOptions:: +{ + "excludeDirectories": [] +} +Result: Errors:: +tsconfig.json:1:40 - error TS5065: File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '**/../*'. + +1 {"watchOptions":{"excludeDirectories":["**/../*"]}} +   ~~~~~~~~~ + +Input:: { + "watchOptions": { + "excludeFiles": [ + "**/../*" + ] + } +} +Result: WatchOptions:: +{ + "excludeFiles": [] +} +Result: Errors:: +tsconfig.json:1:34 - error TS5065: File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '**/../*'. + +1 {"watchOptions":{"excludeFiles":["**/../*"]}} +   ~~~~~~~~~ diff --git a/tests/baselines/reference/config/tsconfigParsingWatchOptions/empty watchOptions specified option with json api.js b/tests/baselines/reference/config/tsconfigParsingWatchOptions/empty watchOptions specified option with json api.js new file mode 100644 index 0000000000000..2087b9e744a7c --- /dev/null +++ b/tests/baselines/reference/config/tsconfigParsingWatchOptions/empty watchOptions specified option with json api.js @@ -0,0 +1,7 @@ +Input:: { + "watchOptions": {}, + "compileOnSave": false +} +Result: WatchOptions:: + +Result: Errors:: diff --git a/tests/baselines/reference/config/tsconfigParsingWatchOptions/empty watchOptions specified option with jsonSourceFile api.js b/tests/baselines/reference/config/tsconfigParsingWatchOptions/empty watchOptions specified option with jsonSourceFile api.js new file mode 100644 index 0000000000000..a25c30df65e04 --- /dev/null +++ b/tests/baselines/reference/config/tsconfigParsingWatchOptions/empty watchOptions specified option with jsonSourceFile api.js @@ -0,0 +1,6 @@ +Input:: { + "watchOptions": {} +} +Result: WatchOptions:: + +Result: Errors:: diff --git a/tests/baselines/reference/config/tsconfigParsingWatchOptions/no watchOptions specified option with json api.js b/tests/baselines/reference/config/tsconfigParsingWatchOptions/no watchOptions specified option with json api.js new file mode 100644 index 0000000000000..b37ccbed5fdb3 --- /dev/null +++ b/tests/baselines/reference/config/tsconfigParsingWatchOptions/no watchOptions specified option with json api.js @@ -0,0 +1,6 @@ +Input:: { + "compileOnSave": false +} +Result: WatchOptions:: + +Result: Errors:: diff --git a/tests/baselines/reference/config/tsconfigParsingWatchOptions/no watchOptions specified option with jsonSourceFile api.js b/tests/baselines/reference/config/tsconfigParsingWatchOptions/no watchOptions specified option with jsonSourceFile api.js new file mode 100644 index 0000000000000..4c0e952e8eaa9 --- /dev/null +++ b/tests/baselines/reference/config/tsconfigParsingWatchOptions/no watchOptions specified option with jsonSourceFile api.js @@ -0,0 +1,4 @@ +Input:: {} +Result: WatchOptions:: + +Result: Errors:: diff --git a/tests/baselines/reference/config/tsconfigParsingWatchOptions/watch options extending passed in watch options with json api.js b/tests/baselines/reference/config/tsconfigParsingWatchOptions/watch options extending passed in watch options with json api.js new file mode 100644 index 0000000000000..8d535837e9f48 --- /dev/null +++ b/tests/baselines/reference/config/tsconfigParsingWatchOptions/watch options extending passed in watch options with json api.js @@ -0,0 +1,18 @@ +Input:: { + "watchOptions": { + "watchFile": "UseFsEvents" + }, + "compileOnSave": false +} +Result: WatchOptions:: +{ + "watchFile": 4 +} +Result: Errors:: + +Input:: { + "compileOnSave": false +} +Result: WatchOptions:: + +Result: Errors:: diff --git a/tests/baselines/reference/config/tsconfigParsingWatchOptions/watch options extending passed in watch options with jsonSourceFile api.js b/tests/baselines/reference/config/tsconfigParsingWatchOptions/watch options extending passed in watch options with jsonSourceFile api.js new file mode 100644 index 0000000000000..3cef381ecb232 --- /dev/null +++ b/tests/baselines/reference/config/tsconfigParsingWatchOptions/watch options extending passed in watch options with jsonSourceFile api.js @@ -0,0 +1,15 @@ +Input:: { + "watchOptions": { + "watchFile": "UseFsEvents" + } +} +Result: WatchOptions:: +{ + "watchFile": 4 +} +Result: Errors:: + +Input:: {} +Result: WatchOptions:: + +Result: Errors:: diff --git a/tests/baselines/reference/config/tsconfigParsingWatchOptions/when extending config file with watchOptions with json api.js b/tests/baselines/reference/config/tsconfigParsingWatchOptions/when extending config file with watchOptions with json api.js new file mode 100644 index 0000000000000..919753d60dbf5 --- /dev/null +++ b/tests/baselines/reference/config/tsconfigParsingWatchOptions/when extending config file with watchOptions with json api.js @@ -0,0 +1,24 @@ +Input:: { + "extends": "./base.json", + "watchOptions": { + "watchFile": "UseFsEvents" + }, + "compileOnSave": false +} +Result: WatchOptions:: +{ + "watchFile": 4, + "watchDirectory": 1 +} +Result: Errors:: + +Input:: { + "extends": "./base.json", + "compileOnSave": false +} +Result: WatchOptions:: +{ + "watchFile": 5, + "watchDirectory": 1 +} +Result: Errors:: diff --git a/tests/baselines/reference/config/tsconfigParsingWatchOptions/when extending config file with watchOptions with jsonSourceFile api.js b/tests/baselines/reference/config/tsconfigParsingWatchOptions/when extending config file with watchOptions with jsonSourceFile api.js new file mode 100644 index 0000000000000..9e02dd5173914 --- /dev/null +++ b/tests/baselines/reference/config/tsconfigParsingWatchOptions/when extending config file with watchOptions with jsonSourceFile api.js @@ -0,0 +1,22 @@ +Input:: { + "extends": "./base.json", + "watchOptions": { + "watchFile": "UseFsEvents" + } +} +Result: WatchOptions:: +{ + "watchFile": 4, + "watchDirectory": 1 +} +Result: Errors:: + +Input:: { + "extends": "./base.json" +} +Result: WatchOptions:: +{ + "watchFile": 5, + "watchDirectory": 1 +} +Result: Errors:: diff --git a/tests/baselines/reference/config/tsconfigParsingWatchOptions/when extending config file without watchOptions with json api.js b/tests/baselines/reference/config/tsconfigParsingWatchOptions/when extending config file without watchOptions with json api.js new file mode 100644 index 0000000000000..2414081976400 --- /dev/null +++ b/tests/baselines/reference/config/tsconfigParsingWatchOptions/when extending config file without watchOptions with json api.js @@ -0,0 +1,20 @@ +Input:: { + "extends": "./base.json", + "watchOptions": { + "watchFile": "UseFsEvents" + }, + "compileOnSave": false +} +Result: WatchOptions:: +{ + "watchFile": 4 +} +Result: Errors:: + +Input:: { + "extends": "./base.json", + "compileOnSave": false +} +Result: WatchOptions:: + +Result: Errors:: diff --git a/tests/baselines/reference/config/tsconfigParsingWatchOptions/when extending config file without watchOptions with jsonSourceFile api.js b/tests/baselines/reference/config/tsconfigParsingWatchOptions/when extending config file without watchOptions with jsonSourceFile api.js new file mode 100644 index 0000000000000..476bc99e4d83f --- /dev/null +++ b/tests/baselines/reference/config/tsconfigParsingWatchOptions/when extending config file without watchOptions with jsonSourceFile api.js @@ -0,0 +1,18 @@ +Input:: { + "extends": "./base.json", + "watchOptions": { + "watchFile": "UseFsEvents" + } +} +Result: WatchOptions:: +{ + "watchFile": 4 +} +Result: Errors:: + +Input:: { + "extends": "./base.json" +} +Result: WatchOptions:: + +Result: Errors:: 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 7eb455e3927d9..17cda20f3880d 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 @@ -12,42 +12,41 @@ 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] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 4 [00:00:11.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 5 [00:00:12.000] DirectoryWatcher:: Added:: WatchInfo: /c/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 6 [00:00:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 7 [00:00:14.000] DirectoryWatcher:: Added:: WatchInfo: /c 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 8 [00:00:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 9 [00:00:16.000] DirectoryWatcher:: Added:: WatchInfo: /c/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 10 [00:00:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 11 [00:00:18.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 12 [00:00:19.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 13 [00:00:20.000] Files (1) +Info 3 [00:00:10.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 4 [00:00:11.000] DirectoryWatcher:: Added:: WatchInfo: /c/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 5 [00:00:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 6 [00:00:13.000] DirectoryWatcher:: Added:: WatchInfo: /c 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 7 [00:00:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 8 [00:00:15.000] DirectoryWatcher:: Added:: WatchInfo: /c/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 9 [00:00:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 10 [00:00:17.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 11 [00:00:18.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 12 [00:00:19.000] Files (1) /c/foo.ts foo.ts Root file specified for compilation -Info 14 [00:00:21.000] ----------------------------------------------- -Info 15 [00:00:22.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 15 [00:00:23.000] Files (1) - -Info 15 [00:00:24.000] ----------------------------------------------- -Info 15 [00:00:25.000] Open files: -Info 15 [00:00:26.000] FileName: /c/foo.ts ProjectRootPath: undefined -Info 15 [00:00:27.000] Projects: /dev/null/inferredProject1* -Info 15 [00:00:28.000] getSemanticDiagnostics:: /c/foo.ts:: 1 -Info 16 [00:00:29.000] foo.ts(1,17): error TS2792: Cannot find module 'bar'. Did you mean to set the 'moduleResolution' option to 'node', or to add aliases to the 'paths' option? - -Info 17 [00:00:30.000] fileExists:: [{"key":"/c/tsconfig.json","count":1},{"key":"/c/jsconfig.json","count":1},{"key":"/tsconfig.json","count":1},{"key":"/jsconfig.json","count":1},{"key":"/c/bar.ts","count":1},{"key":"/c/bar.tsx","count":1},{"key":"/c/bar.d.ts","count":1},{"key":"/bar.ts","count":1},{"key":"/bar.tsx","count":1},{"key":"/bar.d.ts","count":1},{"key":"/c/bar.js","count":1},{"key":"/c/bar.jsx","count":1},{"key":"/bar.js","count":1},{"key":"/bar.jsx","count":1},{"key":"/c/package.json","count":1},{"key":"/package.json","count":1}] -Info 18 [00:00:31.000] directoryExists:: [{"key":"/c","count":3},{"key":"/","count":2},{"key":"/c/node_modules","count":2},{"key":"/node_modules","count":1},{"key":"/c/node_modules/@types","count":2},{"key":"/node_modules/@types","count":1}] -Info 19 [00:00:32.000] getDirectories:: [] -Info 20 [00:00:33.000] readFile:: [{"key":"/c/foo.ts","count":1}] -Info 21 [00:00:34.000] readDirectory:: [] -Info 22 [00:00:37.000] DirectoryWatcher:: Triggered with /c/bar.d.ts :: WatchInfo: /c 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 23 [00:00:38.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation -Info 24 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /c/bar.d.ts :: WatchInfo: /c 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 13 [00:00:20.000] ----------------------------------------------- +Info 14 [00:00:21.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 14 [00:00:22.000] Files (1) + +Info 14 [00:00:23.000] ----------------------------------------------- +Info 14 [00:00:24.000] Open files: +Info 14 [00:00:25.000] FileName: /c/foo.ts ProjectRootPath: undefined +Info 14 [00:00:26.000] Projects: /dev/null/inferredProject1* +Info 14 [00:00:27.000] getSemanticDiagnostics:: /c/foo.ts:: 1 +Info 15 [00:00:28.000] foo.ts(1,17): error TS2792: Cannot find module 'bar'. Did you mean to set the 'moduleResolution' option to 'node', or to add aliases to the 'paths' option? + +Info 16 [00:00:29.000] fileExists:: [{"key":"/c/tsconfig.json","count":1},{"key":"/c/jsconfig.json","count":1},{"key":"/tsconfig.json","count":1},{"key":"/jsconfig.json","count":1},{"key":"/c/bar.ts","count":1},{"key":"/c/bar.tsx","count":1},{"key":"/c/bar.d.ts","count":1},{"key":"/bar.ts","count":1},{"key":"/bar.tsx","count":1},{"key":"/bar.d.ts","count":1},{"key":"/c/bar.js","count":1},{"key":"/c/bar.jsx","count":1},{"key":"/bar.js","count":1},{"key":"/bar.jsx","count":1},{"key":"/c/package.json","count":1},{"key":"/package.json","count":1}] +Info 17 [00:00:30.000] directoryExists:: [{"key":"/c","count":3},{"key":"/","count":2},{"key":"/c/node_modules","count":2},{"key":"/node_modules","count":1},{"key":"/c/node_modules/@types","count":2},{"key":"/node_modules/@types","count":1}] +Info 18 [00:00:31.000] getDirectories:: [] +Info 19 [00:00:32.000] readFile:: [{"key":"/c/foo.ts","count":1}] +Info 20 [00:00:33.000] readDirectory:: [] +Info 21 [00:00:36.000] DirectoryWatcher:: Triggered with /c/bar.d.ts :: WatchInfo: /c 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 22 [00:00:37.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation +Info 23 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /c/bar.d.ts :: WatchInfo: /c 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Before running timeout callbacks //// [/c/bar.d.ts] export var y = 1 @@ -65,9 +64,9 @@ FsWatches:: FsWatchesRecursive:: -Info 25 [00:00:40.000] Running: /dev/null/inferredProject1*FailedLookupInvalidation -Info 26 [00:00:41.000] Scheduled: /dev/null/inferredProject1* -Info 27 [00:00:42.000] Scheduled: *ensureProjectForOpenFiles* +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:: @@ -82,13 +81,13 @@ FsWatches:: FsWatchesRecursive:: -Info 28 [00:00:43.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 29 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /c/bar.d.ts 500 undefined WatchType: Closed Script info -Info 30 [00:00:45.000] DirectoryWatcher:: Close:: WatchInfo: /c/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 31 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /c/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 32 [00:00:47.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 33 [00:00:48.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 34 [00:00:49.000] Files (2) +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 +Info 30 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /c/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 31 [00:00:46.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 32 [00:00:47.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 33 [00:00:48.000] Files (2) /c/bar.d.ts /c/foo.ts @@ -98,10 +97,10 @@ Info 34 [00:00:49.000] Files (2) foo.ts Root file specified for compilation -Info 35 [00:00:50.000] ----------------------------------------------- -Info 36 [00:00:51.000] getSemanticDiagnostics:: /c/foo.ts:: 0 -Info 37 [00:00:52.000] fileExists:: [{"key":"/c/bar.ts","count":1},{"key":"/c/bar.tsx","count":1},{"key":"/c/bar.d.ts","count":3}] -Info 38 [00:00:53.000] directoryExists:: [{"key":"/c","count":1},{"key":"/c/node_modules/@types","count":1},{"key":"/node_modules/@types","count":1}] -Info 39 [00:00:54.000] getDirectories:: [] -Info 40 [00:00:55.000] readFile:: [{"key":"/c/bar.d.ts","count":1}] -Info 41 [00:00:56.000] readDirectory:: [] \ No newline at end of file +Info 34 [00:00:49.000] ----------------------------------------------- +Info 35 [00:00:50.000] getSemanticDiagnostics:: /c/foo.ts:: 0 +Info 36 [00:00:51.000] fileExists:: [{"key":"/c/bar.ts","count":1},{"key":"/c/bar.tsx","count":1},{"key":"/c/bar.d.ts","count":3}] +Info 37 [00:00:52.000] directoryExists:: [{"key":"/c","count":1},{"key":"/c/node_modules/@types","count":1},{"key":"/node_modules/@types","count":1}] +Info 38 [00:00:53.000] getDirectories:: [] +Info 39 [00:00:54.000] readFile:: [{"key":"/c/bar.d.ts","count":1}] +Info 40 [00:00:55.000] readDirectory:: [] \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/npm-install-works-when-timeout-occurs-after-installation.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/npm-install-works-when-timeout-occurs-after-installation.js index f6e9ceca25363..61ab825864c0f 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 @@ -64,24 +64,23 @@ Info 5 [00:00:32.000] Config: /user/username/rootfolder/otherfolder/a/b/tscon } Info 6 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Info 7 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:35.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:36.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 10 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 18 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 19 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 20 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 21 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 22 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 23 [00:00:50.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:51.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 25 [00:00:52.000] Files (2) +Info 8 [00:00:35.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 9 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 17 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 18 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 19 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 20 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 21 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 22 [00:00:49.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:50.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 24 [00:00:51.000] Files (2) /a/lib/lib.d.ts /user/username/rootfolder/otherfolder/a/b/app.ts @@ -91,101 +90,101 @@ Info 25 [00:00:52.000] Files (2) app.ts Matched by default include pattern '**/*' -Info 26 [00:00:53.000] ----------------------------------------------- -Info 27 [00:00:54.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 27 [00:00:55.000] Files (2) - -Info 27 [00:00:56.000] ----------------------------------------------- -Info 27 [00:00:57.000] Open files: -Info 27 [00:00:58.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined -Info 27 [00:00:59.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 27 [00:01:02.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 28 [00:01:03.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation -Info 29 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 30 [00:01:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 31 [00:01:06.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 32 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 33 [00:01:08.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:09.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 35 [00:01:10.000] Scheduled: *ensureProjectForOpenFiles* -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 38 [00:01:15.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 39 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 40 [00:01:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 41 [00:01:18.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 42 [00:01:19.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 43 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 44 [00:01:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 45 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 46 [00:01:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 47 [00:01:26.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types -Info 48 [00:01:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 49 [00:01:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 50 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 51 [00:01:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 52 [00:01:33.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa -Info 53 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 54 [00:01:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 55 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 56 [00:01:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 57 [00:01:40.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 -Info 58 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 59 [00:01:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 60 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 61 [00:01:46.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 62 [00:01:47.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff -Info 63 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 64 [00:01:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 65 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 66 [00:01:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 67 [00:01:54.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 -Info 68 [00:01:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 69 [00:01:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [00:01:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 71 [00:02:00.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 72 [00:02:01.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d -Info 73 [00:02:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 74 [00:02:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 75 [00:02:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 76 [00:02:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 77 [00:02:08.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json -Info 78 [00:02:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 79 [00:02:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 80 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [00:02:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 82 [00:02:15.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json -Info 83 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 84 [00:02:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 85 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 86 [00:02:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 87 [00:02:22.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json -Info 88 [00:02:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 89 [00:02:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 90 [00:02:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 91 [00:02:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 92 [00:02:29.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json -Info 93 [00:02:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 94 [00:02:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 95 [00:02:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 96 [00:02:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 97 [00:02:36.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js -Info 98 [00:02:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 99 [00:02:40.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 100 [00:02:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 101 [00:02:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 102 [00:02:43.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts -Info 103 [00:02:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 104 [00:02:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 105 [00:02:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 106 [00:02:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 107 [00:02:50.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib -Info 108 [00:02:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 109 [00:02:54.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 110 [00:02:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 111 [00:02:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 112 [00:02:57.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js -Info 113 [00:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 25 [00:00:52.000] ----------------------------------------------- +Info 26 [00:00:53.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 26 [00:00:54.000] Files (2) + +Info 26 [00:00:55.000] ----------------------------------------------- +Info 26 [00:00:56.000] Open files: +Info 26 [00:00:57.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined +Info 26 [00:00:58.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 26 [00:01:01.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:02.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation +Info 28 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 29 [00:01:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 30 [00:01:05.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 31 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 32 [00:01:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:08.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 34 [00:01:09.000] Scheduled: *ensureProjectForOpenFiles* +Info 35 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 37 [00:01:14.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 38 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 39 [00:01:16.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 40 [00:01:17.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 41 [00:01:18.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 42 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 43 [00:01:22.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 44 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 45 [00:01:24.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 46 [00:01:25.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types +Info 47 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 48 [00:01:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 49 [00:01:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 50 [00:01:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 51 [00:01:32.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa +Info 52 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 53 [00:01:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 54 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 55 [00:01:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 56 [00:01:39.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 +Info 57 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 58 [00:01:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 59 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 60 [00:01:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 61 [00:01:46.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff +Info 62 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 63 [00:01:50.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 64 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:01:52.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 66 [00:01:53.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 +Info 67 [00:01:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 68 [00:01:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 69 [00:01:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 70 [00:01:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 71 [00:02:00.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d +Info 72 [00:02:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 73 [00:02:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 74 [00:02:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 75 [00:02:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 76 [00:02:07.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json +Info 77 [00:02:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 78 [00:02:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 79 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 80 [00:02:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 81 [00:02:14.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json +Info 82 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 83 [00:02:18.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 84 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 85 [00:02:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 86 [00:02:21.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json +Info 87 [00:02:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 88 [00:02:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 89 [00:02:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 90 [00:02:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 91 [00:02:28.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json +Info 92 [00:02:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 93 [00:02:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 94 [00:02:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 95 [00:02:34.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 96 [00:02:35.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js +Info 97 [00:02:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 98 [00:02:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 99 [00:02:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 100 [00:02:41.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 101 [00:02:42.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts +Info 102 [00:02:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 103 [00:02:46.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 104 [00:02:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 105 [00:02:48.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 106 [00:02:49.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib +Info 107 [00:02:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 108 [00:02:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 109 [00:02:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 110 [00:02:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 111 [00:02:56.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js +Info 112 [00:02:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Checking timeout queue length: 3 //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json] { @@ -558,36 +557,36 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 114 [00:03:08.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 115 [00:03:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 116 [00:03:10.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 117 [00:03:11.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib -Info 118 [00:03:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 119 [00:03:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 120 [00:03:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 121 [00:03:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 122 [00:03:18.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add -Info 123 [00:03:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 124 [00:03:22.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 125 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 126 [00:03:24.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 127 [00:03:25.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator -Info 128 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 129 [00:03:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 130 [00:03:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 131 [00:03:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 132 [00:03:32.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json -Info 133 [00:03:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 134 [00:03:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 135 [00:03:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 136 [00:03:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 137 [00:03:39.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js -Info 138 [00:03:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 139 [00:03:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 140 [00:03:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 141 [00:03:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 142 [00:03:46.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 -Info 143 [00:03:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +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 +Info 114 [00:03:08.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 115 [00:03:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 116 [00:03:10.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib +Info 117 [00:03:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 118 [00:03:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 119 [00:03:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 120 [00:03:16.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 121 [00:03:17.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add +Info 122 [00:03:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 123 [00:03:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 124 [00:03:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 125 [00:03:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 126 [00:03:24.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator +Info 127 [00:03:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 128 [00:03:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 129 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 130 [00:03:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 131 [00:03:31.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json +Info 132 [00:03:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 133 [00:03:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 134 [00:03:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 135 [00:03:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 136 [00:03:38.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js +Info 137 [00:03:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 138 [00:03:42.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 139 [00:03:43.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 140 [00:03:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 141 [00:03:45.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 +Info 142 [00:03:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Checking timeout queue length: 3 //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json] { @@ -663,11 +662,11 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 144 [00:03:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 145 [00:03:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 146 [00:03:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 147 [00:03:52.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 -Info 148 [00:03:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +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 +Info 146 [00:03:51.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 +Info 147 [00:03:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Checking timeout queue length: 3 //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594] deleted @@ -695,41 +694,41 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 149 [00:04:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 150 [00:04:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 151 [00:04:16.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 152 [00:04:17.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles -Info 153 [00:04:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 154 [00:04:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 155 [00:04:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 156 [00:04:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 157 [00:04:24.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator -Info 158 [00:04:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 159 [00:04:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 160 [00:04:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 161 [00:04:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 162 [00:04:33.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src -Info 163 [00:04:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 164 [00:04:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 165 [00:04:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 166 [00:04:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 167 [00:04:39.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add -Info 168 [00:04:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 169 [00:04:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 170 [00:04:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 171 [00:04:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 172 [00:04:45.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable -Info 173 [00:04:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 174 [00:04:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 175 [00:04:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 176 [00:04:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 177 [00:04:52.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom -Info 178 [00:04:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 179 [00:04:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 180 [00:04:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 181 [00:04:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 182 [00:04:59.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts -Info 183 [00:05:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +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 +Info 151 [00:04:16.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles +Info 152 [00:04:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 153 [00:04:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 154 [00:04:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 155 [00:04:22.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 156 [00:04:23.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator +Info 157 [00:04:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 158 [00:04:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 159 [00:04:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 160 [00:04:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 161 [00:04:32.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src +Info 162 [00:04:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 163 [00:04:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 164 [00:04:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 165 [00:04:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 166 [00:04:38.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add +Info 167 [00:04:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 168 [00:04:41.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 169 [00:04:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 170 [00:04:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 171 [00:04:44.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable +Info 172 [00:04:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 173 [00:04:48.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 174 [00:04:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 175 [00:04:50.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 176 [00:04:51.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom +Info 177 [00:04:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 178 [00:04:55.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 179 [00:04:56.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 180 [00:04:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 181 [00:04:58.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts +Info 182 [00:04:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Checking timeout queue length: 3 //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts] @@ -771,31 +770,31 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 184 [00:05:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 185 [00:05:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 186 [00:05:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 187 [00:05:16.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler -Info 188 [00:05:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 189 [00:05:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 190 [00:05:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 191 [00:05:22.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 192 [00:05:23.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util -Info 193 [00:05:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 194 [00:05:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 195 [00:05:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 196 [00:05:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 197 [00:05:30.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol -Info 198 [00:05:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 199 [00:05:34.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 200 [00:05:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 201 [00:05:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 202 [00:05:37.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing -Info 203 [00:05:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 204 [00:05:41.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 205 [00:05:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 206 [00:05:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 207 [00:05:44.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 -Info 208 [00:05:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +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 +Info 186 [00:05:15.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler +Info 187 [00:05:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 188 [00:05:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 189 [00:05:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 190 [00:05:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 191 [00:05:22.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util +Info 192 [00:05:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 193 [00:05:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 194 [00:05:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 195 [00:05:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 196 [00:05:29.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol +Info 197 [00:05:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 198 [00:05:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 199 [00:05:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 200 [00:05:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 201 [00:05:36.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing +Info 202 [00:05:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 203 [00:05:40.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 204 [00:05:41.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 205 [00:05:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 206 [00:05:43.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 +Info 207 [00:05:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Checking timeout queue length: 3 //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041] { @@ -1053,73 +1052,73 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 209 [00:05:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 210 [00:05:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 211 [00:05:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 212 [00:05:50.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 -Info 213 [00:05:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 214 [00:06:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 215 [00:06:05.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 216 [00:06:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 217 [00:06:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 218 [00:06:08.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 219 [00:06:09.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 220 [00:06:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 221 [00:06:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 222 [00:06:14.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 223 [00:06:15.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 224 [00:06:16.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 225 [00:06:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 226 [00:06:18.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 227 [00:06:19.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 228 [00:06:20.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 229 [00:06:21.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 230 [00:06:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 231 [00:06:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 232 [00:06:24.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 233 [00:06:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 234 [00:06:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 235 [00:06:27.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 236 [00:06:28.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 237 [00:06:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 238 [00:06:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 239 [00:06:33.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 240 [00:06:34.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 241 [00:06:35.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 242 [00:06:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 243 [00:06:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 244 [00:06:38.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 245 [00:06:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 246 [00:06:40.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 247 [00:06:41.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 248 [00:06:42.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 249 [00:06:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 250 [00:06:46.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 251 [00:06:47.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 252 [00:06:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 253 [00:06:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 254 [00:06:50.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 255 [00:06:51.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 256 [00:06:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 257 [00:06:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 258 [00:06:56.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 259 [00:06:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 260 [00:06:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 261 [00:06:59.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 262 [00:07:00.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 263 [00:07:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 264 [00:07:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 265 [00:07:05.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 266 [00:07:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 267 [00:07:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 268 [00:07:08.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 269 [00:07:09.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 270 [00:07:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 271 [00:07:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 272 [00:07:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 273 [00:07:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 274 [00:07:16.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.bin -Info 275 [00:07:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +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 +Info 211 [00:05:49.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 +Info 212 [00:05:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 213 [00:06:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 214 [00:06:04.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 215 [00:06:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 216 [00:06:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 217 [00:06:07.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 218 [00:06:08.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 219 [00:06:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 220 [00:06:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 221 [00:06:13.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 222 [00:06:14.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 223 [00:06:15.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 224 [00:06:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 225 [00:06:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 226 [00:06:18.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 227 [00:06:19.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 228 [00:06:20.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 229 [00:06:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 230 [00:06:22.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 231 [00:06:23.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 232 [00:06:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 233 [00:06:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 234 [00:06:26.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 235 [00:06:27.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 236 [00:06:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 237 [00:06:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 238 [00:06:32.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 239 [00:06:33.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 240 [00:06:34.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 241 [00:06:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 242 [00:06:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 243 [00:06:37.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 244 [00:06:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 245 [00:06:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 246 [00:06:40.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 247 [00:06:41.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 248 [00:06:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 249 [00:06:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 250 [00:06:46.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 251 [00:06:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 252 [00:06:48.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 253 [00:06:49.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 254 [00:06:50.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 255 [00:06:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 256 [00:06:54.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 257 [00:06:55.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 258 [00:06:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 259 [00:06:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 260 [00:06:58.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 261 [00:06:59.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 262 [00:07:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 263 [00:07:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 264 [00:07:04.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 265 [00:07:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 266 [00:07:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 267 [00:07:07.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 268 [00:07:08.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 269 [00:07:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 270 [00:07:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 271 [00:07:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 272 [00:07:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 273 [00:07:15.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.bin +Info 274 [00:07:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Checking timeout queue length: 3 //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041] deleted @@ -1147,326 +1146,326 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules/@types: {} -Info 276 [00:07:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 277 [00:07:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 278 [00:07:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 279 [00:07:22.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts -Info 280 [00:07:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 281 [00:07:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 282 [00:07:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 283 [00:07:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 284 [00:07:28.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json -Info 285 [00:07:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 286 [00:07:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 287 [00:07:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 288 [00:07:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 289 [00:07:34.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 -Info 290 [00:07:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 291 [00:07:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 292 [00:07:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 293 [00:07:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 294 [00:07:40.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types -Info 295 [00:07:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 296 [00:07:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 297 [00:07:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 298 [00:07:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 299 [00:07:46.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js -Info 300 [00:07:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 301 [00:07:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 302 [00:07:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 303 [00:07:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 304 [00:07:52.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json -Info 305 [00:07:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 306 [00:07:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 307 [00:07:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 308 [00:07:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 309 [00:07:58.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa -Info 310 [00:07:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 311 [00:08:01.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 312 [00:08:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 313 [00:08:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 314 [00:08:04.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator -Info 315 [00:08:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 316 [00:08:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 317 [00:08:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 318 [00:08:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 319 [00:08:10.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add -Info 320 [00:08:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 321 [00:08:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 322 [00:08:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 323 [00:08:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 324 [00:08:16.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles -Info 325 [00:08:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 326 [00:08:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 327 [00:08:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 328 [00:08:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 329 [00:08:22.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator -Info 330 [00:08:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 331 [00:08:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 332 [00:08:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 333 [00:08:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 334 [00:08:28.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json -Info 335 [00:08:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 336 [00:08:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 337 [00:08:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 338 [00:08:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 339 [00:08:34.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom -Info 340 [00:08:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 341 [00:08:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 342 [00:08:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 343 [00:08:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 344 [00:08:40.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable -Info 345 [00:08:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 346 [00:08:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 347 [00:08:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 348 [00:08:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 349 [00:08:46.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add -Info 350 [00:08:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 351 [00:08:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 352 [00:08:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 353 [00:08:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 354 [00:08:52.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler -Info 355 [00:08:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 356 [00:08:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 357 [00:08:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 358 [00:08:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 359 [00:08:58.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util -Info 360 [00:08:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 361 [00:09:01.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 362 [00:09:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 363 [00:09:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 364 [00:09:04.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src -Info 365 [00:09:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 366 [00:09:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 367 [00:09:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 368 [00:09:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 369 [00:09:10.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol -Info 370 [00:09:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 371 [00:09:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 372 [00:09:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 373 [00:09:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 374 [00:09:16.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing -Info 375 [00:09:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 376 [00:09:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 377 [00:09:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 378 [00:09:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 379 [00:09:22.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 -Info 380 [00:09:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 381 [00:09:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 382 [00:09:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 383 [00:09:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 384 [00:09:28.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts -Info 385 [00:09:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 386 [00:09:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 387 [00:09:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 388 [00:09:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 389 [00:09:34.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js -Info 390 [00:09:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 391 [00:09:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 392 [00:09:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 393 [00:09:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 394 [00:09:40.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js -Info 395 [00:09:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 396 [00:09:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 397 [00:09:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 398 [00:09:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 399 [00:09:46.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib -Info 400 [00:09:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 401 [00:09:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 402 [00:09:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 403 [00:09:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 404 [00:09:52.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json -Info 405 [00:09:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 406 [00:09:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 407 [00:09:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 408 [00:09:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 409 [00:09:58.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff -Info 410 [00:09:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 411 [00:10:01.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 412 [00:10:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 413 [00:10:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 414 [00:10:04.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib -Info 415 [00:10:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 416 [00:10:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 417 [00:10:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 418 [00:10:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 419 [00:10:10.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json -Info 420 [00:10:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 421 [00:10:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 422 [00:10:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 423 [00:10:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 424 [00:10:16.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d -Info 425 [00:10:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 426 [00:10:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 427 [00:10:20.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 428 [00:10:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 429 [00:10:22.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 430 [00:10:23.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 431 [00:10:24.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 432 [00:10:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 433 [00:10:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 434 [00:10:29.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 435 [00:10:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 436 [00:10:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 437 [00:10:32.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 438 [00:10:33.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 439 [00:10:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 440 [00:10:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 441 [00:10:38.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 442 [00:10:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 443 [00:10:40.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 444 [00:10:41.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json -Info 445 [00:10:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 446 [00:10:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 447 [00:10:46.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 448 [00:10:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 449 [00:10:48.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 450 [00:10:49.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json -Info 451 [00:10:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 452 [00:10:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 453 [00:10:54.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 454 [00:10:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 455 [00:10:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 456 [00:10:57.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json -Info 457 [00:10:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 458 [00:11:01.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 459 [00:11:02.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 460 [00:11:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 461 [00:11:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 462 [00:11:05.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json -Info 463 [00:11:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 464 [00:11:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 465 [00:11:10.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 466 [00:11:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 467 [00:11:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 468 [00:11:13.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js -Info 469 [00:11:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 470 [00:11:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 471 [00:11:18.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 472 [00:11:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 473 [00:11:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 474 [00:11:21.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 475 [00:11:22.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 476 [00:11:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 477 [00:11:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 478 [00:11:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 479 [00:11:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 480 [00:11:29.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 481 [00:11:30.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 482 [00:11:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 483 [00:11:34.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 484 [00:11:35.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 485 [00:11:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 486 [00:11:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 487 [00:11:38.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js -Info 488 [00:11:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 489 [00:11:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 490 [00:11:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 491 [00:11:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 492 [00:11:45.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 493 [00:11:46.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 494 [00:11:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 495 [00:11:50.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 496 [00:11:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 497 [00:11:52.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 498 [00:11:53.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 499 [00:11:54.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 500 [00:11:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 501 [00:11:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 502 [00:11:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 503 [00:12:00.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 504 [00:12:01.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 505 [00:12:02.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 506 [00:12:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 507 [00:12:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 508 [00:12:07.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 509 [00:12:08.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 510 [00:12:09.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 511 [00:12:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 512 [00:12:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 513 [00:12:12.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 514 [00:12:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 515 [00:12:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 516 [00:12:15.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json -Info 517 [00:12:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 518 [00:12:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 519 [00:12:20.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 520 [00:12:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 521 [00:12:22.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 522 [00:12:23.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js -Info 523 [00:12:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 524 [00:12:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 525 [00:12:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 526 [00:12:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 527 [00:12:30.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 528 [00:12:31.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 529 [00:12:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 530 [00:12:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 531 [00:12:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 532 [00:12:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 533 [00:12:38.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 534 [00:12:39.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 535 [00:12:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 536 [00:12:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 537 [00:12:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 538 [00:12:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 539 [00:12:48.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 540 [00:12:49.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 541 [00:12:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 542 [00:12:52.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 543 [00:12:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 544 [00:12:54.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 545 [00:12:55.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 546 [00:12:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 547 [00:12:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 548 [00:12:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 549 [00:13:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 550 [00:13:01.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 551 [00:13:02.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 552 [00:13:03.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 553 [00:13:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 554 [00:13:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 555 [00:13:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 556 [00:13:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 557 [00:13:10.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 558 [00:13:11.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 559 [00:13:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 560 [00:13:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 561 [00:13:16.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 562 [00:13:17.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 563 [00:13:18.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 564 [00:13:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 565 [00:13:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 566 [00:13:21.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 567 [00:13:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 568 [00:13:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 569 [00:13:24.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 570 [00:13:25.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 571 [00:13:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 572 [00:13:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 573 [00:13:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 574 [00:13:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 575 [00:13:32.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 576 [00:13:33.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 577 [00:13:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 578 [00:13:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 579 [00:13:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 580 [00:13:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 581 [00:13:40.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 582 [00:13:41.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 583 [00:13:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 584 [00:13:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 585 [00:13:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 586 [00:13:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 587 [00:13:48.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 588 [00:13:49.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 589 [00:13:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 590 [00:13:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 591 [00:13:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 592 [00:13:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 593 [00:13:56.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 594 [00:13:57.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 595 [00:13:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +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 +Info 276 [00:07:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 277 [00:07:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 278 [00:07:21.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts +Info 279 [00:07:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 280 [00:07:24.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 281 [00:07:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 282 [00:07:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 283 [00:07:27.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json +Info 284 [00:07:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 285 [00:07:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 286 [00:07:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 287 [00:07:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 288 [00:07:33.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 +Info 289 [00:07:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 290 [00:07:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 291 [00:07:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 292 [00:07:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 293 [00:07:39.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types +Info 294 [00:07:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 295 [00:07:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 296 [00:07:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 297 [00:07:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 298 [00:07:45.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js +Info 299 [00:07:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 300 [00:07:48.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 301 [00:07:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 302 [00:07:50.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 303 [00:07:51.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json +Info 304 [00:07:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 305 [00:07:54.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 306 [00:07:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 307 [00:07:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 308 [00:07:57.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa +Info 309 [00:07:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 310 [00:08:00.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 311 [00:08:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 312 [00:08:02.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 313 [00:08:03.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator +Info 314 [00:08:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 315 [00:08:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 316 [00:08:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 317 [00:08:08.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 318 [00:08:09.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add +Info 319 [00:08:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 320 [00:08:12.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 321 [00:08:13.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 322 [00:08:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 323 [00:08:15.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles +Info 324 [00:08:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 325 [00:08:18.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 326 [00:08:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 327 [00:08:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 328 [00:08:21.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator +Info 329 [00:08:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 330 [00:08:24.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 331 [00:08:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 332 [00:08:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 333 [00:08:27.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json +Info 334 [00:08:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 335 [00:08:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 336 [00:08:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 337 [00:08:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 338 [00:08:33.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom +Info 339 [00:08:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 340 [00:08:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 341 [00:08:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 342 [00:08:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 343 [00:08:39.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable +Info 344 [00:08:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 345 [00:08:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 346 [00:08:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 347 [00:08:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 348 [00:08:45.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add +Info 349 [00:08:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 350 [00:08:48.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 351 [00:08:49.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 352 [00:08:50.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 353 [00:08:51.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler +Info 354 [00:08:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 355 [00:08:54.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 356 [00:08:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 357 [00:08:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 358 [00:08:57.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util +Info 359 [00:08:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 360 [00:09:00.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 361 [00:09:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 362 [00:09:02.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 363 [00:09:03.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src +Info 364 [00:09:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 365 [00:09:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 366 [00:09:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 367 [00:09:08.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 368 [00:09:09.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol +Info 369 [00:09:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 370 [00:09:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 371 [00:09:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 372 [00:09:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 373 [00:09:15.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing +Info 374 [00:09:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 375 [00:09:18.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 376 [00:09:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 377 [00:09:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 378 [00:09:21.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 +Info 379 [00:09:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 380 [00:09:24.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 381 [00:09:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 382 [00:09:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 383 [00:09:27.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts +Info 384 [00:09:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 385 [00:09:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 386 [00:09:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 387 [00:09:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 388 [00:09:33.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js +Info 389 [00:09:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 390 [00:09:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 391 [00:09:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 392 [00:09:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 393 [00:09:39.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js +Info 394 [00:09:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 395 [00:09:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 396 [00:09:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 397 [00:09:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 398 [00:09:45.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib +Info 399 [00:09:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 400 [00:09:48.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 401 [00:09:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 402 [00:09:50.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 403 [00:09:51.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json +Info 404 [00:09:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 405 [00:09:54.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 406 [00:09:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 407 [00:09:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 408 [00:09:57.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff +Info 409 [00:09:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 410 [00:10:00.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 411 [00:10:01.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 412 [00:10:02.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 413 [00:10:03.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib +Info 414 [00:10:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 415 [00:10:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 416 [00:10:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 417 [00:10:08.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 418 [00:10:09.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json +Info 419 [00:10:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 420 [00:10:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 421 [00:10:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 422 [00:10:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 423 [00:10:15.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d +Info 424 [00:10:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 425 [00:10:18.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 426 [00:10:19.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 427 [00:10:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 428 [00:10:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 429 [00:10:22.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 430 [00:10:23.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 431 [00:10:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 432 [00:10:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 433 [00:10:28.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 434 [00:10:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 435 [00:10:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 436 [00:10:31.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 437 [00:10:32.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 438 [00:10:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 439 [00:10:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 440 [00:10:37.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 441 [00:10:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 442 [00:10:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 443 [00:10:40.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json +Info 444 [00:10:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 445 [00:10:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 446 [00:10:45.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 447 [00:10:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 448 [00:10:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 449 [00:10:48.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json +Info 450 [00:10:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 451 [00:10:52.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 452 [00:10:53.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 453 [00:10:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 454 [00:10:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 455 [00:10:56.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json +Info 456 [00:10:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 457 [00:11:00.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 458 [00:11:01.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 459 [00:11:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 460 [00:11:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 461 [00:11:04.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json +Info 462 [00:11:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 463 [00:11:08.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 464 [00:11:09.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 465 [00:11:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 466 [00:11:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 467 [00:11:12.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js +Info 468 [00:11:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 469 [00:11:16.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 470 [00:11:17.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 471 [00:11:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 472 [00:11:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 473 [00:11:20.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 474 [00:11:21.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 475 [00:11:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 476 [00:11:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 477 [00:11:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 478 [00:11:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 479 [00:11:28.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 480 [00:11:29.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 481 [00:11:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 482 [00:11:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 483 [00:11:34.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 484 [00:11:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 485 [00:11:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 486 [00:11:37.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js +Info 487 [00:11:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 488 [00:11:41.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 489 [00:11:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 490 [00:11:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 491 [00:11:44.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 492 [00:11:45.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 493 [00:11:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 494 [00:11:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 495 [00:11:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 496 [00:11:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 497 [00:11:52.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 498 [00:11:53.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 499 [00:11:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 500 [00:11:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 501 [00:11:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 502 [00:11:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 503 [00:12:00.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 504 [00:12:01.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 505 [00:12:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 506 [00:12:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 507 [00:12:06.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 508 [00:12:07.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 509 [00:12:08.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 510 [00:12:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 511 [00:12:10.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 512 [00:12:11.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 513 [00:12:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 514 [00:12:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 515 [00:12:14.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json +Info 516 [00:12:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 517 [00:12:18.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 518 [00:12:19.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 519 [00:12:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 520 [00:12:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 521 [00:12:22.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js +Info 522 [00:12:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 523 [00:12:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 524 [00:12:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 525 [00:12:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 526 [00:12:29.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 527 [00:12:30.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 528 [00:12:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 529 [00:12:34.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 530 [00:12:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 531 [00:12:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 532 [00:12:37.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 533 [00:12:38.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 534 [00:12:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 535 [00:12:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 536 [00:12:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 537 [00:12:46.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 538 [00:12:47.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 539 [00:12:48.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 540 [00:12:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 541 [00:12:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 542 [00:12:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 543 [00:12:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 544 [00:12:54.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 545 [00:12:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 546 [00:12:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 547 [00:12:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 548 [00:12:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 549 [00:13:00.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 550 [00:13:01.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 551 [00:13:02.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 552 [00:13:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 553 [00:13:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 554 [00:13:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 555 [00:13:08.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 556 [00:13:09.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 557 [00:13:10.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 558 [00:13:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 559 [00:13:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 560 [00:13:15.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 561 [00:13:16.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 562 [00:13:17.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 563 [00:13:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 564 [00:13:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 565 [00:13:20.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 566 [00:13:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 567 [00:13:22.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 568 [00:13:23.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 569 [00:13:24.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 570 [00:13:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 571 [00:13:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 572 [00:13:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 573 [00:13:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 574 [00:13:31.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 575 [00:13:32.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 576 [00:13:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 577 [00:13:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 578 [00:13:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 579 [00:13:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 580 [00:13:39.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 581 [00:13:40.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 582 [00:13:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 583 [00:13:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 584 [00:13:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 585 [00:13:46.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 586 [00:13:47.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 587 [00:13:48.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 588 [00:13:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 589 [00:13:52.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 590 [00:13:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 591 [00:13:54.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 592 [00:13:55.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 593 [00:13:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 594 [00:13:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (3) and running //// [/user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json] { @@ -1910,9 +1909,9 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules/@types: {} -Info 596 [00:13:59.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation -Info 597 [00:14:00.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 598 [00:14:01.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +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:: @@ -1965,19 +1964,19 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules/@types: {} -Info 599 [00:14:02.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 600 [00:14:03.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 601 [00:14:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 602 [00:14:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 603 [00:14:06.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: File location affecting resolution -Info 604 [00:14:07.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: File location affecting resolution -Info 605 [00:14:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 606 [00:14:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 607 [00:14:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 608 [00:14:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 609 [00:14:12.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 610 [00:14:13.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 611 [00:14:14.000] Files (3) +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 +Info 601 [00:14:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 602 [00:14:05.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: File location affecting resolution +Info 603 [00:14:06.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: File location affecting resolution +Info 604 [00:14:07.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 605 [00:14:08.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 606 [00:14:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 607 [00:14:10.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 608 [00:14:11.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 609 [00:14:12.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 610 [00:14:13.000] Files (3) /a/lib/lib.d.ts /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts /user/username/rootfolder/otherfolder/a/b/app.ts @@ -1991,24 +1990,24 @@ Info 611 [00:14:14.000] Files (3) app.ts Matched by default include pattern '**/*' -Info 612 [00:14:15.000] ----------------------------------------------- -Info 613 [00:14:16.000] Running: *ensureProjectForOpenFiles* -Info 614 [00:14:17.000] Before ensureProjectForOpenFiles: -Info 615 [00:14:18.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 615 [00:14:19.000] Files (3) - -Info 615 [00:14:20.000] ----------------------------------------------- -Info 615 [00:14:21.000] Open files: -Info 615 [00:14:22.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined -Info 615 [00:14:23.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 615 [00:14:24.000] After ensureProjectForOpenFiles: -Info 616 [00:14:25.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 616 [00:14:26.000] Files (3) - -Info 616 [00:14:27.000] ----------------------------------------------- -Info 616 [00:14:28.000] Open files: -Info 616 [00:14:29.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined -Info 616 [00:14:30.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 611 [00:14:14.000] ----------------------------------------------- +Info 612 [00:14:15.000] Running: *ensureProjectForOpenFiles* +Info 613 [00:14:16.000] Before ensureProjectForOpenFiles: +Info 614 [00:14:17.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 614 [00:14:18.000] Files (3) + +Info 614 [00:14:19.000] ----------------------------------------------- +Info 614 [00:14:20.000] Open files: +Info 614 [00:14:21.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined +Info 614 [00:14:22.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 614 [00:14:23.000] After ensureProjectForOpenFiles: +Info 615 [00:14:24.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 615 [00:14:25.000] Files (3) + +Info 615 [00:14:26.000] ----------------------------------------------- +Info 615 [00:14:27.000] Open files: +Info 615 [00:14:28.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined +Info 615 [00:14:29.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json After running timeout callbacks PolledWatches:: diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/npm-install-works-when-timeout-occurs-inbetween-installation.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/npm-install-works-when-timeout-occurs-inbetween-installation.js index ced2780dc22d0..8fa6dcb9f000e 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 @@ -64,24 +64,23 @@ Info 5 [00:00:32.000] Config: /user/username/rootfolder/otherfolder/a/b/tscon } Info 6 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Info 7 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:35.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:36.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 10 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 18 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 19 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 20 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 21 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 22 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 23 [00:00:50.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:51.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 25 [00:00:52.000] Files (2) +Info 8 [00:00:35.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 9 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 17 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 18 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 19 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 20 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 21 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 22 [00:00:49.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:50.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 24 [00:00:51.000] Files (2) /a/lib/lib.d.ts /user/username/rootfolder/otherfolder/a/b/app.ts @@ -91,101 +90,101 @@ Info 25 [00:00:52.000] Files (2) app.ts Matched by default include pattern '**/*' -Info 26 [00:00:53.000] ----------------------------------------------- -Info 27 [00:00:54.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 27 [00:00:55.000] Files (2) - -Info 27 [00:00:56.000] ----------------------------------------------- -Info 27 [00:00:57.000] Open files: -Info 27 [00:00:58.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined -Info 27 [00:00:59.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 27 [00:01:02.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 28 [00:01:03.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation -Info 29 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 30 [00:01:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 31 [00:01:06.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 32 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 33 [00:01:08.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:09.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 35 [00:01:10.000] Scheduled: *ensureProjectForOpenFiles* -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 38 [00:01:15.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 39 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 40 [00:01:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 41 [00:01:18.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 42 [00:01:19.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 43 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 44 [00:01:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 45 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 46 [00:01:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 47 [00:01:26.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types -Info 48 [00:01:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 49 [00:01:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 50 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 51 [00:01:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 52 [00:01:33.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa -Info 53 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 54 [00:01:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 55 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 56 [00:01:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 57 [00:01:40.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 -Info 58 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 59 [00:01:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 60 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 61 [00:01:46.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 62 [00:01:47.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff -Info 63 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 64 [00:01:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 65 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 66 [00:01:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 67 [00:01:54.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 -Info 68 [00:01:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 69 [00:01:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [00:01:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 71 [00:02:00.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 72 [00:02:01.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d -Info 73 [00:02:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 74 [00:02:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 75 [00:02:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 76 [00:02:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 77 [00:02:08.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json -Info 78 [00:02:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 79 [00:02:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 80 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [00:02:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 82 [00:02:15.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json -Info 83 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 84 [00:02:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 85 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 86 [00:02:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 87 [00:02:22.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json -Info 88 [00:02:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 89 [00:02:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 90 [00:02:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 91 [00:02:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 92 [00:02:29.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json -Info 93 [00:02:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 94 [00:02:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 95 [00:02:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 96 [00:02:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 97 [00:02:36.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js -Info 98 [00:02:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 99 [00:02:40.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 100 [00:02:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 101 [00:02:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 102 [00:02:43.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts -Info 103 [00:02:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 104 [00:02:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 105 [00:02:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 106 [00:02:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 107 [00:02:50.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib -Info 108 [00:02:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 109 [00:02:54.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 110 [00:02:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 111 [00:02:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 112 [00:02:57.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js -Info 113 [00:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 25 [00:00:52.000] ----------------------------------------------- +Info 26 [00:00:53.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 26 [00:00:54.000] Files (2) + +Info 26 [00:00:55.000] ----------------------------------------------- +Info 26 [00:00:56.000] Open files: +Info 26 [00:00:57.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined +Info 26 [00:00:58.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 26 [00:01:01.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:02.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation +Info 28 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 29 [00:01:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 30 [00:01:05.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 31 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 32 [00:01:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:08.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 34 [00:01:09.000] Scheduled: *ensureProjectForOpenFiles* +Info 35 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 37 [00:01:14.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 38 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 39 [00:01:16.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 40 [00:01:17.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 41 [00:01:18.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 42 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 43 [00:01:22.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 44 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 45 [00:01:24.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 46 [00:01:25.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types +Info 47 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 48 [00:01:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 49 [00:01:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 50 [00:01:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 51 [00:01:32.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa +Info 52 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 53 [00:01:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 54 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 55 [00:01:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 56 [00:01:39.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 +Info 57 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 58 [00:01:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 59 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 60 [00:01:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 61 [00:01:46.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff +Info 62 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 63 [00:01:50.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 64 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:01:52.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 66 [00:01:53.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 +Info 67 [00:01:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 68 [00:01:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 69 [00:01:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 70 [00:01:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 71 [00:02:00.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d +Info 72 [00:02:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 73 [00:02:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 74 [00:02:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 75 [00:02:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 76 [00:02:07.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json +Info 77 [00:02:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 78 [00:02:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 79 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 80 [00:02:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 81 [00:02:14.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json +Info 82 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 83 [00:02:18.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 84 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 85 [00:02:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 86 [00:02:21.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json +Info 87 [00:02:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 88 [00:02:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 89 [00:02:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 90 [00:02:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 91 [00:02:28.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json +Info 92 [00:02:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 93 [00:02:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 94 [00:02:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 95 [00:02:34.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 96 [00:02:35.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js +Info 97 [00:02:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 98 [00:02:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 99 [00:02:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 100 [00:02:41.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 101 [00:02:42.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts +Info 102 [00:02:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 103 [00:02:46.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 104 [00:02:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 105 [00:02:48.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 106 [00:02:49.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib +Info 107 [00:02:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 108 [00:02:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 109 [00:02:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 110 [00:02:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 111 [00:02:56.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js +Info 112 [00:02:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (3) and running //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json] { @@ -558,9 +557,9 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 114 [00:02:59.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation -Info 115 [00:03:00.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 116 [00:03:01.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 113 [00:02:58.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation +Info 114 [00:02:59.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 115 [00:03:00.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one After checking timeout queue length (3) and running PolledWatches:: @@ -613,27 +612,27 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 117 [00:03:02.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 118 [00:03:03.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 119 [00:03:04.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 120 [00:03:05.000] Different program with same set of files -Info 121 [00:03:06.000] Running: *ensureProjectForOpenFiles* -Info 122 [00:03:07.000] Before ensureProjectForOpenFiles: -Info 123 [00:03:08.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 123 [00:03:09.000] Files (2) - -Info 123 [00:03:10.000] ----------------------------------------------- -Info 123 [00:03:11.000] Open files: -Info 123 [00:03:12.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined -Info 123 [00:03:13.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 123 [00:03:14.000] After ensureProjectForOpenFiles: -Info 124 [00:03:15.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 124 [00:03:16.000] Files (2) - -Info 124 [00:03:17.000] ----------------------------------------------- -Info 124 [00:03:18.000] Open files: -Info 124 [00:03:19.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined -Info 124 [00:03:20.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +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 +Info 119 [00:03:04.000] Different program with same set of files +Info 120 [00:03:05.000] Running: *ensureProjectForOpenFiles* +Info 121 [00:03:06.000] Before ensureProjectForOpenFiles: +Info 122 [00:03:07.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 122 [00:03:08.000] Files (2) + +Info 122 [00:03:09.000] ----------------------------------------------- +Info 122 [00:03:10.000] Open files: +Info 122 [00:03:11.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined +Info 122 [00:03:12.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 122 [00:03:13.000] After ensureProjectForOpenFiles: +Info 123 [00:03:14.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 123 [00:03:15.000] Files (2) + +Info 123 [00:03:16.000] ----------------------------------------------- +Info 123 [00:03:17.000] Open files: +Info 123 [00:03:18.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined +Info 123 [00:03:19.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json After running timeout callbacks PolledWatches:: @@ -660,36 +659,36 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 124 [00:03:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 125 [00:03:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 126 [00:03:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 127 [00:03:33.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib -Info 128 [00:03:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 129 [00:03:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 130 [00:03:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 131 [00:03:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 132 [00:03:40.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add -Info 133 [00:03:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 134 [00:03:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 135 [00:03:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 136 [00:03:46.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 137 [00:03:47.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator -Info 138 [00:03:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 139 [00:03:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 140 [00:03:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 141 [00:03:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 142 [00:03:54.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json -Info 143 [00:03:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 144 [00:03:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 145 [00:03:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 146 [00:04:00.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 147 [00:04:01.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js -Info 148 [00:04:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 149 [00:04:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 150 [00:04:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 151 [00:04:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 152 [00:04:08.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 -Info 153 [00:04:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +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 +Info 126 [00:03:32.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib +Info 127 [00:03:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 128 [00:03:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 129 [00:03:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 130 [00:03:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 131 [00:03:39.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add +Info 132 [00:03:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 133 [00:03:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 134 [00:03:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 135 [00:03:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 136 [00:03:46.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator +Info 137 [00:03:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 138 [00:03:50.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 139 [00:03:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 140 [00:03:52.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 141 [00:03:53.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json +Info 142 [00:03:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 143 [00:03:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 144 [00:03:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 145 [00:03:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 146 [00:04:00.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js +Info 147 [00:04:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 148 [00:04:04.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 149 [00:04:05.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 150 [00:04:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 151 [00:04:07.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 +Info 152 [00:04:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (0) and running //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json] { @@ -791,11 +790,11 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 154 [00:04:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 155 [00:04:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 156 [00:04:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 157 [00:04:14.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 -Info 158 [00:04:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +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 +Info 156 [00:04:13.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 +Info 157 [00:04:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (0) and running //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json.3017591594] deleted @@ -849,41 +848,41 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 159 [00:04:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 160 [00:04:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 161 [00:04:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 162 [00:04:39.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles -Info 163 [00:04:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 164 [00:04:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 165 [00:04:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 166 [00:04:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 167 [00:04:46.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator -Info 168 [00:04:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 169 [00:04:52.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 170 [00:04:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 171 [00:04:54.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 172 [00:04:55.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src -Info 173 [00:04:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 174 [00:04:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 175 [00:04:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 176 [00:05:00.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 177 [00:05:01.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add -Info 178 [00:05:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 179 [00:05:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 180 [00:05:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 181 [00:05:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 182 [00:05:07.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable -Info 183 [00:05:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 184 [00:05:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 185 [00:05:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 186 [00:05:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 187 [00:05:14.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom -Info 188 [00:05:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 189 [00:05:18.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 190 [00:05:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 191 [00:05:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 192 [00:05:21.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts -Info 193 [00:05:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +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 +Info 161 [00:04:38.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles +Info 162 [00:04:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 163 [00:04:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 164 [00:04:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 165 [00:04:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 166 [00:04:45.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator +Info 167 [00:04:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 168 [00:04:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 169 [00:04:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 170 [00:04:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 171 [00:04:54.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src +Info 172 [00:04:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 173 [00:04:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 174 [00:04:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 175 [00:04:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 176 [00:05:00.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add +Info 177 [00:05:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 178 [00:05:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 179 [00:05:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 180 [00:05:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 181 [00:05:06.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable +Info 182 [00:05:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 183 [00:05:10.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 184 [00:05:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 185 [00:05:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 186 [00:05:13.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom +Info 187 [00:05:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 188 [00:05:17.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 189 [00:05:18.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 190 [00:05:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 191 [00:05:20.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts +Info 192 [00:05:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (0) and running //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts] @@ -951,31 +950,31 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 194 [00:05:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 195 [00:05:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 196 [00:05:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 197 [00:05:38.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler -Info 198 [00:05:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 199 [00:05:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 200 [00:05:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 201 [00:05:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 202 [00:05:45.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util -Info 203 [00:05:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 204 [00:05:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 205 [00:05:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 206 [00:05:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 207 [00:05:52.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol -Info 208 [00:05:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 209 [00:05:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 210 [00:05:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 211 [00:05:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 212 [00:05:59.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing -Info 213 [00:06:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 214 [00:06:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 215 [00:06:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 216 [00:06:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 217 [00:06:06.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 -Info 218 [00:06:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +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 +Info 196 [00:05:37.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler +Info 197 [00:05:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 198 [00:05:41.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 199 [00:05:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 200 [00:05:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 201 [00:05:44.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util +Info 202 [00:05:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 203 [00:05:48.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 204 [00:05:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 205 [00:05:50.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 206 [00:05:51.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol +Info 207 [00:05:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 208 [00:05:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 209 [00:05:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 210 [00:05:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 211 [00:05:58.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing +Info 212 [00:05:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 213 [00:06:02.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 214 [00:06:03.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 215 [00:06:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 216 [00:06:05.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 +Info 217 [00:06:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (0) and running //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041] { @@ -1259,73 +1258,73 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 219 [00:06:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 220 [00:06:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 221 [00:06:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 222 [00:06:12.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 -Info 223 [00:06:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 224 [00:06:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 225 [00:06:27.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation -Info 226 [00:06:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 227 [00:06:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 228 [00:06:30.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 229 [00:06:31.000] Scheduled: *ensureProjectForOpenFiles* -Info 230 [00:06:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 231 [00:06:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 232 [00:06:36.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 233 [00:06:37.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 234 [00:06:38.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 235 [00:06:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 236 [00:06:40.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 237 [00:06:41.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 238 [00:06:42.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 239 [00:06:43.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 240 [00:06:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 241 [00:06:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 242 [00:06:46.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 243 [00:06:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 244 [00:06:48.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 245 [00:06:49.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 246 [00:06:50.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 247 [00:06:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 248 [00:06:54.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 249 [00:06:55.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 250 [00:06:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 251 [00:06:57.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 252 [00:06:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 253 [00:06:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 254 [00:07:00.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 255 [00:07:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 256 [00:07:02.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 257 [00:07:03.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 258 [00:07:04.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 259 [00:07:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 260 [00:07:08.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 261 [00:07:09.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 262 [00:07:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 263 [00:07:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 264 [00:07:12.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 265 [00:07:13.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 266 [00:07:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 267 [00:07:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 268 [00:07:18.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 269 [00:07:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 270 [00:07:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 271 [00:07:21.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 272 [00:07:22.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 273 [00:07:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 274 [00:07:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 275 [00:07:27.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 276 [00:07:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 277 [00:07:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 278 [00:07:30.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 279 [00:07:31.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 280 [00:07:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 281 [00:07:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 282 [00:07:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 283 [00:07:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 284 [00:07:38.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.bin -Info 285 [00:07:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +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 +Info 221 [00:06:11.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 +Info 222 [00:06:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 223 [00:06:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 224 [00:06:26.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation +Info 225 [00:06:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 226 [00:06:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 227 [00:06:29.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 228 [00:06:30.000] Scheduled: *ensureProjectForOpenFiles* +Info 229 [00:06:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbol-observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 230 [00:06:34.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 231 [00:06:35.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 232 [00:06:36.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 233 [00:06:37.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 234 [00:06:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 235 [00:06:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 236 [00:06:40.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 237 [00:06:41.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 238 [00:06:42.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 239 [00:06:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 240 [00:06:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 241 [00:06:45.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 242 [00:06:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 243 [00:06:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 244 [00:06:48.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 245 [00:06:49.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 246 [00:06:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 247 [00:06:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 248 [00:06:54.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 249 [00:06:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 250 [00:06:56.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 251 [00:06:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 252 [00:06:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 253 [00:06:59.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 254 [00:07:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 255 [00:07:01.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 256 [00:07:02.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 257 [00:07:03.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 258 [00:07:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 259 [00:07:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 260 [00:07:08.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 261 [00:07:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 262 [00:07:10.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 263 [00:07:11.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 264 [00:07:12.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 265 [00:07:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 266 [00:07:16.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 267 [00:07:17.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 268 [00:07:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 269 [00:07:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 270 [00:07:20.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 271 [00:07:21.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 272 [00:07:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 273 [00:07:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 274 [00:07:26.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 275 [00:07:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 276 [00:07:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 277 [00:07:29.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 278 [00:07:30.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 279 [00:07:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 280 [00:07:34.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 281 [00:07:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 282 [00:07:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 283 [00:07:37.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.bin +Info 284 [00:07:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.bin :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (3) and running //// [/user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json.2252192041] deleted @@ -1353,9 +1352,9 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules/@types: {} -Info 286 [00:07:40.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation -Info 287 [00:07:41.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 288 [00:07:42.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 285 [00:07:39.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation +Info 286 [00:07:40.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 287 [00:07:41.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one After checking timeout queue length (3) and running PolledWatches:: @@ -1408,27 +1407,27 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules/@types: {} -Info 289 [00:07:43.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 290 [00:07:44.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 291 [00:07:45.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 292 [00:07:46.000] Different program with same set of files -Info 293 [00:07:47.000] Running: *ensureProjectForOpenFiles* -Info 294 [00:07:48.000] Before ensureProjectForOpenFiles: -Info 295 [00:07:49.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 295 [00:07:50.000] Files (2) - -Info 295 [00:07:51.000] ----------------------------------------------- -Info 295 [00:07:52.000] Open files: -Info 295 [00:07:53.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined -Info 295 [00:07:54.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 295 [00:07:55.000] After ensureProjectForOpenFiles: -Info 296 [00:07:56.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 296 [00:07:57.000] Files (2) - -Info 296 [00:07:58.000] ----------------------------------------------- -Info 296 [00:07:59.000] Open files: -Info 296 [00:08:00.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined -Info 296 [00:08:01.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +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 +Info 291 [00:07:45.000] Different program with same set of files +Info 292 [00:07:46.000] Running: *ensureProjectForOpenFiles* +Info 293 [00:07:47.000] Before ensureProjectForOpenFiles: +Info 294 [00:07:48.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 294 [00:07:49.000] Files (2) + +Info 294 [00:07:50.000] ----------------------------------------------- +Info 294 [00:07:51.000] Open files: +Info 294 [00:07:52.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined +Info 294 [00:07:53.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 294 [00:07:54.000] After ensureProjectForOpenFiles: +Info 295 [00:07:55.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 295 [00:07:56.000] Files (2) + +Info 295 [00:07:57.000] ----------------------------------------------- +Info 295 [00:07:58.000] Open files: +Info 295 [00:07:59.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined +Info 295 [00:08:00.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json After running timeout callbacks PolledWatches:: @@ -1455,326 +1454,326 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules/@types: {} -Info 296 [00:08:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 297 [00:08:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 298 [00:08:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 299 [00:08:06.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts -Info 300 [00:08:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 301 [00:08:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 302 [00:08:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 303 [00:08:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 304 [00:08:12.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json -Info 305 [00:08:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 306 [00:08:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 307 [00:08:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 308 [00:08:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 309 [00:08:18.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 -Info 310 [00:08:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 311 [00:08:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 312 [00:08:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 313 [00:08:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 314 [00:08:24.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types -Info 315 [00:08:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 316 [00:08:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 317 [00:08:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 318 [00:08:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 319 [00:08:30.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js -Info 320 [00:08:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 321 [00:08:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 322 [00:08:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 323 [00:08:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 324 [00:08:36.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json -Info 325 [00:08:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 326 [00:08:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 327 [00:08:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 328 [00:08:41.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 329 [00:08:42.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa -Info 330 [00:08:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 331 [00:08:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 332 [00:08:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 333 [00:08:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 334 [00:08:48.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator -Info 335 [00:08:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 336 [00:08:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 337 [00:08:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 338 [00:08:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 339 [00:08:54.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add -Info 340 [00:08:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 341 [00:08:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 342 [00:08:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 343 [00:08:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 344 [00:09:00.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles -Info 345 [00:09:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 346 [00:09:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 347 [00:09:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 348 [00:09:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 349 [00:09:06.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator -Info 350 [00:09:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 351 [00:09:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 352 [00:09:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 353 [00:09:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 354 [00:09:12.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json -Info 355 [00:09:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 356 [00:09:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 357 [00:09:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 358 [00:09:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 359 [00:09:18.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom -Info 360 [00:09:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 361 [00:09:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 362 [00:09:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 363 [00:09:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 364 [00:09:24.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable -Info 365 [00:09:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 366 [00:09:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 367 [00:09:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 368 [00:09:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 369 [00:09:30.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add -Info 370 [00:09:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 371 [00:09:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 372 [00:09:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 373 [00:09:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 374 [00:09:36.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler -Info 375 [00:09:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 376 [00:09:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 377 [00:09:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 378 [00:09:41.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 379 [00:09:42.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util -Info 380 [00:09:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 381 [00:09:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 382 [00:09:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 383 [00:09:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 384 [00:09:48.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src -Info 385 [00:09:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 386 [00:09:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 387 [00:09:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 388 [00:09:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 389 [00:09:54.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol -Info 390 [00:09:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 391 [00:09:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 392 [00:09:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 393 [00:09:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 394 [00:10:00.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing -Info 395 [00:10:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 396 [00:10:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 397 [00:10:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 398 [00:10:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 399 [00:10:06.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 -Info 400 [00:10:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 401 [00:10:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 402 [00:10:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 403 [00:10:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 404 [00:10:12.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts -Info 405 [00:10:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 406 [00:10:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 407 [00:10:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 408 [00:10:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 409 [00:10:18.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js -Info 410 [00:10:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 411 [00:10:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 412 [00:10:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 413 [00:10:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 414 [00:10:24.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js -Info 415 [00:10:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 416 [00:10:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 417 [00:10:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 418 [00:10:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 419 [00:10:30.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib -Info 420 [00:10:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 421 [00:10:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 422 [00:10:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 423 [00:10:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 424 [00:10:36.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json -Info 425 [00:10:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 426 [00:10:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 427 [00:10:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 428 [00:10:41.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 429 [00:10:42.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff -Info 430 [00:10:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 431 [00:10:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 432 [00:10:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 433 [00:10:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 434 [00:10:48.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib -Info 435 [00:10:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 436 [00:10:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 437 [00:10:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 438 [00:10:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 439 [00:10:54.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json -Info 440 [00:10:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 441 [00:10:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 442 [00:10:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 443 [00:10:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 444 [00:11:00.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d -Info 445 [00:11:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 446 [00:11:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 447 [00:11:04.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation -Info 448 [00:11:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 449 [00:11:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 450 [00:11:07.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 451 [00:11:08.000] Scheduled: *ensureProjectForOpenFiles* -Info 452 [00:11:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 453 [00:11:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 454 [00:11:13.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 455 [00:11:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 456 [00:11:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 457 [00:11:16.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 458 [00:11:17.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 459 [00:11:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 460 [00:11:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 461 [00:11:22.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 462 [00:11:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 463 [00:11:24.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 464 [00:11:25.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json -Info 465 [00:11:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 466 [00:11:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 467 [00:11:30.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 468 [00:11:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 469 [00:11:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 470 [00:11:33.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json -Info 471 [00:11:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 472 [00:11:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 473 [00:11:38.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 474 [00:11:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 475 [00:11:40.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 476 [00:11:41.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json -Info 477 [00:11:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 478 [00:11:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 479 [00:11:46.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 480 [00:11:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 481 [00:11:48.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 482 [00:11:49.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json -Info 483 [00:11:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 484 [00:11:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 485 [00:11:54.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 486 [00:11:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 487 [00:11:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 488 [00:11:57.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js -Info 489 [00:11:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 490 [00:12:01.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 491 [00:12:02.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 492 [00:12:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 493 [00:12:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 494 [00:12:05.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 495 [00:12:06.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 496 [00:12:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 497 [00:12:10.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 498 [00:12:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 499 [00:12:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 500 [00:12:13.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 501 [00:12:14.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 502 [00:12:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 503 [00:12:18.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 504 [00:12:19.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 505 [00:12:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 506 [00:12:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 507 [00:12:22.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js -Info 508 [00:12:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 509 [00:12:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 510 [00:12:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 511 [00:12:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 512 [00:12:29.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 513 [00:12:30.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 514 [00:12:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 515 [00:12:34.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 516 [00:12:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 517 [00:12:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 518 [00:12:37.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 519 [00:12:38.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 520 [00:12:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 521 [00:12:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 522 [00:12:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 523 [00:12:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 524 [00:12:45.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 525 [00:12:46.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 526 [00:12:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 527 [00:12:50.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 528 [00:12:51.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 529 [00:12:52.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 530 [00:12:53.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 531 [00:12:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 532 [00:12:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 533 [00:12:56.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 534 [00:12:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 535 [00:12:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 536 [00:12:59.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json -Info 537 [00:13:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 538 [00:13:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 539 [00:13:04.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 540 [00:13:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 541 [00:13:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 542 [00:13:07.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js -Info 543 [00:13:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 544 [00:13:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 545 [00:13:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 546 [00:13:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 547 [00:13:14.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 548 [00:13:15.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 549 [00:13:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 550 [00:13:19.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 551 [00:13:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 552 [00:13:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 553 [00:13:22.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 554 [00:13:23.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 555 [00:13:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 556 [00:13:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 557 [00:13:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 558 [00:13:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 559 [00:13:32.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 560 [00:13:33.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 561 [00:13:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 562 [00:13:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 563 [00:13:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 564 [00:13:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 565 [00:13:39.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 566 [00:13:40.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 567 [00:13:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 568 [00:13:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 569 [00:13:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 570 [00:13:45.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 571 [00:13:46.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 572 [00:13:47.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 573 [00:13:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 574 [00:13:51.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 575 [00:13:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 576 [00:13:53.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 577 [00:13:54.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 578 [00:13:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 579 [00:13:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 580 [00:13:59.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 581 [00:14:00.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 582 [00:14:01.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 583 [00:14:02.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 584 [00:14:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots -Info 585 [00:14:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 586 [00:14:05.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 587 [00:14:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 588 [00:14:07.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 589 [00:14:08.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 590 [00:14:09.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 591 [00:14:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 592 [00:14:13.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 593 [00:14:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 594 [00:14:15.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 595 [00:14:16.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 596 [00:14:17.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 597 [00:14:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 598 [00:14:21.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 599 [00:14:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 600 [00:14:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 601 [00:14:24.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 602 [00:14:25.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 603 [00:14:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 604 [00:14:29.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 605 [00:14:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 606 [00:14:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 607 [00:14:32.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 608 [00:14:33.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 609 [00:14:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 610 [00:14:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 611 [00:14:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 612 [00:14:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory -Info 613 [00:14:40.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 614 [00:14:41.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 615 [00:14:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +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 +Info 298 [00:08:05.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts +Info 299 [00:08:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 300 [00:08:08.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 301 [00:08:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 302 [00:08:10.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 303 [00:08:11.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json +Info 304 [00:08:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 305 [00:08:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 306 [00:08:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 307 [00:08:16.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 308 [00:08:17.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 +Info 309 [00:08:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types/lodash-e56c4fe7 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 310 [00:08:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 311 [00:08:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 312 [00:08:22.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 313 [00:08:23.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types +Info 314 [00:08:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/@types :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 315 [00:08:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 316 [00:08:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 317 [00:08:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 318 [00:08:29.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js +Info 319 [00:08:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 320 [00:08:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 321 [00:08:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 322 [00:08:34.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 323 [00:08:35.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json +Info 324 [00:08:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 325 [00:08:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 326 [00:08:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 327 [00:08:40.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 328 [00:08:41.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa +Info 329 [00:08:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/lodash-b0733faa :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 330 [00:08:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 331 [00:08:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 332 [00:08:46.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 333 [00:08:47.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator +Info 334 [00:08:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 335 [00:08:50.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 336 [00:08:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 337 [00:08:52.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 338 [00:08:53.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add +Info 339 [00:08:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 340 [00:08:56.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 341 [00:08:57.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 342 [00:08:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 343 [00:08:59.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles +Info 344 [00:09:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 345 [00:09:02.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 346 [00:09:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 347 [00:09:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 348 [00:09:05.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator +Info 349 [00:09:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 350 [00:09:08.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 351 [00:09:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 352 [00:09:10.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 353 [00:09:11.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json +Info 354 [00:09:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 355 [00:09:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 356 [00:09:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 357 [00:09:16.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 358 [00:09:17.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom +Info 359 [00:09:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 360 [00:09:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 361 [00:09:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 362 [00:09:22.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 363 [00:09:23.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable +Info 364 [00:09:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 365 [00:09:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 366 [00:09:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 367 [00:09:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 368 [00:09:29.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add +Info 369 [00:09:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 370 [00:09:32.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 371 [00:09:33.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 372 [00:09: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 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 373 [00:09:35.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler +Info 374 [00:09:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 375 [00:09:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 376 [00:09:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 377 [00:09:40.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 378 [00:09:41.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util +Info 379 [00:09:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 380 [00:09:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 381 [00:09:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 382 [00:09:46.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 383 [00:09:47.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src +Info 384 [00:09:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 385 [00:09:50.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 386 [00:09:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 387 [00:09:52.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 388 [00:09:53.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol +Info 389 [00:09:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 390 [00:09:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 391 [00:09:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 392 [00:09:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 393 [00:09:59.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing +Info 394 [00:10:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 395 [00:10:02.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 396 [00:10:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 397 [00:10:04.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 398 [00:10:05.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 +Info 399 [00:10:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/rxjs-22375c61 :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 400 [00:10:08.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 401 [00:10:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 402 [00:10:10.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 403 [00:10:11.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts +Info 404 [00:10:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 405 [00:10:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 406 [00:10:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 407 [00:10:16.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 408 [00:10:17.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js +Info 409 [00:10:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 410 [00:10:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 411 [00:10:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 412 [00:10:22.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 413 [00:10:23.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js +Info 414 [00:10:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 415 [00:10:26.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 416 [00:10:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 417 [00:10:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 418 [00:10:29.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib +Info 419 [00:10:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 420 [00:10:32.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 421 [00:10:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 422 [00:10:34.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 423 [00:10:35.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json +Info 424 [00:10:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 425 [00:10:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 426 [00:10:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 427 [00:10:40.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 428 [00:10:41.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff +Info 429 [00:10:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/symbol-observable-24bcbbff :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 430 [00:10:44.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 431 [00:10:45.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 432 [00:10:46.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 433 [00:10:47.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib +Info 434 [00:10:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 435 [00:10:50.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 436 [00:10:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 437 [00:10:52.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 438 [00:10:53.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json +Info 439 [00:10:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 440 [00:10:56.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 441 [00:10:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 442 [00:10:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 443 [00:10:59.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected ignored path: /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d +Info 444 [00:11:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging/typescript-8493ea5d :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 445 [00:11:02.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 446 [00:11:03.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation +Info 447 [00:11:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 448 [00:11:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 449 [00:11:06.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 450 [00:11:07.000] Scheduled: *ensureProjectForOpenFiles* +Info 451 [00:11:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/.staging :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 452 [00:11:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 453 [00:11:12.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 454 [00:11:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 455 [00:11:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 456 [00:11:15.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 457 [00:11:16.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 458 [00:11:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 459 [00:11:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 460 [00:11:21.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 461 [00:11:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 462 [00:11:23.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 463 [00:11:24.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json +Info 464 [00:11:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 465 [00:11:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 466 [00:11:29.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 467 [00:11:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 468 [00:11:31.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 469 [00:11:32.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json +Info 470 [00:11:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 471 [00:11:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 472 [00:11:37.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 473 [00:11:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 474 [00:11:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 475 [00:11:40.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json +Info 476 [00:11:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 477 [00:11:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 478 [00:11:45.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 479 [00:11:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 480 [00:11:47.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 481 [00:11:48.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json +Info 482 [00:11:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 483 [00:11:52.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 484 [00:11:53.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 485 [00:11:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 486 [00:11:55.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 487 [00:11:56.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js +Info 488 [00:11:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 489 [00:12:00.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 490 [00:12:01.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 491 [00:12:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 492 [00:12:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 493 [00:12:04.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 494 [00:12:05.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 495 [00:12:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 496 [00:12:09.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 497 [00:12:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 498 [00:12:11.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 499 [00:12:12.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 500 [00:12:13.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 501 [00:12:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 502 [00:12:17.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 503 [00:12:18.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 504 [00:12:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 505 [00:12:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 506 [00:12:21.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js +Info 507 [00:12:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/lib/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 508 [00:12:25.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 509 [00:12:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 510 [00:12:27.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 511 [00:12:28.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 512 [00:12:29.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 513 [00:12:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/typescript/lib :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 514 [00:12:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 515 [00:12:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 516 [00:12:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 517 [00:12:36.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 518 [00:12:37.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 519 [00:12:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 520 [00:12:41.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 521 [00:12:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 522 [00:12:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 523 [00:12:44.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 524 [00:12:45.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 525 [00:12:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/add/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 526 [00:12:49.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 527 [00:12:50.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 528 [00:12:51.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 529 [00:12:52.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 530 [00:12:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 531 [00:12:54.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 532 [00:12:55.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 533 [00:12:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 534 [00:12:57.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 535 [00:12:58.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json +Info 536 [00:12:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 537 [00:13:02.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 538 [00:13:03.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 539 [00:13:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 540 [00:13:05.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 541 [00:13:06.000] Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js +Info 542 [00:13:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/index.js :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 543 [00:13:10.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 544 [00:13:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 545 [00:13:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 546 [00:13:13.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 547 [00:13:14.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 548 [00:13:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/bundles :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 549 [00:13:18.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 550 [00:13:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 551 [00:13:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 552 [00:13:21.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 553 [00:13:22.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 554 [00:13:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/operator :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 555 [00:13:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 556 [00:13:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 557 [00:13:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 558 [00:13:31.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 559 [00:13:32.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 560 [00:13:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 561 [00:13:35.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 562 [00:13:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 563 [00:13:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 564 [00:13:38.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 565 [00:13:39.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 566 [00:13:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 567 [00:13:42.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 568 [00:13:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 569 [00:13:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 570 [00:13:45.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 571 [00:13:46.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 572 [00:13:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 573 [00:13:50.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 574 [00:13:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 575 [00:13:52.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 576 [00:13:53.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 577 [00:13:54.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 578 [00:13:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/add/observable/dom :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 579 [00:13:58.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 580 [00:13:59.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 581 [00:14:00.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 582 [00:14:01.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 583 [00:14:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Type roots +Info 584 [00:14:03.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 585 [00:14:04.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 586 [00:14:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 587 [00:14:06.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 588 [00:14:07.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 589 [00:14:08.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 590 [00:14:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 591 [00:14:12.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 592 [00:14:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 593 [00:14:14.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 594 [00:14:15.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 595 [00:14:16.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 596 [00:14:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/scheduler :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 597 [00:14:20.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 598 [00:14:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 599 [00:14:22.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 600 [00:14:23.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 601 [00:14:24.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 602 [00:14:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/src/util :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 603 [00:14:28.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 604 [00:14:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 605 [00:14:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 606 [00:14:31.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 607 [00:14:32.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 608 [00:14:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/symbol :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 609 [00:14:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 610 [00:14:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 611 [00:14:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory +Info 612 [00:14:39.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one +Info 613 [00:14:40.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 614 [00:14:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/rxjs/testing :: WatchInfo: /user/username/rootfolder/otherfolder/a/b 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (3) and running //// [/user/username/rootfolder/otherfolder/a/b/node_modules/symbolle/package.json] { @@ -2218,9 +2217,9 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules/@types: {} -Info 616 [00:14:43.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.jsonFailedLookupInvalidation -Info 617 [00:14:44.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/tsconfig.json, Cancelled earlier one -Info 618 [00:14:45.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +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:: @@ -2273,19 +2272,19 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules/@types: {} -Info 619 [00:14:46.000] Running: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 620 [00:14:47.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 621 [00:14:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 622 [00:14:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 623 [00:14:50.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: File location affecting resolution -Info 624 [00:14:51.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: File location affecting resolution -Info 625 [00:14:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 626 [00:14:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 627 [00:14:54.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 628 [00:14:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 629 [00:14:56.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 630 [00:14:57.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 631 [00:14:58.000] Files (3) +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 +Info 621 [00:14:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 622 [00:14:49.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: File location affecting resolution +Info 623 [00:14:50.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/package.json 2000 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: File location affecting resolution +Info 624 [00:14:51.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 625 [00:14:52.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 626 [00:14:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 627 [00:14:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 628 [00:14:55.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/tsconfig.json Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 629 [00:14:56.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 630 [00:14:57.000] Files (3) /a/lib/lib.d.ts /user/username/rootfolder/otherfolder/a/b/node_modules/@types/lodash/index.d.ts /user/username/rootfolder/otherfolder/a/b/app.ts @@ -2299,24 +2298,24 @@ Info 631 [00:14:58.000] Files (3) app.ts Matched by default include pattern '**/*' -Info 632 [00:14:59.000] ----------------------------------------------- -Info 633 [00:15:00.000] Running: *ensureProjectForOpenFiles* -Info 634 [00:15:01.000] Before ensureProjectForOpenFiles: -Info 635 [00:15:02.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 635 [00:15:03.000] Files (3) - -Info 635 [00:15:04.000] ----------------------------------------------- -Info 635 [00:15:05.000] Open files: -Info 635 [00:15:06.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined -Info 635 [00:15:07.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json -Info 635 [00:15:08.000] After ensureProjectForOpenFiles: -Info 636 [00:15:09.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) -Info 636 [00:15:10.000] Files (3) - -Info 636 [00:15:11.000] ----------------------------------------------- -Info 636 [00:15:12.000] Open files: -Info 636 [00:15:13.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined -Info 636 [00:15:14.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 631 [00:14:58.000] ----------------------------------------------- +Info 632 [00:14:59.000] Running: *ensureProjectForOpenFiles* +Info 633 [00:15:00.000] Before ensureProjectForOpenFiles: +Info 634 [00:15:01.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 634 [00:15:02.000] Files (3) + +Info 634 [00:15:03.000] ----------------------------------------------- +Info 634 [00:15:04.000] Open files: +Info 634 [00:15:05.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined +Info 634 [00:15:06.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json +Info 634 [00:15:07.000] After ensureProjectForOpenFiles: +Info 635 [00:15:08.000] Project '/user/username/rootfolder/otherfolder/a/b/tsconfig.json' (Configured) +Info 635 [00:15:09.000] Files (3) + +Info 635 [00:15:10.000] ----------------------------------------------- +Info 635 [00:15:11.000] Open files: +Info 635 [00:15:12.000] FileName: /user/username/rootfolder/otherfolder/a/b/app.ts ProjectRootPath: undefined +Info 635 [00:15:13.000] Projects: /user/username/rootfolder/otherfolder/a/b/tsconfig.json After running timeout callbacks PolledWatches:: diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/watchDirectories-for-config-file-with-case-insensitive-file-system.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/watchDirectories-for-config-file-with-case-insensitive-file-system.js index 8debb4cdcab0c..802443c20a962 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 @@ -70,19 +70,18 @@ Info 5 [00:00:38.000] Config: /Users/someuser/work/applications/frontend/tsco } Info 6 [00:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory Info 7 [00:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts 500 undefined WatchType: Closed Script info -Info 10 [00:00:43.000] Starting updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json -Info 11 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/types 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/types 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [00:00:51.000] Finishing updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [00:00:52.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 20 [00:00:53.000] Files (3) +Info 8 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts 500 undefined WatchType: Closed Script info +Info 9 [00:00:42.000] Starting updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json +Info 10 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/types 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/types 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:50.000] Finishing updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 18 [00:00:51.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 19 [00:00:52.000] Files (3) /a/lib/lib.es2016.full.d.ts /Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts @@ -95,18 +94,18 @@ Info 20 [00:00:53.000] Files (3) src/app/utils/Analytic.ts Matched by include pattern 'src/**/*' in 'tsconfig.json' -Info 21 [00:00:54.000] ----------------------------------------------- -Info 22 [00:00:55.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 22 [00:00:56.000] Files (3) - -Info 22 [00:00:57.000] ----------------------------------------------- -Info 22 [00:00:58.000] Open files: -Info 22 [00:00:59.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined -Info 22 [00:01:00.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json -Info 22 [00:01:03.000] DirectoryWatcher:: Triggered with /users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: WatchInfo: /users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory -Info 23 [00:01:04.000] Scheduled: /Users/someuser/work/applications/frontend/tsconfig.json -Info 24 [00:01:05.000] Scheduled: *ensureProjectForOpenFiles* -Info 25 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: WatchInfo: /users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory +Info 20 [00:00:53.000] ----------------------------------------------- +Info 21 [00:00:54.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 21 [00:00:55.000] Files (3) + +Info 21 [00:00:56.000] ----------------------------------------------- +Info 21 [00:00:57.000] Open files: +Info 21 [00:00:58.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined +Info 21 [00:00:59.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json +Info 21 [00:01:02.000] DirectoryWatcher:: Triggered with /users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: WatchInfo: /users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory +Info 22 [00:01:03.000] Scheduled: /Users/someuser/work/applications/frontend/tsconfig.json +Info 23 [00:01:04.000] Scheduled: *ensureProjectForOpenFiles* +Info 24 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: WatchInfo: /users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory Before running timeout callbacks //// [/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts] export class Cookie { } @@ -132,12 +131,12 @@ FsWatchesRecursive:: /users/someuser/work/applications/frontend/src: {} -Info 26 [00:01:07.000] Running: /Users/someuser/work/applications/frontend/tsconfig.json -Info 27 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts 500 undefined WatchType: Closed Script info -Info 28 [00:01:09.000] Starting updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json -Info 29 [00:01:10.000] Finishing updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 30 [00:01:11.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 31 [00:01:12.000] Files (4) +Info 25 [00:01:06.000] Running: /Users/someuser/work/applications/frontend/tsconfig.json +Info 26 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts 500 undefined WatchType: Closed Script info +Info 27 [00:01:08.000] Starting updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json +Info 28 [00:01:09.000] Finishing updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 29 [00:01:10.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 30 [00:01:11.000] Files (4) /a/lib/lib.es2016.full.d.ts /Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts @@ -153,24 +152,24 @@ Info 31 [00:01:12.000] Files (4) src/app/utils/Cookie.ts Matched by include pattern 'src/**/*' in 'tsconfig.json' -Info 32 [00:01:13.000] ----------------------------------------------- -Info 33 [00:01:14.000] Running: *ensureProjectForOpenFiles* -Info 34 [00:01:15.000] Before ensureProjectForOpenFiles: -Info 35 [00:01:16.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 35 [00:01:17.000] Files (4) - -Info 35 [00:01:18.000] ----------------------------------------------- -Info 35 [00:01:19.000] Open files: -Info 35 [00:01:20.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined -Info 35 [00:01:21.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json -Info 35 [00:01:22.000] After ensureProjectForOpenFiles: -Info 36 [00:01:23.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 36 [00:01:24.000] Files (4) - -Info 36 [00:01:25.000] ----------------------------------------------- -Info 36 [00:01:26.000] Open files: -Info 36 [00:01:27.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined -Info 36 [00:01:28.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json +Info 31 [00:01:12.000] ----------------------------------------------- +Info 32 [00:01:13.000] Running: *ensureProjectForOpenFiles* +Info 33 [00:01:14.000] Before ensureProjectForOpenFiles: +Info 34 [00:01:15.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 34 [00:01:16.000] Files (4) + +Info 34 [00:01:17.000] ----------------------------------------------- +Info 34 [00:01:18.000] Open files: +Info 34 [00:01:19.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined +Info 34 [00:01:20.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json +Info 34 [00:01:21.000] After ensureProjectForOpenFiles: +Info 35 [00:01:22.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 35 [00:01:23.000] Files (4) + +Info 35 [00:01:24.000] ----------------------------------------------- +Info 35 [00:01:25.000] Open files: +Info 35 [00:01:26.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined +Info 35 [00:01:27.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json After running timeout callbacks PolledWatches:: @@ -195,25 +194,25 @@ FsWatchesRecursive:: /users/someuser/work/applications/frontend/src: {} -Info 36 [00:01:29.000] fileExists:: [{"key":"/users/someuser/work/applications/frontend/src/app/utils/cookie.ts","count":1},{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":1}] -Info 37 [00:01:30.000] directoryExists:: [{"key":"/users/someuser/work/applications/frontend/src/app/utils/cookie.ts","count":1}] -Info 38 [00:01:31.000] getDirectories:: [] -Info 39 [00:01:32.000] readFile:: [{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":1}] -Info 40 [00:01:33.000] readDirectory:: [] -Info 41 [00:01:34.000] FileWatcher:: Close:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts 500 undefined WatchType: Closed Script info -Info 42 [00:01:35.000] Search path: /Users/someuser/work/applications/frontend/src/app/utils -Info 43 [00:01:36.000] For info: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: Config file name: /Users/someuser/work/applications/frontend/tsconfig.json -Info 44 [00:01:37.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 44 [00:01:38.000] Files (4) - -Info 44 [00:01:39.000] ----------------------------------------------- -Info 44 [00:01:40.000] Open files: -Info 44 [00:01:41.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined -Info 44 [00:01:42.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json -Info 44 [00:01:43.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts ProjectRootPath: undefined -Info 44 [00:01:44.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json -Info 44 [00:01:45.000] fileExists:: [] -Info 45 [00:01:46.000] directoryExists:: [] -Info 46 [00:01:47.000] getDirectories:: [] -Info 47 [00:01:48.000] readFile:: [] -Info 48 [00:01:49.000] readDirectory:: [] \ No newline at end of file +Info 35 [00:01:28.000] fileExists:: [{"key":"/users/someuser/work/applications/frontend/src/app/utils/cookie.ts","count":1},{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":1}] +Info 36 [00:01:29.000] directoryExists:: [{"key":"/users/someuser/work/applications/frontend/src/app/utils/cookie.ts","count":1}] +Info 37 [00:01:30.000] getDirectories:: [] +Info 38 [00:01:31.000] readFile:: [{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":1}] +Info 39 [00:01:32.000] readDirectory:: [] +Info 40 [00:01:33.000] FileWatcher:: Close:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts 500 undefined WatchType: Closed Script info +Info 41 [00:01:34.000] Search path: /Users/someuser/work/applications/frontend/src/app/utils +Info 42 [00:01:35.000] For info: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: Config file name: /Users/someuser/work/applications/frontend/tsconfig.json +Info 43 [00:01:36.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 43 [00:01:37.000] Files (4) + +Info 43 [00:01:38.000] ----------------------------------------------- +Info 43 [00:01:39.000] Open files: +Info 43 [00:01:40.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined +Info 43 [00:01:41.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json +Info 43 [00:01:42.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts ProjectRootPath: undefined +Info 43 [00:01:43.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json +Info 43 [00:01:44.000] fileExists:: [] +Info 44 [00:01:45.000] directoryExists:: [] +Info 45 [00:01:46.000] getDirectories:: [] +Info 46 [00:01:47.000] readFile:: [] +Info 47 [00:01:48.000] readDirectory:: [] \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/watchDirectories-for-config-file-with-case-sensitive-file-system.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/watchDirectories-for-config-file-with-case-sensitive-file-system.js index b957851482f24..60c410090a674 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 @@ -70,19 +70,18 @@ Info 5 [00:00:38.000] Config: /Users/someuser/work/applications/frontend/tsco } Info 6 [00:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory Info 7 [00:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts 500 undefined WatchType: Closed Script info -Info 10 [00:00:43.000] Starting updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json -Info 11 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/types 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/types 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [00:00:51.000] Finishing updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [00:00:52.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 20 [00:00:53.000] Files (3) +Info 8 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts 500 undefined WatchType: Closed Script info +Info 9 [00:00:42.000] Starting updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json +Info 10 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/types 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/types 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/node_modules 1 undefined Project: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:50.000] Finishing updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 18 [00:00:51.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 19 [00:00:52.000] Files (3) /a/lib/lib.es2016.full.d.ts /Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts @@ -95,18 +94,18 @@ Info 20 [00:00:53.000] Files (3) src/app/utils/Analytic.ts Matched by include pattern 'src/**/*' in 'tsconfig.json' -Info 21 [00:00:54.000] ----------------------------------------------- -Info 22 [00:00:55.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 22 [00:00:56.000] Files (3) - -Info 22 [00:00:57.000] ----------------------------------------------- -Info 22 [00:00:58.000] Open files: -Info 22 [00:00:59.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined -Info 22 [00:01:00.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json -Info 22 [00:01:03.000] DirectoryWatcher:: Triggered with /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: WatchInfo: /Users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory -Info 23 [00:01:04.000] Scheduled: /Users/someuser/work/applications/frontend/tsconfig.json -Info 24 [00:01:05.000] Scheduled: *ensureProjectForOpenFiles* -Info 25 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: WatchInfo: /Users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory +Info 20 [00:00:53.000] ----------------------------------------------- +Info 21 [00:00:54.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 21 [00:00:55.000] Files (3) + +Info 21 [00:00:56.000] ----------------------------------------------- +Info 21 [00:00:57.000] Open files: +Info 21 [00:00:58.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined +Info 21 [00:00:59.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json +Info 21 [00:01:02.000] DirectoryWatcher:: Triggered with /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: WatchInfo: /Users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory +Info 22 [00:01:03.000] Scheduled: /Users/someuser/work/applications/frontend/tsconfig.json +Info 23 [00:01:04.000] Scheduled: *ensureProjectForOpenFiles* +Info 24 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: WatchInfo: /Users/someuser/work/applications/frontend/src 1 undefined Config: /Users/someuser/work/applications/frontend/tsconfig.json WatchType: Wild card directory Before running timeout callbacks //// [/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts] export class Cookie { } @@ -132,12 +131,12 @@ FsWatchesRecursive:: /Users/someuser/work/applications/frontend/src: {} -Info 26 [00:01:07.000] Running: /Users/someuser/work/applications/frontend/tsconfig.json -Info 27 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts 500 undefined WatchType: Closed Script info -Info 28 [00:01:09.000] Starting updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json -Info 29 [00:01:10.000] Finishing updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 30 [00:01:11.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 31 [00:01:12.000] Files (4) +Info 25 [00:01:06.000] Running: /Users/someuser/work/applications/frontend/tsconfig.json +Info 26 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts 500 undefined WatchType: Closed Script info +Info 27 [00:01:08.000] Starting updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json +Info 28 [00:01:09.000] Finishing updateGraphWorker: Project: /Users/someuser/work/applications/frontend/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 29 [00:01:10.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 30 [00:01:11.000] Files (4) /a/lib/lib.es2016.full.d.ts /Users/someuser/work/applications/frontend/src/app/redux/configureStore.ts /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts @@ -153,24 +152,24 @@ Info 31 [00:01:12.000] Files (4) src/app/utils/Cookie.ts Matched by include pattern 'src/**/*' in 'tsconfig.json' -Info 32 [00:01:13.000] ----------------------------------------------- -Info 33 [00:01:14.000] Running: *ensureProjectForOpenFiles* -Info 34 [00:01:15.000] Before ensureProjectForOpenFiles: -Info 35 [00:01:16.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 35 [00:01:17.000] Files (4) - -Info 35 [00:01:18.000] ----------------------------------------------- -Info 35 [00:01:19.000] Open files: -Info 35 [00:01:20.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined -Info 35 [00:01:21.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json -Info 35 [00:01:22.000] After ensureProjectForOpenFiles: -Info 36 [00:01:23.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 36 [00:01:24.000] Files (4) - -Info 36 [00:01:25.000] ----------------------------------------------- -Info 36 [00:01:26.000] Open files: -Info 36 [00:01:27.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined -Info 36 [00:01:28.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json +Info 31 [00:01:12.000] ----------------------------------------------- +Info 32 [00:01:13.000] Running: *ensureProjectForOpenFiles* +Info 33 [00:01:14.000] Before ensureProjectForOpenFiles: +Info 34 [00:01:15.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 34 [00:01:16.000] Files (4) + +Info 34 [00:01:17.000] ----------------------------------------------- +Info 34 [00:01:18.000] Open files: +Info 34 [00:01:19.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined +Info 34 [00:01:20.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json +Info 34 [00:01:21.000] After ensureProjectForOpenFiles: +Info 35 [00:01:22.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 35 [00:01:23.000] Files (4) + +Info 35 [00:01:24.000] ----------------------------------------------- +Info 35 [00:01:25.000] Open files: +Info 35 [00:01:26.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined +Info 35 [00:01:27.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json After running timeout callbacks PolledWatches:: @@ -195,25 +194,25 @@ FsWatchesRecursive:: /Users/someuser/work/applications/frontend/src: {} -Info 36 [00:01:29.000] fileExists:: [{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":2}] -Info 37 [00:01:30.000] directoryExists:: [{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":1}] -Info 38 [00:01:31.000] getDirectories:: [] -Info 39 [00:01:32.000] readFile:: [{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":1}] -Info 40 [00:01:33.000] readDirectory:: [] -Info 41 [00:01:34.000] FileWatcher:: Close:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts 500 undefined WatchType: Closed Script info -Info 42 [00:01:35.000] Search path: /Users/someuser/work/applications/frontend/src/app/utils -Info 43 [00:01:36.000] For info: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: Config file name: /Users/someuser/work/applications/frontend/tsconfig.json -Info 44 [00:01:37.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) -Info 44 [00:01:38.000] Files (4) - -Info 44 [00:01:39.000] ----------------------------------------------- -Info 44 [00:01:40.000] Open files: -Info 44 [00:01:41.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined -Info 44 [00:01:42.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json -Info 44 [00:01:43.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts ProjectRootPath: undefined -Info 44 [00:01:44.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json -Info 44 [00:01:45.000] fileExists:: [] -Info 45 [00:01:46.000] directoryExists:: [] -Info 46 [00:01:47.000] getDirectories:: [] -Info 47 [00:01:48.000] readFile:: [] -Info 48 [00:01:49.000] readDirectory:: [] \ No newline at end of file +Info 35 [00:01:28.000] fileExists:: [{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":2}] +Info 36 [00:01:29.000] directoryExists:: [{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":1}] +Info 37 [00:01:30.000] getDirectories:: [] +Info 38 [00:01:31.000] readFile:: [{"key":"/Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts","count":1}] +Info 39 [00:01:32.000] readDirectory:: [] +Info 40 [00:01:33.000] FileWatcher:: Close:: WatchInfo: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts 500 undefined WatchType: Closed Script info +Info 41 [00:01:34.000] Search path: /Users/someuser/work/applications/frontend/src/app/utils +Info 42 [00:01:35.000] For info: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts :: Config file name: /Users/someuser/work/applications/frontend/tsconfig.json +Info 43 [00:01:36.000] Project '/Users/someuser/work/applications/frontend/tsconfig.json' (Configured) +Info 43 [00:01:37.000] Files (4) + +Info 43 [00:01:38.000] ----------------------------------------------- +Info 43 [00:01:39.000] Open files: +Info 43 [00:01:40.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Analytic.ts ProjectRootPath: undefined +Info 43 [00:01:41.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json +Info 43 [00:01:42.000] FileName: /Users/someuser/work/applications/frontend/src/app/utils/Cookie.ts ProjectRootPath: undefined +Info 43 [00:01:43.000] Projects: /Users/someuser/work/applications/frontend/tsconfig.json +Info 43 [00:01:44.000] fileExists:: [] +Info 44 [00:01:45.000] directoryExists:: [] +Info 45 [00:01:46.000] getDirectories:: [] +Info 46 [00:01:47.000] readFile:: [] +Info 47 [00:01:48.000] readDirectory:: [] \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-calling-goto-definition-of-module.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/when-calling-goto-definition-of-module.js index ab35046a09e45..6c2e0c13542e9 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 @@ -59,16 +59,15 @@ Info 6 [00:00:29.000] Config: /a/b/tsconfig.json : { } Info 7 [00:00:30.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory Info 8 [00:00:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/b/models/vessel.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /a/b/utils/db.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:35.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 13 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es6.d.ts 500 undefined Project: /a/b/tsconfig.json WatchType: Missing file -Info 14 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 15 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 16 [00:00:39.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:00:40.000] Project '/a/b/tsconfig.json' (Configured) -Info 18 [00:00:41.000] Files (3) +Info 9 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /a/b/models/vessel.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/b/utils/db.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:34.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 12 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es6.d.ts 500 undefined Project: /a/b/tsconfig.json WatchType: Missing file +Info 13 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 14 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 15 [00:00:38.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:39.000] Project '/a/b/tsconfig.json' (Configured) +Info 17 [00:00:40.000] Files (3) /a/b/utils/db.ts /a/b/models/vessel.ts /a/b/controllers/vessels/client.ts @@ -83,14 +82,14 @@ Info 18 [00:00:41.000] Files (3) controllers/vessels/client.ts Matched by default include pattern '**/*' -Info 19 [00:00:42.000] ----------------------------------------------- -Info 20 [00:00:43.000] Project '/a/b/tsconfig.json' (Configured) -Info 20 [00:00:44.000] Files (3) +Info 18 [00:00:41.000] ----------------------------------------------- +Info 19 [00:00:42.000] Project '/a/b/tsconfig.json' (Configured) +Info 19 [00:00:43.000] Files (3) -Info 20 [00:00:45.000] ----------------------------------------------- -Info 20 [00:00:46.000] Open files: -Info 20 [00:00:47.000] FileName: /a/b/controllers/vessels/client.ts ProjectRootPath: undefined -Info 20 [00:00:48.000] Projects: /a/b/tsconfig.json +Info 19 [00:00:44.000] ----------------------------------------------- +Info 19 [00:00:45.000] Open files: +Info 19 [00:00:46.000] FileName: /a/b/controllers/vessels/client.ts ProjectRootPath: undefined +Info 19 [00:00:47.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -111,11 +110,11 @@ FsWatchesRecursive:: /a/b: {} -Info 20 [00:00:49.000] response: +Info 19 [00:00:48.000] response: { "responseRequired": false } -Info 21 [00:00:50.000] request: +Info 20 [00:00:49.000] request: { "seq": 0, "type": "request", @@ -165,7 +164,7 @@ FsWatchesRecursive:: /a/b: {} -Info 22 [00:00:51.000] response: +Info 21 [00:00:50.000] response: { "response": [ { @@ -182,12 +181,12 @@ Info 22 [00:00:51.000] response: ], "responseRequired": true } -Info 23 [00:00:52.000] fileExists:: [] -Info 24 [00:00:53.000] directoryExists:: [] -Info 25 [00:00:54.000] getDirectories:: [] -Info 26 [00:00:55.000] readFile:: [] -Info 27 [00:00:56.000] readDirectory:: [] -Info 28 [00:00:57.000] request: +Info 22 [00:00:51.000] fileExists:: [] +Info 23 [00:00:52.000] directoryExists:: [] +Info 24 [00:00:53.000] getDirectories:: [] +Info 25 [00:00:54.000] readFile:: [] +Info 26 [00:00:55.000] readDirectory:: [] +Info 27 [00:00:56.000] request: { "seq": 0, "type": "request", @@ -216,18 +215,18 @@ FsWatchesRecursive:: /a/b: {} -Info 29 [00:00:58.000] FileWatcher:: Close:: WatchInfo: /a/b/models/vessel.ts 500 undefined WatchType: Closed Script info -Info 30 [00:00:59.000] Search path: /a/b/models -Info 31 [00:01:00.000] For info: /a/b/models/vessel.ts :: Config file name: /a/b/tsconfig.json -Info 32 [00:01:01.000] Project '/a/b/tsconfig.json' (Configured) -Info 32 [00:01:02.000] Files (3) +Info 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 +Info 31 [00:01:00.000] Project '/a/b/tsconfig.json' (Configured) +Info 31 [00:01:01.000] Files (3) -Info 32 [00:01:03.000] ----------------------------------------------- -Info 32 [00:01:04.000] Open files: -Info 32 [00:01:05.000] FileName: /a/b/controllers/vessels/client.ts ProjectRootPath: undefined -Info 32 [00:01:06.000] Projects: /a/b/tsconfig.json -Info 32 [00:01:07.000] FileName: /a/b/models/vessel.ts ProjectRootPath: undefined -Info 32 [00:01:08.000] Projects: /a/b/tsconfig.json +Info 31 [00:01:02.000] ----------------------------------------------- +Info 31 [00:01:03.000] Open files: +Info 31 [00:01:04.000] FileName: /a/b/controllers/vessels/client.ts ProjectRootPath: undefined +Info 31 [00:01:05.000] Projects: /a/b/tsconfig.json +Info 31 [00:01:06.000] FileName: /a/b/models/vessel.ts ProjectRootPath: undefined +Info 31 [00:01:07.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -246,12 +245,12 @@ FsWatchesRecursive:: /a/b: {} -Info 32 [00:01:09.000] response: +Info 31 [00:01:08.000] response: { "responseRequired": false } -Info 33 [00:01:10.000] fileExists:: [{"key":"/a/b/models/tsconfig.json","count":1},{"key":"/a/b/models/jsconfig.json","count":1}] -Info 34 [00:01:11.000] directoryExists:: [] -Info 35 [00:01:12.000] getDirectories:: [] -Info 36 [00:01:13.000] readFile:: [] -Info 37 [00:01:14.000] readDirectory:: [] \ No newline at end of file +Info 32 [00:01:09.000] fileExists:: [{"key":"/a/b/models/tsconfig.json","count":1},{"key":"/a/b/models/jsconfig.json","count":1}] +Info 33 [00:01:10.000] directoryExists:: [] +Info 34 [00:01:11.000] getDirectories:: [] +Info 35 [00:01:12.000] readFile:: [] +Info 36 [00:01:13.000] readDirectory:: [] \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/cachingFileSystemInformation/works-using-legacy-resolution-logic.js b/tests/baselines/reference/tsserver/cachingFileSystemInformation/works-using-legacy-resolution-logic.js index 3f77a34d4d634..b48d6b9859d5d 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 @@ -15,16 +15,15 @@ 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] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 4 [00:00:15.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 5 [00:00:16.000] FileWatcher:: Added:: WatchInfo: /c/f1.ts 500 undefined WatchType: Closed Script info -Info 6 [00:00:17.000] DirectoryWatcher:: Added:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 7 [00:00:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 8 [00:00:19.000] DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 9 [00:00:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 10 [00:00:21.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 11 [00:00:22.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 12 [00:00:23.000] Files (2) +Info 3 [00:00:14.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 4 [00:00:15.000] FileWatcher:: Added:: WatchInfo: /c/f1.ts 500 undefined WatchType: Closed Script info +Info 5 [00:00:16.000] DirectoryWatcher:: Added:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 6 [00:00:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 7 [00:00:18.000] DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 8 [00:00:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 9 [00:00:20.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 10 [00:00:21.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 11 [00:00:22.000] Files (2) /c/f1.ts /c/d/f0.ts @@ -34,53 +33,53 @@ Info 12 [00:00:23.000] Files (2) f0.ts Root file specified for compilation -Info 13 [00:00:24.000] ----------------------------------------------- -Info 14 [00:00:25.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 14 [00:00:26.000] Files (2) +Info 12 [00:00:23.000] ----------------------------------------------- +Info 13 [00:00:24.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 13 [00:00:25.000] Files (2) -Info 14 [00:00:27.000] ----------------------------------------------- -Info 14 [00:00:28.000] Open files: -Info 14 [00:00:29.000] FileName: /c/d/f0.ts ProjectRootPath: undefined -Info 14 [00:00:30.000] Projects: /dev/null/inferredProject1* -Info 14 [00:00:31.000] getSemanticDiagnostics:: /c/f1.ts:: 1 -Info 15 [00:00:32.000] ../f1.ts(1,1): error TS2304: Cannot find name 'foo'. +Info 13 [00:00:26.000] ----------------------------------------------- +Info 13 [00:00:27.000] Open files: +Info 13 [00:00:28.000] FileName: /c/d/f0.ts ProjectRootPath: undefined +Info 13 [00:00:29.000] Projects: /dev/null/inferredProject1* +Info 13 [00:00:30.000] getSemanticDiagnostics:: /c/f1.ts:: 1 +Info 14 [00:00:31.000] ../f1.ts(1,1): error TS2304: Cannot find name 'foo'. -Info 16 [00:00:33.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 17 [00:00:34.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 18 [00:00:35.000] Different program with same set of files -Info 19 [00:00:36.000] getSemanticDiagnostics:: /c/f1.ts:: 1 -Info 20 [00:00:37.000] ../f1.ts(1,1): error TS2304: Cannot find name 'foo'. +Info 15 [00:00:32.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 16 [00:00:33.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 17 [00:00:34.000] Different program with same set of files +Info 18 [00:00:35.000] getSemanticDiagnostics:: /c/f1.ts:: 1 +Info 19 [00:00:36.000] ../f1.ts(1,1): error TS2304: Cannot find name 'foo'. -Info 21 [00:00:38.000] fileExists:: [] -Info 22 [00:00:39.000] directoryExists:: [] -Info 23 [00:00:40.000] getDirectories:: [] -Info 24 [00:00:41.000] readFile:: [] -Info 25 [00:00:42.000] readDirectory:: [] -Info 26 [00:00:43.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 27 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 28 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 29 [00:00:46.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 30 [00:00:47.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 31 [00:00:48.000] Files (1) +Info 20 [00:00:37.000] fileExists:: [] +Info 21 [00:00:38.000] directoryExists:: [] +Info 22 [00:00:39.000] getDirectories:: [] +Info 23 [00:00:40.000] readFile:: [] +Info 24 [00:00:41.000] readDirectory:: [] +Info 25 [00:00:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 26 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 27 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 28 [00:00:45.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 29 [00:00:46.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 30 [00:00:47.000] Files (1) /c/d/f0.ts f0.ts Root file specified for compilation -Info 32 [00:00:49.000] ----------------------------------------------- -Info 33 [00:00:50.000] Could not find source file: '/c/f1.ts'. -Info 34 [00:00:51.000] fileExists:: [{"key":"/c/d/f2.ts","count":1},{"key":"/c/d/f2.tsx","count":1},{"key":"/c/d/f2.d.ts","count":1},{"key":"/c/f2.ts","count":1},{"key":"/c/f2.tsx","count":1},{"key":"/c/f2.d.ts","count":1},{"key":"/f2.ts","count":1},{"key":"/f2.tsx","count":1},{"key":"/f2.d.ts","count":1},{"key":"/c/d/f2.js","count":1},{"key":"/c/d/f2.jsx","count":1},{"key":"/c/f2.js","count":1},{"key":"/c/f2.jsx","count":1},{"key":"/f2.js","count":1},{"key":"/f2.jsx","count":1}] -Info 35 [00:00:52.000] directoryExists:: [{"key":"/c/d","count":2},{"key":"/c","count":2},{"key":"/","count":2},{"key":"/c/d/node_modules","count":2},{"key":"/c/node_modules","count":1},{"key":"/node_modules","count":1},{"key":"/c/d/node_modules/@types","count":1},{"key":"/c/node_modules/@types","count":1},{"key":"/node_modules/@types","count":1}] -Info 36 [00:00:53.000] getDirectories:: [] -Info 37 [00:00:54.000] readFile:: [] -Info 38 [00:00:55.000] readDirectory:: [] -Info 39 [00:00:56.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 40 [00:00:57.000] DirectoryWatcher:: Close:: WatchInfo: /c/d/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 41 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /c/d/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 42 [00:00:59.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 43 [00:01:00.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 44 [00:01:01.000] Files (2) +Info 31 [00:00:48.000] ----------------------------------------------- +Info 32 [00:00:49.000] Could not find source file: '/c/f1.ts'. +Info 33 [00:00:50.000] fileExists:: [{"key":"/c/d/f2.ts","count":1},{"key":"/c/d/f2.tsx","count":1},{"key":"/c/d/f2.d.ts","count":1},{"key":"/c/f2.ts","count":1},{"key":"/c/f2.tsx","count":1},{"key":"/c/f2.d.ts","count":1},{"key":"/f2.ts","count":1},{"key":"/f2.tsx","count":1},{"key":"/f2.d.ts","count":1},{"key":"/c/d/f2.js","count":1},{"key":"/c/d/f2.jsx","count":1},{"key":"/c/f2.js","count":1},{"key":"/c/f2.jsx","count":1},{"key":"/f2.js","count":1},{"key":"/f2.jsx","count":1}] +Info 34 [00:00:51.000] directoryExists:: [{"key":"/c/d","count":2},{"key":"/c","count":2},{"key":"/","count":2},{"key":"/c/d/node_modules","count":2},{"key":"/c/node_modules","count":1},{"key":"/node_modules","count":1},{"key":"/c/d/node_modules/@types","count":1},{"key":"/c/node_modules/@types","count":1},{"key":"/node_modules/@types","count":1}] +Info 35 [00:00:52.000] getDirectories:: [] +Info 36 [00:00:53.000] readFile:: [] +Info 37 [00:00:54.000] readDirectory:: [] +Info 38 [00:00:55.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 39 [00:00:56.000] DirectoryWatcher:: Close:: WatchInfo: /c/d/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 40 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /c/d/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 41 [00:00:58.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 42 [00:00:59.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 43 [00:01:00.000] Files (2) /c/f1.ts /c/d/f0.ts @@ -90,33 +89,33 @@ Info 44 [00:01:01.000] Files (2) f0.ts Root file specified for compilation -Info 45 [00:01:02.000] ----------------------------------------------- -Info 46 [00:01:03.000] getSemanticDiagnostics:: /c/f1.ts:: 1 -Info 47 [00:01:04.000] ../f1.ts(1,1): error TS2304: Cannot find name 'foo'. +Info 44 [00:01:01.000] ----------------------------------------------- +Info 45 [00:01:02.000] getSemanticDiagnostics:: /c/f1.ts:: 1 +Info 46 [00:01:03.000] ../f1.ts(1,1): error TS2304: Cannot find name 'foo'. -Info 48 [00:01:05.000] fileExists:: [{"key":"/c/d/f1.ts","count":1},{"key":"/c/d/f1.tsx","count":1},{"key":"/c/d/f1.d.ts","count":1},{"key":"/c/f1.ts","count":1}] -Info 49 [00:01:06.000] directoryExists:: [{"key":"/c/d","count":1},{"key":"/c","count":1},{"key":"/c/d/node_modules/@types","count":1},{"key":"/c/node_modules/@types","count":1},{"key":"/node_modules/@types","count":1}] -Info 50 [00:01:07.000] getDirectories:: [] -Info 51 [00:01:08.000] readFile:: [] -Info 52 [00:01:09.000] readDirectory:: [] -Info 53 [00:01:10.000] DirectoryWatcher:: Close:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 54 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 55 [00:01:12.000] DirectoryWatcher:: Close:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 56 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 57 [00:01:14.000] Scheduled: /dev/null/inferredProject1* -Info 58 [00:01:15.000] Scheduled: *ensureProjectForOpenFiles* -Info 59 [00:01:16.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 60 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 61 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 62 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 63 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 64 [00:01:21.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 5 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 65 [00:01:22.000] Different program with same set of files -Info 66 [00:01:23.000] getSemanticDiagnostics:: /c/f1.ts:: 1 -Info 67 [00:01:24.000] ../f1.ts(1,1): error TS2304: Cannot find name 'foo'. +Info 47 [00:01:04.000] fileExists:: [{"key":"/c/d/f1.ts","count":1},{"key":"/c/d/f1.tsx","count":1},{"key":"/c/d/f1.d.ts","count":1},{"key":"/c/f1.ts","count":1}] +Info 48 [00:01:05.000] directoryExists:: [{"key":"/c/d","count":1},{"key":"/c","count":1},{"key":"/c/d/node_modules/@types","count":1},{"key":"/c/node_modules/@types","count":1},{"key":"/node_modules/@types","count":1}] +Info 49 [00:01:06.000] getDirectories:: [] +Info 50 [00:01:07.000] readFile:: [] +Info 51 [00:01:08.000] readDirectory:: [] +Info 52 [00:01:09.000] DirectoryWatcher:: Close:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 53 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 54 [00:01:11.000] DirectoryWatcher:: Close:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 55 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 56 [00:01:13.000] Scheduled: /dev/null/inferredProject1* +Info 57 [00:01:14.000] Scheduled: *ensureProjectForOpenFiles* +Info 58 [00:01:15.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 59 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 60 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/d 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 61 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 62 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /c/d/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 63 [00:01:20.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 5 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 64 [00:01:21.000] Different program with same set of files +Info 65 [00:01:22.000] getSemanticDiagnostics:: /c/f1.ts:: 1 +Info 66 [00:01:23.000] ../f1.ts(1,1): error TS2304: Cannot find name 'foo'. -Info 68 [00:01:25.000] fileExists:: [{"key":"/c/d/f1.ts","count":1},{"key":"/c/d/f1.tsx","count":1},{"key":"/c/d/f1.d.ts","count":1},{"key":"/c/f1.ts","count":1}] -Info 69 [00:01:26.000] directoryExists:: [{"key":"/c/d","count":2},{"key":"/c","count":1},{"key":"/c/d/node_modules/@types","count":2},{"key":"/c/node_modules/@types","count":1},{"key":"/node_modules/@types","count":1}] -Info 70 [00:01:27.000] getDirectories:: [] -Info 71 [00:01:28.000] readFile:: [] -Info 72 [00:01:29.000] readDirectory:: [] \ No newline at end of file +Info 67 [00:01:24.000] fileExists:: [{"key":"/c/d/f1.ts","count":1},{"key":"/c/d/f1.tsx","count":1},{"key":"/c/d/f1.d.ts","count":1},{"key":"/c/f1.ts","count":1}] +Info 68 [00:01:25.000] directoryExists:: [{"key":"/c/d","count":2},{"key":"/c","count":1},{"key":"/c/d/node_modules/@types","count":2},{"key":"/c/node_modules/@types","count":1},{"key":"/node_modules/@types","count":1}] +Info 69 [00:01:26.000] getDirectories:: [] +Info 70 [00:01:27.000] readFile:: [] +Info 71 [00:01:28.000] readDirectory:: [] \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/configFileSearch/should-use-projectRootPath-when-searching-for-inferred-project-again-2.js b/tests/baselines/reference/tsserver/configFileSearch/should-use-projectRootPath-when-searching-for-inferred-project-again-2.js index db685a0b263b1..8d1c8512d09a5 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 @@ -43,16 +43,15 @@ Info 5 [00:00:28.000] Config: /a/b/projects/project/src/tsconfig.json : { } Info 6 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory Info 7 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:31.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:32.000] Starting updateGraphWorker: Project: /a/b/projects/project/src/tsconfig.json -Info 10 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 12 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 13 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 14 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 15 [00:00:38.000] Finishing updateGraphWorker: Project: /a/b/projects/project/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:00:39.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) -Info 17 [00:00:40.000] Files (2) +Info 8 [00:00:31.000] Starting updateGraphWorker: Project: /a/b/projects/project/src/tsconfig.json +Info 9 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 11 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 12 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 13 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 14 [00:00:37.000] Finishing updateGraphWorker: Project: /a/b/projects/project/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:38.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) +Info 16 [00:00:39.000] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/file1.ts @@ -62,18 +61,18 @@ Info 17 [00:00:40.000] Files (2) file1.ts Matched by default include pattern '**/*' -Info 18 [00:00:41.000] ----------------------------------------------- -Info 19 [00:00:42.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) -Info 19 [00:00:43.000] Files (2) - -Info 19 [00:00:44.000] ----------------------------------------------- -Info 19 [00:00:45.000] Open files: -Info 19 [00:00:46.000] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project -Info 19 [00:00:47.000] Projects: /a/b/projects/project/src/tsconfig.json -Info 19 [00:00:49.000] FileWatcher:: Triggered with /a/b/projects/project/src/tsconfig.json 2:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file -Info 20 [00:00:50.000] `remove Project:: -Info 21 [00:00:51.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) -Info 22 [00:00:52.000] Files (2) +Info 17 [00:00:40.000] ----------------------------------------------- +Info 18 [00:00:41.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) +Info 18 [00:00:42.000] Files (2) + +Info 18 [00:00:43.000] ----------------------------------------------- +Info 18 [00:00:44.000] Open files: +Info 18 [00:00:45.000] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project +Info 18 [00:00:46.000] Projects: /a/b/projects/project/src/tsconfig.json +Info 18 [00:00:48.000] FileWatcher:: Triggered with /a/b/projects/project/src/tsconfig.json 2:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file +Info 19 [00:00:49.000] `remove Project:: +Info 20 [00:00:50.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) +Info 21 [00:00:51.000] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/file1.ts @@ -83,18 +82,18 @@ Info 22 [00:00:52.000] Files (2) file1.ts Matched by default include pattern '**/*' -Info 23 [00:00:53.000] ----------------------------------------------- -Info 24 [00:00:54.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory -Info 25 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory -Info 26 [00:00:56.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file -Info 27 [00:00:57.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 28 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 29 [00:00:59.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 30 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 31 [00:01:01.000] Search path: /a/b/projects/project/src -Info 32 [00:01:02.000] For info: /a/b/projects/project/src/file1.ts :: No config files found. -Info 33 [00:01:03.000] Scheduled: *ensureProjectForOpenFiles* -Info 34 [00:01:04.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/src/tsconfig.json 2:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file +Info 22 [00:00:52.000] ----------------------------------------------- +Info 23 [00:00:53.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory +Info 24 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory +Info 25 [00:00:55.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file +Info 26 [00:00:56.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 27 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 28 [00:00:58.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 29 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 30 [00:01:00.000] Search path: /a/b/projects/project/src +Info 31 [00:01:01.000] For info: /a/b/projects/project/src/file1.ts :: No config files found. +Info 32 [00:01:02.000] Scheduled: *ensureProjectForOpenFiles* +Info 33 [00:01:03.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/src/tsconfig.json 2:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file Before running timeout callbacks //// [/a/b/projects/project/src/tsconfig.json] deleted @@ -106,22 +105,21 @@ FsWatches:: FsWatchesRecursive:: -Info 35 [00:01:05.500] Running: *ensureProjectForOpenFiles* -Info 36 [00:01:06.500] Before ensureProjectForOpenFiles: -Info 37 [00:01:07.500] Open files: -Info 37 [00:01:08.500] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project -Info 37 [00:01:09.500] Projects: -Info 37 [00:01:10.500] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 38 [00:01:11.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 39 [00:01:12.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 40 [00:01:13.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 41 [00:01:14.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 42 [00:01:15.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 43 [00:01:16.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 44 [00:01:17.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 45 [00:01:18.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 46 [00:01:19.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 47 [00:01:20.500] Files (2) +Info 34 [00:01:04.500] Running: *ensureProjectForOpenFiles* +Info 35 [00:01:05.500] Before ensureProjectForOpenFiles: +Info 36 [00:01:06.500] Open files: +Info 36 [00:01:07.500] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project +Info 36 [00:01:08.500] Projects: +Info 36 [00:01:09.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 37 [00:01:10.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 38 [00:01:11.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 39 [00:01:12.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 40 [00:01:13.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 41 [00:01:14.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 42 [00:01:15.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 43 [00:01:16.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:17.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 45 [00:01:18.500] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/file1.ts @@ -131,15 +129,15 @@ Info 47 [00:01:20.500] Files (2) src/file1.ts Root file specified for compilation -Info 48 [00:01:21.500] ----------------------------------------------- -Info 49 [00:01:22.500] After ensureProjectForOpenFiles: -Info 50 [00:01:23.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 50 [00:01:24.500] Files (2) +Info 46 [00:01:19.500] ----------------------------------------------- +Info 47 [00:01:20.500] After ensureProjectForOpenFiles: +Info 48 [00:01:21.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 48 [00:01:22.500] Files (2) -Info 50 [00:01:25.500] ----------------------------------------------- -Info 50 [00:01:26.500] Open files: -Info 50 [00:01:27.500] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project -Info 50 [00:01:28.500] Projects: /dev/null/inferredProject1* +Info 48 [00:01:23.500] ----------------------------------------------- +Info 48 [00:01:24.500] Open files: +Info 48 [00:01:25.500] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project +Info 48 [00:01:26.500] Projects: /dev/null/inferredProject1* After running timeout callbacks PolledWatches:: diff --git a/tests/baselines/reference/tsserver/configFileSearch/should-use-projectRootPath-when-searching-for-inferred-project-again.js b/tests/baselines/reference/tsserver/configFileSearch/should-use-projectRootPath-when-searching-for-inferred-project-again.js index 6dda94d0efabd..f864e6e589705 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 @@ -43,16 +43,15 @@ Info 5 [00:00:28.000] Config: /a/b/projects/project/src/tsconfig.json : { } Info 6 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory Info 7 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:31.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:32.000] Starting updateGraphWorker: Project: /a/b/projects/project/src/tsconfig.json -Info 10 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 12 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 13 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 14 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 15 [00:00:38.000] Finishing updateGraphWorker: Project: /a/b/projects/project/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:00:39.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) -Info 17 [00:00:40.000] Files (2) +Info 8 [00:00:31.000] Starting updateGraphWorker: Project: /a/b/projects/project/src/tsconfig.json +Info 9 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 11 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 12 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 13 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 14 [00:00:37.000] Finishing updateGraphWorker: Project: /a/b/projects/project/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:38.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) +Info 16 [00:00:39.000] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/file1.ts @@ -62,18 +61,18 @@ Info 17 [00:00:40.000] Files (2) file1.ts Matched by default include pattern '**/*' -Info 18 [00:00:41.000] ----------------------------------------------- -Info 19 [00:00:42.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) -Info 19 [00:00:43.000] Files (2) - -Info 19 [00:00:44.000] ----------------------------------------------- -Info 19 [00:00:45.000] Open files: -Info 19 [00:00:46.000] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project -Info 19 [00:00:47.000] Projects: /a/b/projects/project/src/tsconfig.json -Info 19 [00:00:49.000] FileWatcher:: Triggered with /a/b/projects/project/src/tsconfig.json 2:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file -Info 20 [00:00:50.000] `remove Project:: -Info 21 [00:00:51.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) -Info 22 [00:00:52.000] Files (2) +Info 17 [00:00:40.000] ----------------------------------------------- +Info 18 [00:00:41.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) +Info 18 [00:00:42.000] Files (2) + +Info 18 [00:00:43.000] ----------------------------------------------- +Info 18 [00:00:44.000] Open files: +Info 18 [00:00:45.000] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project +Info 18 [00:00:46.000] Projects: /a/b/projects/project/src/tsconfig.json +Info 18 [00:00:48.000] FileWatcher:: Triggered with /a/b/projects/project/src/tsconfig.json 2:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file +Info 19 [00:00:49.000] `remove Project:: +Info 20 [00:00:50.000] Project '/a/b/projects/project/src/tsconfig.json' (Configured) +Info 21 [00:00:51.000] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/file1.ts @@ -83,18 +82,18 @@ Info 22 [00:00:52.000] Files (2) file1.ts Matched by default include pattern '**/*' -Info 23 [00:00:53.000] ----------------------------------------------- -Info 24 [00:00:54.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory -Info 25 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory -Info 26 [00:00:56.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file -Info 27 [00:00:57.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 28 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 29 [00:00:59.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 30 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots -Info 31 [00:01:01.000] Search path: /a/b/projects/project/src -Info 32 [00:01:02.000] For info: /a/b/projects/project/src/file1.ts :: No config files found. -Info 33 [00:01:03.000] Scheduled: *ensureProjectForOpenFiles* -Info 34 [00:01:04.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/src/tsconfig.json 2:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file +Info 22 [00:00:52.000] ----------------------------------------------- +Info 23 [00:00:53.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory +Info 24 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src 1 undefined Config: /a/b/projects/project/src/tsconfig.json WatchType: Wild card directory +Info 25 [00:00:55.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file +Info 26 [00:00:56.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 27 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 28 [00:00:58.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 29 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Type roots +Info 30 [00:01:00.000] Search path: /a/b/projects/project/src +Info 31 [00:01:01.000] For info: /a/b/projects/project/src/file1.ts :: No config files found. +Info 32 [00:01:02.000] Scheduled: *ensureProjectForOpenFiles* +Info 33 [00:01:03.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/src/tsconfig.json 2:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined Project: /a/b/projects/project/src/tsconfig.json WatchType: Config file Before running timeout callbacks //// [/a/b/projects/project/src/tsconfig.json] deleted @@ -106,24 +105,23 @@ FsWatches:: FsWatchesRecursive:: -Info 35 [00:01:05.500] Running: *ensureProjectForOpenFiles* -Info 36 [00:01:06.500] Before ensureProjectForOpenFiles: -Info 37 [00:01:07.500] Open files: -Info 37 [00:01:08.500] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project -Info 37 [00:01:09.500] Projects: -Info 37 [00:01:10.500] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 38 [00:01:11.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 39 [00:01:12.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 40 [00:01:13.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 41 [00:01:14.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 42 [00:01:15.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 43 [00:01:16.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 44 [00:01:17.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 45 [00:01:18.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 46 [00:01:19.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 47 [00:01:20.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 48 [00:01:21.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 49 [00:01:22.500] Files (2) +Info 34 [00:01:04.500] Running: *ensureProjectForOpenFiles* +Info 35 [00:01:05.500] Before ensureProjectForOpenFiles: +Info 36 [00:01:06.500] Open files: +Info 36 [00:01:07.500] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project +Info 36 [00:01:08.500] Projects: +Info 36 [00:01:09.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 37 [00:01:10.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 38 [00:01:11.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 39 [00:01:12.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 40 [00:01:13.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 41 [00:01:14.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 42 [00:01:15.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 43 [00:01:16.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 44 [00:01:17.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 45 [00:01:18.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 46 [00:01:19.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 47 [00:01:20.500] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/file1.ts @@ -133,15 +131,15 @@ Info 49 [00:01:22.500] Files (2) file1.ts Root file specified for compilation -Info 50 [00:01:23.500] ----------------------------------------------- -Info 51 [00:01:24.500] After ensureProjectForOpenFiles: -Info 52 [00:01:25.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 52 [00:01:26.500] Files (2) +Info 48 [00:01:21.500] ----------------------------------------------- +Info 49 [00:01:22.500] After ensureProjectForOpenFiles: +Info 50 [00:01:23.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 50 [00:01:24.500] Files (2) -Info 52 [00:01:27.500] ----------------------------------------------- -Info 52 [00:01:28.500] Open files: -Info 52 [00:01:29.500] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project -Info 52 [00:01:30.500] Projects: /dev/null/inferredProject1* +Info 50 [00:01:25.500] ----------------------------------------------- +Info 50 [00:01:26.500] Open files: +Info 50 [00:01:27.500] FileName: /a/b/projects/project/src/file1.ts ProjectRootPath: /a/b/projects/project +Info 50 [00:01:28.500] Projects: /dev/null/inferredProject1* After running timeout callbacks PolledWatches:: diff --git a/tests/baselines/reference/tsserver/configFileSearch/tsconfig-for-the-file-does-not-exist.js b/tests/baselines/reference/tsserver/configFileSearch/tsconfig-for-the-file-does-not-exist.js index a69a15cffed88..2dd997b6a49d3 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 @@ -25,20 +25,19 @@ 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] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 4 [00:00:23.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 5 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 6 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 7 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 8 [00:00:27.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 9 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 10 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 11 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 12 [00:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 13 [00:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 14 [00:00:33.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [00:00:34.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 16 [00:00:35.000] Files (2) +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 +Info 4 [00:00:23.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 5 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 6 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 7 [00:00:26.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 8 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 9 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 10 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 11 [00:00:30.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 12 [00:00:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 13 [00:00:32.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 14 [00:00:33.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 15 [00:00:34.000] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/index.ts @@ -48,27 +47,27 @@ Info 16 [00:00:35.000] Files (2) index.ts Root file specified for compilation -Info 17 [00:00:36.000] ----------------------------------------------- -Info 18 [00:00:37.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 18 [00:00:38.000] Files (2) - -Info 18 [00:00:39.000] ----------------------------------------------- -Info 18 [00:00:40.000] Open files: -Info 18 [00:00:41.000] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj -Info 18 [00:00:42.000] Projects: /dev/null/inferredProject1* -Info 18 [00:00:45.000] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 19 [00:00:46.000] Search path: /a/b/projects/project/src -Info 20 [00:00:47.000] For info: /a/b/projects/project/src/index.ts :: Config file name: /a/b/projects/project/tsconfig.json -Info 21 [00:00:48.000] Creating configuration project /a/b/projects/project/tsconfig.json -Info 22 [00:00:49.000] Scheduled: /a/b/projects/project/tsconfig.json -Info 23 [00:00:50.000] Scheduled: *ensureProjectForOpenFiles* -Info 24 [00:00:51.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 25 [00:00:52.000] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 26 [00:00:53.000] Search path: /a/b/projects/project/src -Info 27 [00:00:54.000] For info: /a/b/projects/project/src/index.ts :: Config file name: /a/b/projects/project/tsconfig.json -Info 28 [00:00:55.000] Scheduled: /a/b/projects/project/tsconfig.json, Cancelled earlier one -Info 29 [00:00:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 30 [00:00:57.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 16 [00:00:35.000] ----------------------------------------------- +Info 17 [00:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 17 [00:00:37.000] Files (2) + +Info 17 [00:00:38.000] ----------------------------------------------- +Info 17 [00:00:39.000] Open files: +Info 17 [00:00:40.000] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj +Info 17 [00:00:41.000] Projects: /dev/null/inferredProject1* +Info 17 [00:00:44.000] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 18 [00:00:45.000] Search path: /a/b/projects/project/src +Info 19 [00:00:46.000] For info: /a/b/projects/project/src/index.ts :: Config file name: /a/b/projects/project/tsconfig.json +Info 20 [00:00:47.000] Creating configuration project /a/b/projects/project/tsconfig.json +Info 21 [00:00:48.000] Scheduled: /a/b/projects/project/tsconfig.json +Info 22 [00:00:49.000] Scheduled: *ensureProjectForOpenFiles* +Info 23 [00:00:50.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 24 [00:00:51.000] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 25 [00:00:52.000] Search path: /a/b/projects/project/src +Info 26 [00:00:53.000] For info: /a/b/projects/project/src/index.ts :: Config file name: /a/b/projects/project/tsconfig.json +Info 27 [00:00:54.000] Scheduled: /a/b/projects/project/tsconfig.json, Cancelled earlier one +Info 28 [00:00:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 29 [00:00:56.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Before running timeout callbacks //// [/a/b/projects/project/tsconfig.json] {} @@ -94,9 +93,9 @@ FsWatches:: FsWatchesRecursive:: -Info 31 [00:00:58.000] Running: /a/b/projects/project/tsconfig.json -Info 32 [00:00:59.000] Loading configured project /a/b/projects/project/tsconfig.json -Info 33 [00:01:00.000] Config: /a/b/projects/project/tsconfig.json : { +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 : { "rootNames": [ "/a/b/projects/project/src/index.ts" ], @@ -104,18 +103,17 @@ Info 33 [00:01:00.000] Config: /a/b/projects/project/tsconfig.json : { "configFilePath": "/a/b/projects/project/tsconfig.json" } } -Info 34 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory -Info 35 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory -Info 36 [00:01:03.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 37 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 38 [00:01:05.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 39 [00:01:06.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 40 [00:01:07.000] Starting updateGraphWorker: Project: /a/b/projects/project/tsconfig.json -Info 41 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots -Info 42 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots -Info 43 [00:01:10.000] Finishing updateGraphWorker: Project: /a/b/projects/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [00:01:11.000] Project '/a/b/projects/project/tsconfig.json' (Configured) -Info 45 [00:01:12.000] Files (2) +Info 33 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory +Info 35 [00:01:02.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 36 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 37 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 38 [00:01:05.000] Starting updateGraphWorker: Project: /a/b/projects/project/tsconfig.json +Info 39 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots +Info 40 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots +Info 41 [00:01:08.000] Finishing updateGraphWorker: Project: /a/b/projects/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:09.000] Project '/a/b/projects/project/tsconfig.json' (Configured) +Info 43 [00:01:10.000] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/index.ts @@ -125,40 +123,40 @@ Info 45 [00:01:12.000] Files (2) src/index.ts Matched by default include pattern '**/*' -Info 46 [00:01:13.000] ----------------------------------------------- -Info 47 [00:01:14.000] Running: *ensureProjectForOpenFiles* -Info 48 [00:01:15.000] Before ensureProjectForOpenFiles: -Info 49 [00:01:16.000] Project '/a/b/projects/project/tsconfig.json' (Configured) -Info 49 [00:01:17.000] Files (2) - -Info 49 [00:01:18.000] ----------------------------------------------- -Info 49 [00:01:19.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 49 [00:01:20.000] Files (2) - -Info 49 [00:01:21.000] ----------------------------------------------- -Info 49 [00:01:22.000] Open files: -Info 49 [00:01:23.000] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj -Info 49 [00:01:24.000] Projects: /a/b/projects/project/tsconfig.json -Info 49 [00:01:25.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 50 [00:01:26.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 51 [00:01:27.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 52 [00:01:28.000] Files (0) +Info 44 [00:01:11.000] ----------------------------------------------- +Info 45 [00:01:12.000] Running: *ensureProjectForOpenFiles* +Info 46 [00:01:13.000] Before ensureProjectForOpenFiles: +Info 47 [00:01:14.000] Project '/a/b/projects/project/tsconfig.json' (Configured) +Info 47 [00:01:15.000] Files (2) + +Info 47 [00:01:16.000] ----------------------------------------------- +Info 47 [00:01:17.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 47 [00:01:18.000] Files (2) + +Info 47 [00:01:19.000] ----------------------------------------------- +Info 47 [00:01:20.000] Open files: +Info 47 [00:01:21.000] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj +Info 47 [00:01:22.000] Projects: /a/b/projects/project/tsconfig.json +Info 47 [00:01:23.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 48 [00:01:24.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 49 [00:01:25.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 50 [00:01:26.000] Files (0) -Info 53 [00:01:29.000] ----------------------------------------------- -Info 54 [00:01:30.000] After ensureProjectForOpenFiles: -Info 55 [00:01:31.000] Project '/a/b/projects/project/tsconfig.json' (Configured) -Info 55 [00:01:32.000] Files (2) +Info 51 [00:01:27.000] ----------------------------------------------- +Info 52 [00:01:28.000] After ensureProjectForOpenFiles: +Info 53 [00:01:29.000] Project '/a/b/projects/project/tsconfig.json' (Configured) +Info 53 [00:01:30.000] Files (2) -Info 55 [00:01:33.000] ----------------------------------------------- -Info 55 [00:01:34.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 55 [00:01:35.000] Files (0) +Info 53 [00:01:31.000] ----------------------------------------------- +Info 53 [00:01:32.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 53 [00:01:33.000] Files (0) -Info 55 [00:01:36.000] ----------------------------------------------- -Info 55 [00:01:37.000] Open files: -Info 55 [00:01:38.000] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj -Info 55 [00:01:39.000] Projects: /a/b/projects/project/tsconfig.json +Info 53 [00:01:34.000] ----------------------------------------------- +Info 53 [00:01:35.000] Open files: +Info 53 [00:01:36.000] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj +Info 53 [00:01:37.000] Projects: /a/b/projects/project/tsconfig.json After running timeout callbacks PolledWatches:: @@ -177,10 +175,10 @@ FsWatchesRecursive:: /a/b/projects/project: {} -Info 55 [00:01:41.000] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 2:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 56 [00:01:42.000] `remove Project:: -Info 57 [00:01:43.000] Project '/a/b/projects/project/tsconfig.json' (Configured) -Info 58 [00:01:44.000] Files (2) +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 +Info 54 [00:01:40.000] `remove Project:: +Info 55 [00:01:41.000] Project '/a/b/projects/project/tsconfig.json' (Configured) +Info 56 [00:01:42.000] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/index.ts @@ -190,16 +188,16 @@ Info 58 [00:01:44.000] Files (2) src/index.ts Matched by default include pattern '**/*' -Info 59 [00:01:45.000] ----------------------------------------------- -Info 60 [00:01:46.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory -Info 61 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory -Info 62 [00:01:48.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 63 [00:01:49.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots -Info 64 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots -Info 65 [00:01:51.000] Search path: /a/b/projects/project/src -Info 66 [00:01:52.000] For info: /a/b/projects/project/src/index.ts :: No config files found. -Info 67 [00:01:53.000] Scheduled: *ensureProjectForOpenFiles* -Info 68 [00:01:54.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 2:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 57 [00:01:43.000] ----------------------------------------------- +Info 58 [00:01:44.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory +Info 59 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory +Info 60 [00:01:46.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 61 [00:01:47.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots +Info 62 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots +Info 63 [00:01:49.000] Search path: /a/b/projects/project/src +Info 64 [00:01:50.000] For info: /a/b/projects/project/src/index.ts :: No config files found. +Info 65 [00:01:51.000] Scheduled: *ensureProjectForOpenFiles* +Info 66 [00:01:52.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 2:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Before running timeout callbacks //// [/a/b/projects/project/tsconfig.json] deleted @@ -215,23 +213,23 @@ FsWatches:: FsWatchesRecursive:: -Info 69 [00:01:55.500] Running: *ensureProjectForOpenFiles* -Info 70 [00:01:56.500] Before ensureProjectForOpenFiles: -Info 71 [00:01:57.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 71 [00:01:58.500] Files (0) - -Info 71 [00:01:59.500] ----------------------------------------------- -Info 71 [00:02:00.500] Open files: -Info 71 [00:02:01.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj -Info 71 [00:02:02.500] Projects: -Info 71 [00:02:03.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 72 [00:02:04.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 73 [00:02:05.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 74 [00:02:06.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 75 [00:02:07.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 76 [00:02:08.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 77 [00:02:09.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 78 [00:02:10.500] Files (2) +Info 67 [00:01:53.500] Running: *ensureProjectForOpenFiles* +Info 68 [00:01:54.500] Before ensureProjectForOpenFiles: +Info 69 [00:01:55.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 69 [00:01:56.500] Files (0) + +Info 69 [00:01:57.500] ----------------------------------------------- +Info 69 [00:01:58.500] Open files: +Info 69 [00:01:59.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj +Info 69 [00:02:00.500] Projects: +Info 69 [00:02:01.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 70 [00:02:02.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 71 [00:02:03.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 72 [00:02:04.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 73 [00:02:05.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 74 [00:02:06.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 75 [00:02:07.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 76 [00:02:08.500] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/index.ts @@ -241,15 +239,15 @@ Info 78 [00:02:10.500] Files (2) index.ts Root file specified for compilation -Info 79 [00:02:11.500] ----------------------------------------------- -Info 80 [00:02:12.500] After ensureProjectForOpenFiles: -Info 81 [00:02:13.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 81 [00:02:14.500] Files (2) +Info 77 [00:02:09.500] ----------------------------------------------- +Info 78 [00:02:10.500] After ensureProjectForOpenFiles: +Info 79 [00:02:11.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 79 [00:02:12.500] Files (2) -Info 81 [00:02:15.500] ----------------------------------------------- -Info 81 [00:02:16.500] Open files: -Info 81 [00:02:17.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj -Info 81 [00:02:18.500] Projects: /dev/null/inferredProject1* +Info 79 [00:02:13.500] ----------------------------------------------- +Info 79 [00:02:14.500] Open files: +Info 79 [00:02:15.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj +Info 79 [00:02:16.500] Projects: /dev/null/inferredProject1* After running timeout callbacks PolledWatches:: diff --git a/tests/baselines/reference/tsserver/configFileSearch/tsconfig-for-the-file-exists.js b/tests/baselines/reference/tsserver/configFileSearch/tsconfig-for-the-file-exists.js index b6b50f9196b17..c4577165e92bf 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 @@ -40,14 +40,13 @@ Info 5 [00:00:26.000] Config: /a/b/projects/project/tsconfig.json : { } Info 6 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory Info 7 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:29.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:30.000] Starting updateGraphWorker: Project: /a/b/projects/project/tsconfig.json -Info 10 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots -Info 12 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots -Info 13 [00:00:34.000] Finishing updateGraphWorker: Project: /a/b/projects/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 14 [00:00:35.000] Project '/a/b/projects/project/tsconfig.json' (Configured) -Info 15 [00:00:36.000] Files (2) +Info 8 [00:00:29.000] Starting updateGraphWorker: Project: /a/b/projects/project/tsconfig.json +Info 9 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots +Info 11 [00:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots +Info 12 [00:00:33.000] Finishing updateGraphWorker: Project: /a/b/projects/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 13 [00:00:34.000] Project '/a/b/projects/project/tsconfig.json' (Configured) +Info 14 [00:00:35.000] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/index.ts @@ -57,18 +56,18 @@ Info 15 [00:00:36.000] Files (2) src/index.ts Matched by default include pattern '**/*' -Info 16 [00:00:37.000] ----------------------------------------------- -Info 17 [00:00:38.000] Project '/a/b/projects/project/tsconfig.json' (Configured) -Info 17 [00:00:39.000] Files (2) - -Info 17 [00:00:40.000] ----------------------------------------------- -Info 17 [00:00:41.000] Open files: -Info 17 [00:00:42.000] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj -Info 17 [00:00:43.000] Projects: /a/b/projects/project/tsconfig.json -Info 17 [00:00:45.000] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 2:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Config file -Info 18 [00:00:46.000] `remove Project:: -Info 19 [00:00:47.000] Project '/a/b/projects/project/tsconfig.json' (Configured) -Info 20 [00:00:48.000] Files (2) +Info 15 [00:00:36.000] ----------------------------------------------- +Info 16 [00:00:37.000] Project '/a/b/projects/project/tsconfig.json' (Configured) +Info 16 [00:00:38.000] Files (2) + +Info 16 [00:00:39.000] ----------------------------------------------- +Info 16 [00:00:40.000] Open files: +Info 16 [00:00:41.000] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj +Info 16 [00:00:42.000] Projects: /a/b/projects/project/tsconfig.json +Info 16 [00:00:44.000] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 2:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Config file +Info 17 [00:00:45.000] `remove Project:: +Info 18 [00:00:46.000] Project '/a/b/projects/project/tsconfig.json' (Configured) +Info 19 [00:00:47.000] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/index.ts @@ -78,16 +77,16 @@ Info 20 [00:00:48.000] Files (2) src/index.ts Matched by default include pattern '**/*' -Info 21 [00:00:49.000] ----------------------------------------------- -Info 22 [00:00:50.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory -Info 23 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory -Info 24 [00:00:52.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Config file -Info 25 [00:00:53.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots -Info 26 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots -Info 27 [00:00:55.000] Search path: /a/b/projects/project/src -Info 28 [00:00:56.000] For info: /a/b/projects/project/src/index.ts :: No config files found. -Info 29 [00:00:57.000] Scheduled: *ensureProjectForOpenFiles* -Info 30 [00:00:58.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 2:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Config file +Info 20 [00:00:48.000] ----------------------------------------------- +Info 21 [00:00:49.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory +Info 22 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory +Info 23 [00:00:51.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Config file +Info 24 [00:00:52.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots +Info 25 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots +Info 26 [00:00:54.000] Search path: /a/b/projects/project/src +Info 27 [00:00:55.000] For info: /a/b/projects/project/src/index.ts :: No config files found. +Info 28 [00:00:56.000] Scheduled: *ensureProjectForOpenFiles* +Info 29 [00:00:57.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 2:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Config file Before running timeout callbacks //// [/a/b/projects/project/tsconfig.json] deleted @@ -99,24 +98,23 @@ FsWatches:: FsWatchesRecursive:: -Info 31 [00:00:59.500] Running: *ensureProjectForOpenFiles* -Info 32 [00:01:00.500] Before ensureProjectForOpenFiles: -Info 33 [00:01:01.500] Open files: -Info 33 [00:01:02.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj -Info 33 [00:01:03.500] Projects: -Info 33 [00:01:04.500] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:05.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 35 [00:01:06.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 36 [00:01:07.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 37 [00:01:08.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 38 [00:01:09.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 39 [00:01:10.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 40 [00:01:11.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 41 [00:01:12.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 42 [00:01:13.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 43 [00:01:14.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [00:01:15.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 45 [00:01:16.500] Files (2) +Info 30 [00:00:58.500] Running: *ensureProjectForOpenFiles* +Info 31 [00:00:59.500] Before ensureProjectForOpenFiles: +Info 32 [00:01:00.500] Open files: +Info 32 [00:01:01.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj +Info 32 [00:01:02.500] Projects: +Info 32 [00:01:03.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 33 [00:01:04.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 34 [00:01:05.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 35 [00:01:06.500] FileWatcher:: Added:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 36 [00:01:07.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 37 [00:01:08.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 38 [00:01:09.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 39 [00:01:10.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 40 [00:01:11.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 41 [00:01:12.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:13.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 43 [00:01:14.500] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/index.ts @@ -126,15 +124,15 @@ Info 45 [00:01:16.500] Files (2) index.ts Root file specified for compilation -Info 46 [00:01:17.500] ----------------------------------------------- -Info 47 [00:01:18.500] After ensureProjectForOpenFiles: -Info 48 [00:01:19.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 48 [00:01:20.500] Files (2) +Info 44 [00:01:15.500] ----------------------------------------------- +Info 45 [00:01:16.500] After ensureProjectForOpenFiles: +Info 46 [00:01:17.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 46 [00:01:18.500] Files (2) -Info 48 [00:01:21.500] ----------------------------------------------- -Info 48 [00:01:22.500] Open files: -Info 48 [00:01:23.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj -Info 48 [00:01:24.500] Projects: /dev/null/inferredProject1* +Info 46 [00:01:19.500] ----------------------------------------------- +Info 46 [00:01:20.500] Open files: +Info 46 [00:01:21.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj +Info 46 [00:01:22.500] Projects: /dev/null/inferredProject1* After running timeout callbacks PolledWatches:: @@ -157,19 +155,19 @@ FsWatches:: FsWatchesRecursive:: -Info 48 [00:01:27.500] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 49 [00:01:28.500] Search path: /a/b/projects/project/src -Info 50 [00:01:29.500] For info: /a/b/projects/project/src/index.ts :: Config file name: /a/b/projects/project/tsconfig.json -Info 51 [00:01:30.500] Creating configuration project /a/b/projects/project/tsconfig.json -Info 52 [00:01:31.500] Scheduled: /a/b/projects/project/tsconfig.json -Info 53 [00:01:32.500] Scheduled: *ensureProjectForOpenFiles* -Info 54 [00:01:33.500] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 55 [00:01:34.500] FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 56 [00:01:35.500] Search path: /a/b/projects/project/src -Info 57 [00:01:36.500] For info: /a/b/projects/project/src/index.ts :: Config file name: /a/b/projects/project/tsconfig.json -Info 58 [00:01:37.500] Scheduled: /a/b/projects/project/tsconfig.json, Cancelled earlier one -Info 59 [00:01:38.500] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 60 [00:01:39.500] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +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 +Info 49 [00:01:28.500] Creating configuration project /a/b/projects/project/tsconfig.json +Info 50 [00:01:29.500] Scheduled: /a/b/projects/project/tsconfig.json +Info 51 [00:01:30.500] Scheduled: *ensureProjectForOpenFiles* +Info 52 [00:01:31.500] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 53 [00:01:32.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 54 [00:01:33.500] Search path: /a/b/projects/project/src +Info 55 [00:01:34.500] For info: /a/b/projects/project/src/index.ts :: Config file name: /a/b/projects/project/tsconfig.json +Info 56 [00:01:35.500] Scheduled: /a/b/projects/project/tsconfig.json, Cancelled earlier one +Info 57 [00:01:36.500] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 58 [00:01:37.500] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/project/tsconfig.json 0:: WatchInfo: /a/b/projects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Before running timeout callbacks //// [/a/b/projects/project/tsconfig.json] {} @@ -195,9 +193,9 @@ FsWatches:: FsWatchesRecursive:: -Info 61 [00:01:40.500] Running: /a/b/projects/project/tsconfig.json -Info 62 [00:01:41.500] Loading configured project /a/b/projects/project/tsconfig.json -Info 63 [00:01:42.500] Config: /a/b/projects/project/tsconfig.json : { +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 : { "rootNames": [ "/a/b/projects/project/src/index.ts" ], @@ -205,18 +203,17 @@ Info 63 [00:01:42.500] Config: /a/b/projects/project/tsconfig.json : { "configFilePath": "/a/b/projects/project/tsconfig.json" } } -Info 64 [00:01:43.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory -Info 65 [00:01:44.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory -Info 66 [00:01:45.500] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 67 [00:01:46.500] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 68 [00:01:47.500] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 69 [00:01:48.500] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 70 [00:01:49.500] Starting updateGraphWorker: Project: /a/b/projects/project/tsconfig.json -Info 71 [00:01:50.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots -Info 72 [00:01:51.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots -Info 73 [00:01:52.500] Finishing updateGraphWorker: Project: /a/b/projects/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 74 [00:01:53.500] Project '/a/b/projects/project/tsconfig.json' (Configured) -Info 75 [00:01:54.500] Files (2) +Info 62 [00:01:41.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory +Info 63 [00:01:42.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project 1 undefined Config: /a/b/projects/project/tsconfig.json WatchType: Wild card directory +Info 64 [00:01:43.500] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 65 [00:01:44.500] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 66 [00:01:45.500] FileWatcher:: Close:: WatchInfo: /a/b/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 67 [00:01:46.500] Starting updateGraphWorker: Project: /a/b/projects/project/tsconfig.json +Info 68 [00:01:47.500] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots +Info 69 [00:01:48.500] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/project/node_modules/@types 1 undefined Project: /a/b/projects/project/tsconfig.json WatchType: Type roots +Info 70 [00:01:49.500] Finishing updateGraphWorker: Project: /a/b/projects/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 71 [00:01:50.500] Project '/a/b/projects/project/tsconfig.json' (Configured) +Info 72 [00:01:51.500] Files (2) /a/lib/lib.d.ts /a/b/projects/project/src/index.ts @@ -226,40 +223,40 @@ Info 75 [00:01:54.500] Files (2) src/index.ts Matched by default include pattern '**/*' -Info 76 [00:01:55.500] ----------------------------------------------- -Info 77 [00:01:56.500] Running: *ensureProjectForOpenFiles* -Info 78 [00:01:57.500] Before ensureProjectForOpenFiles: -Info 79 [00:01:58.500] Project '/a/b/projects/project/tsconfig.json' (Configured) -Info 79 [00:01:59.500] Files (2) - -Info 79 [00:02:00.500] ----------------------------------------------- -Info 79 [00:02:01.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 79 [00:02:02.500] Files (2) - -Info 79 [00:02:03.500] ----------------------------------------------- -Info 79 [00:02:04.500] Open files: -Info 79 [00:02:05.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj -Info 79 [00:02:06.500] Projects: /a/b/projects/project/tsconfig.json -Info 79 [00:02:07.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 80 [00:02:08.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 81 [00:02:09.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 82 [00:02:10.500] Files (0) +Info 73 [00:01:52.500] ----------------------------------------------- +Info 74 [00:01:53.500] Running: *ensureProjectForOpenFiles* +Info 75 [00:01:54.500] Before ensureProjectForOpenFiles: +Info 76 [00:01:55.500] Project '/a/b/projects/project/tsconfig.json' (Configured) +Info 76 [00:01:56.500] Files (2) + +Info 76 [00:01:57.500] ----------------------------------------------- +Info 76 [00:01:58.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 76 [00:01:59.500] Files (2) + +Info 76 [00:02:00.500] ----------------------------------------------- +Info 76 [00:02:01.500] Open files: +Info 76 [00:02:02.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj +Info 76 [00:02:03.500] Projects: /a/b/projects/project/tsconfig.json +Info 76 [00:02:04.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 77 [00:02:05.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 78 [00:02:06.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 79 [00:02:07.500] Files (0) -Info 83 [00:02:11.500] ----------------------------------------------- -Info 84 [00:02:12.500] After ensureProjectForOpenFiles: -Info 85 [00:02:13.500] Project '/a/b/projects/project/tsconfig.json' (Configured) -Info 85 [00:02:14.500] Files (2) +Info 80 [00:02:08.500] ----------------------------------------------- +Info 81 [00:02:09.500] After ensureProjectForOpenFiles: +Info 82 [00:02:10.500] Project '/a/b/projects/project/tsconfig.json' (Configured) +Info 82 [00:02:11.500] Files (2) -Info 85 [00:02:15.500] ----------------------------------------------- -Info 85 [00:02:16.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 85 [00:02:17.500] Files (0) +Info 82 [00:02:12.500] ----------------------------------------------- +Info 82 [00:02:13.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 82 [00:02:14.500] Files (0) -Info 85 [00:02:18.500] ----------------------------------------------- -Info 85 [00:02:19.500] Open files: -Info 85 [00:02:20.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj -Info 85 [00:02:21.500] Projects: /a/b/projects/project/tsconfig.json +Info 82 [00:02:15.500] ----------------------------------------------- +Info 82 [00:02:16.500] Open files: +Info 82 [00:02:17.500] FileName: /a/b/projects/project/src/index.ts ProjectRootPath: /a/b/projects/proj +Info 82 [00:02:18.500] Projects: /a/b/projects/project/tsconfig.json After running timeout callbacks PolledWatches:: diff --git a/tests/baselines/reference/tsserver/configFileSearch/when-projectRootPath-is-not-present.js b/tests/baselines/reference/tsserver/configFileSearch/when-projectRootPath-is-not-present.js index 8e57555af5578..f3fc8f100f6a1 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 @@ -25,24 +25,23 @@ 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] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 4 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 5 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 6 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 7 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 8 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 9 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 10 [00:00:33.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 11 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 13 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 14 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 15 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 16 [00:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 17 [00:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 18 [00:00:41.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [00:00:42.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 20 [00:00:43.000] Files (2) +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 +Info 4 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 5 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 6 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 7 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 8 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 9 [00:00:32.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 10 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 12 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 13 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 14 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 15 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 16 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 17 [00:00:40.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 18 [00:00:41.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 19 [00:00:42.000] Files (2) /a/lib/lib.d.ts /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/x.js @@ -52,11 +51,11 @@ Info 20 [00:00:43.000] Files (2) x.js Root file specified for compilation -Info 21 [00:00:44.000] ----------------------------------------------- -Info 22 [00:00:45.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 22 [00:00:46.000] Files (2) +Info 20 [00:00:43.000] ----------------------------------------------- +Info 21 [00:00:44.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 21 [00:00:45.000] Files (2) -Info 22 [00:00:47.000] ----------------------------------------------- -Info 22 [00:00:48.000] Open files: -Info 22 [00:00:49.000] FileName: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/x.js ProjectRootPath: undefined -Info 22 [00:00:50.000] Projects: /dev/null/inferredProject1* \ No newline at end of file +Info 21 [00:00:46.000] ----------------------------------------------- +Info 21 [00:00:47.000] Open files: +Info 21 [00:00:48.000] FileName: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/x.js ProjectRootPath: undefined +Info 21 [00:00:49.000] Projects: /dev/null/inferredProject1* \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/configFileSearch/when-projectRootPath-is-present-but-file-is-not-from-project-root.js b/tests/baselines/reference/tsserver/configFileSearch/when-projectRootPath-is-present-but-file-is-not-from-project-root.js index 79225e0e9e855..2590b006d0639 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 @@ -25,24 +25,23 @@ 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] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 4 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 5 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 6 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 7 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 8 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 9 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 10 [00:00:33.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 11 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 13 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 14 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 15 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 16 [00:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 17 [00:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 18 [00:00:41.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [00:00:42.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 20 [00:00:43.000] Files (2) +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 +Info 4 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 5 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 6 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 7 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 8 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 9 [00:00:32.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 10 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 12 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 13 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 14 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/General/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 15 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 16 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /root/teams/VSCode68/Shared Documents/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 17 [00:00:40.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 18 [00:00:41.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 19 [00:00:42.000] Files (2) /a/lib/lib.d.ts /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/x.js @@ -52,11 +51,11 @@ Info 20 [00:00:43.000] Files (2) x.js Root file specified for compilation -Info 21 [00:00:44.000] ----------------------------------------------- -Info 22 [00:00:45.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 22 [00:00:46.000] Files (2) +Info 20 [00:00:43.000] ----------------------------------------------- +Info 21 [00:00:44.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 21 [00:00:45.000] Files (2) -Info 22 [00:00:47.000] ----------------------------------------------- -Info 22 [00:00:48.000] Open files: -Info 22 [00:00:49.000] FileName: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/x.js ProjectRootPath: /a/b -Info 22 [00:00:50.000] Projects: /dev/null/inferredProject1* \ No newline at end of file +Info 21 [00:00:46.000] ----------------------------------------------- +Info 21 [00:00:47.000] Open files: +Info 21 [00:00:48.000] FileName: /root/teams/VSCode68/Shared Documents/General/jt-ts-test-workspace/x.js ProjectRootPath: /a/b +Info 21 [00:00:49.000] Projects: /dev/null/inferredProject1* \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/configuredProjects/Open-ref-of-configured-project-when-open-file-gets-added-to-the-project-as-part-of-configured-file-update.js b/tests/baselines/reference/tsserver/configuredProjects/Open-ref-of-configured-project-when-open-file-gets-added-to-the-project-as-part-of-configured-file-update.js index e57c0cadbfeb5..23e0280b16ace 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 @@ -35,15 +35,14 @@ Info 5 [00:00:24.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 6 [00:00:25.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 7 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/b/file3.ts 500 undefined WatchType: Closed Script info -Info 8 [00:00:27.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 9 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/b/tsconfig.json WatchType: Missing file -Info 10 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 11 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 12 [00:00:31.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 13 [00:00:32.000] Project '/a/b/tsconfig.json' (Configured) -Info 14 [00:00:33.000] Files (2) +Info 6 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/b/file3.ts 500 undefined WatchType: Closed Script info +Info 7 [00:00:26.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 8 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/b/tsconfig.json WatchType: Missing file +Info 9 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 10 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 11 [00:00:30.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 12 [00:00:31.000] Project '/a/b/tsconfig.json' (Configured) +Info 13 [00:00:32.000] Files (2) /a/b/src/file1.ts /a/b/file3.ts @@ -53,107 +52,105 @@ Info 14 [00:00:33.000] Files (2) file3.ts Part of 'files' list in tsconfig.json -Info 15 [00:00:34.000] ----------------------------------------------- -Info 16 [00:00:35.000] Project '/a/b/tsconfig.json' (Configured) -Info 16 [00:00:36.000] Files (2) - -Info 16 [00:00:37.000] ----------------------------------------------- -Info 16 [00:00:38.000] Open files: -Info 16 [00:00:39.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined -Info 16 [00:00:40.000] Projects: /a/b/tsconfig.json -Info 16 [00:00:41.000] Search path: /a/b/src -Info 17 [00:00:42.000] For info: /a/b/src/file2.ts :: Config file name: /a/b/tsconfig.json -Info 18 [00:00:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 19 [00:00:44.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 20 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 21 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 22 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 23 [00:00:48.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:49.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 25 [00:00:50.000] Files (1) +Info 14 [00:00:33.000] ----------------------------------------------- +Info 15 [00:00:34.000] Project '/a/b/tsconfig.json' (Configured) +Info 15 [00:00:35.000] Files (2) + +Info 15 [00:00:36.000] ----------------------------------------------- +Info 15 [00:00:37.000] Open files: +Info 15 [00:00:38.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined +Info 15 [00:00:39.000] Projects: /a/b/tsconfig.json +Info 15 [00:00:40.000] Search path: /a/b/src +Info 16 [00:00:41.000] For info: /a/b/src/file2.ts :: Config file name: /a/b/tsconfig.json +Info 17 [00:00:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 18 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 19 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 20 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 21 [00:00:46.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 22 [00:00:47.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 23 [00:00:48.000] Files (1) /a/b/src/file2.ts file2.ts Root file specified for compilation -Info 26 [00:00:51.000] ----------------------------------------------- -Info 27 [00:00:52.000] Project '/a/b/tsconfig.json' (Configured) -Info 27 [00:00:53.000] Files (2) - -Info 27 [00:00:54.000] ----------------------------------------------- -Info 27 [00:00:55.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 27 [00:00:56.000] Files (1) - -Info 27 [00:00:57.000] ----------------------------------------------- -Info 27 [00:00:58.000] Open files: -Info 27 [00:00:59.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined -Info 27 [00:01:00.000] Projects: /a/b/tsconfig.json -Info 27 [00:01:01.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined -Info 27 [00:01:02.000] Projects: /dev/null/inferredProject1* -Info 27 [00:01:03.000] FileWatcher:: Close:: WatchInfo: /a/b/file3.ts 500 undefined WatchType: Closed Script info -Info 28 [00:01:04.000] Search path: /a/b -Info 29 [00:01:05.000] For info: /a/b/file3.ts :: Config file name: /a/b/tsconfig.json -Info 30 [00:01:06.000] Project '/a/b/tsconfig.json' (Configured) -Info 30 [00:01:07.000] Files (2) - -Info 30 [00:01:08.000] ----------------------------------------------- -Info 30 [00:01:09.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 30 [00:01:10.000] Files (1) - -Info 30 [00:01:11.000] ----------------------------------------------- -Info 30 [00:01:12.000] Open files: -Info 30 [00:01:13.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined -Info 30 [00:01:14.000] Projects: /a/b/tsconfig.json -Info 30 [00:01:15.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined -Info 30 [00:01:16.000] Projects: /dev/null/inferredProject1* -Info 30 [00:01:17.000] FileName: /a/b/file3.ts ProjectRootPath: undefined -Info 30 [00:01:18.000] Projects: /a/b/tsconfig.json -Info 30 [00:01:19.000] Search path: /a -Info 31 [00:01:20.000] For info: /a/file4.ts :: No config files found. -Info 32 [00:01:21.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 33 [00:01:22.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info 34 [00:01:23.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject2* WatchType: Missing file -Info 35 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 36 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 37 [00:01:26.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:27.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 39 [00:01:28.000] Files (1) +Info 24 [00:00:49.000] ----------------------------------------------- +Info 25 [00:00:50.000] Project '/a/b/tsconfig.json' (Configured) +Info 25 [00:00:51.000] Files (2) + +Info 25 [00:00:52.000] ----------------------------------------------- +Info 25 [00:00:53.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 25 [00:00:54.000] Files (1) + +Info 25 [00:00:55.000] ----------------------------------------------- +Info 25 [00:00:56.000] Open files: +Info 25 [00:00:57.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined +Info 25 [00:00:58.000] Projects: /a/b/tsconfig.json +Info 25 [00:00:59.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined +Info 25 [00:01:00.000] Projects: /dev/null/inferredProject1* +Info 25 [00:01:01.000] FileWatcher:: Close:: WatchInfo: /a/b/file3.ts 500 undefined WatchType: Closed Script info +Info 26 [00:01:02.000] Search path: /a/b +Info 27 [00:01:03.000] For info: /a/b/file3.ts :: Config file name: /a/b/tsconfig.json +Info 28 [00:01:04.000] Project '/a/b/tsconfig.json' (Configured) +Info 28 [00:01:05.000] Files (2) + +Info 28 [00:01:06.000] ----------------------------------------------- +Info 28 [00:01:07.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 28 [00:01:08.000] Files (1) + +Info 28 [00:01:09.000] ----------------------------------------------- +Info 28 [00:01:10.000] Open files: +Info 28 [00:01:11.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined +Info 28 [00:01:12.000] Projects: /a/b/tsconfig.json +Info 28 [00:01:13.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined +Info 28 [00:01:14.000] Projects: /dev/null/inferredProject1* +Info 28 [00:01:15.000] FileName: /a/b/file3.ts ProjectRootPath: undefined +Info 28 [00:01:16.000] Projects: /a/b/tsconfig.json +Info 28 [00:01:17.000] Search path: /a +Info 29 [00:01:18.000] For info: /a/file4.ts :: No config files found. +Info 30 [00:01:19.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* +Info 31 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject2* WatchType: Missing file +Info 32 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 33 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 34 [00:01:23.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:24.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 36 [00:01:25.000] Files (1) /a/file4.ts file4.ts Root file specified for compilation -Info 40 [00:01:29.000] ----------------------------------------------- -Info 41 [00:01:30.000] Project '/a/b/tsconfig.json' (Configured) -Info 41 [00:01:31.000] Files (2) - -Info 41 [00:01:32.000] ----------------------------------------------- -Info 41 [00:01:33.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 41 [00:01:34.000] Files (1) - -Info 41 [00:01:35.000] ----------------------------------------------- -Info 41 [00:01:36.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 41 [00:01:37.000] Files (1) - -Info 41 [00:01:38.000] ----------------------------------------------- -Info 41 [00:01:39.000] Open files: -Info 41 [00:01:40.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined -Info 41 [00:01:41.000] Projects: /a/b/tsconfig.json -Info 41 [00:01:42.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined -Info 41 [00:01:43.000] Projects: /dev/null/inferredProject1* -Info 41 [00:01:44.000] FileName: /a/b/file3.ts ProjectRootPath: undefined -Info 41 [00:01:45.000] Projects: /a/b/tsconfig.json -Info 41 [00:01:46.000] FileName: /a/file4.ts ProjectRootPath: undefined -Info 41 [00:01:47.000] Projects: /dev/null/inferredProject2* -Info 41 [00:01:51.000] FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 42 [00:01:52.000] Scheduled: /a/b/tsconfig.json -Info 43 [00:01:53.000] Search path: /a/b/src -Info 44 [00:01:54.000] For info: /a/b/src/file2.ts :: Config file name: /a/b/tsconfig.json -Info 45 [00:01:55.000] Scheduled: /a/b/tsconfig.json, Cancelled earlier one -Info 46 [00:01:56.000] Scheduled: *ensureProjectForOpenFiles* -Info 47 [00:01:57.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 37 [00:01:26.000] ----------------------------------------------- +Info 38 [00:01:27.000] Project '/a/b/tsconfig.json' (Configured) +Info 38 [00:01:28.000] Files (2) + +Info 38 [00:01:29.000] ----------------------------------------------- +Info 38 [00:01:30.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 38 [00:01:31.000] Files (1) + +Info 38 [00:01:32.000] ----------------------------------------------- +Info 38 [00:01:33.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 38 [00:01:34.000] Files (1) + +Info 38 [00:01:35.000] ----------------------------------------------- +Info 38 [00:01:36.000] Open files: +Info 38 [00:01:37.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined +Info 38 [00:01:38.000] Projects: /a/b/tsconfig.json +Info 38 [00:01:39.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined +Info 38 [00:01:40.000] Projects: /dev/null/inferredProject1* +Info 38 [00:01:41.000] FileName: /a/b/file3.ts ProjectRootPath: undefined +Info 38 [00:01:42.000] Projects: /a/b/tsconfig.json +Info 38 [00:01:43.000] FileName: /a/file4.ts ProjectRootPath: undefined +Info 38 [00:01:44.000] Projects: /dev/null/inferredProject2* +Info 38 [00:01:48.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 39 [00:01:49.000] Scheduled: /a/b/tsconfig.json +Info 40 [00:01:50.000] Search path: /a/b/src +Info 41 [00:01:51.000] For info: /a/b/src/file2.ts :: Config file name: /a/b/tsconfig.json +Info 42 [00:01:52.000] Scheduled: /a/b/tsconfig.json, Cancelled earlier one +Info 43 [00:01:53.000] Scheduled: *ensureProjectForOpenFiles* +Info 44 [00:01:54.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file Before running timeout callbacks //// [/a/b/tsconfig.json] {} @@ -175,9 +172,9 @@ FsWatches:: FsWatchesRecursive:: -Info 48 [00:01:58.000] Running: /a/b/tsconfig.json -Info 49 [00:01:59.000] Reloading configured project /a/b/tsconfig.json -Info 50 [00:02:00.000] Config: /a/b/tsconfig.json : { +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 : { "rootNames": [ "/a/b/file3.ts", "/a/b/src/file1.ts", @@ -187,13 +184,12 @@ Info 50 [00:02:00.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 51 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 52 [00:02:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 53 [00:02:03.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 54 [00:02:04.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 55 [00:02:05.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 56 [00:02:06.000] Project '/a/b/tsconfig.json' (Configured) -Info 57 [00:02:07.000] Files (3) +Info 48 [00:01:58.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 49 [00:01:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 50 [00:02:00.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 51 [00:02:01.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 52 [00:02:02.000] Project '/a/b/tsconfig.json' (Configured) +Info 53 [00:02:03.000] Files (3) /a/b/src/file1.ts /a/b/file3.ts /a/b/src/file2.ts @@ -206,61 +202,61 @@ Info 57 [00:02:07.000] Files (3) src/file2.ts Matched by default include pattern '**/*' -Info 58 [00:02:08.000] ----------------------------------------------- -Info 59 [00:02:09.000] Running: *ensureProjectForOpenFiles* -Info 60 [00:02:10.000] Before ensureProjectForOpenFiles: -Info 61 [00:02:11.000] Project '/a/b/tsconfig.json' (Configured) -Info 61 [00:02:12.000] Files (3) - -Info 61 [00:02:13.000] ----------------------------------------------- -Info 61 [00:02:14.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 61 [00:02:15.000] Files (1) - -Info 61 [00:02:16.000] ----------------------------------------------- -Info 61 [00:02:17.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 61 [00:02:18.000] Files (1) - -Info 61 [00:02:19.000] ----------------------------------------------- -Info 61 [00:02:20.000] Open files: -Info 61 [00:02:21.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined -Info 61 [00:02:22.000] Projects: /a/b/tsconfig.json -Info 61 [00:02:23.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined -Info 61 [00:02:24.000] Projects: /a/b/tsconfig.json -Info 61 [00:02:25.000] FileName: /a/b/file3.ts ProjectRootPath: undefined -Info 61 [00:02:26.000] Projects: /a/b/tsconfig.json -Info 61 [00:02:27.000] FileName: /a/file4.ts ProjectRootPath: undefined -Info 61 [00:02:28.000] Projects: /dev/null/inferredProject2* -Info 61 [00:02:29.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 62 [00:02:30.000] FileWatcher:: Close:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 63 [00:02:31.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 64 [00:02:32.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 65 [00:02:33.000] Files (0) +Info 54 [00:02:04.000] ----------------------------------------------- +Info 55 [00:02:05.000] Running: *ensureProjectForOpenFiles* +Info 56 [00:02:06.000] Before ensureProjectForOpenFiles: +Info 57 [00:02:07.000] Project '/a/b/tsconfig.json' (Configured) +Info 57 [00:02:08.000] Files (3) + +Info 57 [00:02:09.000] ----------------------------------------------- +Info 57 [00:02:10.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 57 [00:02:11.000] Files (1) + +Info 57 [00:02:12.000] ----------------------------------------------- +Info 57 [00:02:13.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 57 [00:02:14.000] Files (1) + +Info 57 [00:02:15.000] ----------------------------------------------- +Info 57 [00:02:16.000] Open files: +Info 57 [00:02:17.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined +Info 57 [00:02:18.000] Projects: /a/b/tsconfig.json +Info 57 [00:02:19.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined +Info 57 [00:02:20.000] Projects: /a/b/tsconfig.json +Info 57 [00:02:21.000] FileName: /a/b/file3.ts ProjectRootPath: undefined +Info 57 [00:02:22.000] Projects: /a/b/tsconfig.json +Info 57 [00:02:23.000] FileName: /a/file4.ts ProjectRootPath: undefined +Info 57 [00:02:24.000] Projects: /dev/null/inferredProject2* +Info 57 [00:02:25.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 58 [00:02:26.000] FileWatcher:: Close:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 59 [00:02:27.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:02:28.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 61 [00:02:29.000] Files (0) -Info 66 [00:02:34.000] ----------------------------------------------- -Info 67 [00:02:35.000] After ensureProjectForOpenFiles: -Info 68 [00:02:36.000] Project '/a/b/tsconfig.json' (Configured) -Info 68 [00:02:37.000] Files (3) - -Info 68 [00:02:38.000] ----------------------------------------------- -Info 68 [00:02:39.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 68 [00:02:40.000] Files (0) - -Info 68 [00:02:41.000] ----------------------------------------------- -Info 68 [00:02:42.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 68 [00:02:43.000] Files (1) - -Info 68 [00:02:44.000] ----------------------------------------------- -Info 68 [00:02:45.000] Open files: -Info 68 [00:02:46.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined -Info 68 [00:02:47.000] Projects: /a/b/tsconfig.json -Info 68 [00:02:48.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined -Info 68 [00:02:49.000] Projects: /a/b/tsconfig.json -Info 68 [00:02:50.000] FileName: /a/b/file3.ts ProjectRootPath: undefined -Info 68 [00:02:51.000] Projects: /a/b/tsconfig.json -Info 68 [00:02:52.000] FileName: /a/file4.ts ProjectRootPath: undefined -Info 68 [00:02:53.000] Projects: /dev/null/inferredProject2* +Info 62 [00:02:30.000] ----------------------------------------------- +Info 63 [00:02:31.000] After ensureProjectForOpenFiles: +Info 64 [00:02:32.000] Project '/a/b/tsconfig.json' (Configured) +Info 64 [00:02:33.000] Files (3) + +Info 64 [00:02:34.000] ----------------------------------------------- +Info 64 [00:02:35.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 64 [00:02:36.000] Files (0) + +Info 64 [00:02:37.000] ----------------------------------------------- +Info 64 [00:02:38.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 64 [00:02:39.000] Files (1) + +Info 64 [00:02:40.000] ----------------------------------------------- +Info 64 [00:02:41.000] Open files: +Info 64 [00:02:42.000] FileName: /a/b/src/file1.ts ProjectRootPath: undefined +Info 64 [00:02:43.000] Projects: /a/b/tsconfig.json +Info 64 [00:02:44.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined +Info 64 [00:02:45.000] Projects: /a/b/tsconfig.json +Info 64 [00:02:46.000] FileName: /a/b/file3.ts ProjectRootPath: undefined +Info 64 [00:02:47.000] Projects: /a/b/tsconfig.json +Info 64 [00:02:48.000] FileName: /a/file4.ts ProjectRootPath: undefined +Info 64 [00:02:49.000] Projects: /dev/null/inferredProject2* After running timeout callbacks PolledWatches:: @@ -281,108 +277,108 @@ FsWatchesRecursive:: /a/b: {} -Info 68 [00:02:54.000] FileWatcher:: Added:: WatchInfo: /a/b/src/file1.ts 500 undefined WatchType: Closed Script info -Info 69 [00:02:55.000] Project '/a/b/tsconfig.json' (Configured) -Info 69 [00:02:56.000] Files (3) - -Info 69 [00:02:57.000] ----------------------------------------------- -Info 69 [00:02:58.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 69 [00:02:59.000] Files (0) - -Info 69 [00:03:00.000] ----------------------------------------------- -Info 69 [00:03:01.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 69 [00:03:02.000] Files (1) - -Info 69 [00:03:03.000] ----------------------------------------------- -Info 69 [00:03:04.000] Open files: -Info 69 [00:03:05.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined -Info 69 [00:03:06.000] Projects: /a/b/tsconfig.json -Info 69 [00:03:07.000] FileName: /a/b/file3.ts ProjectRootPath: undefined -Info 69 [00:03:08.000] Projects: /a/b/tsconfig.json -Info 69 [00:03:09.000] FileName: /a/file4.ts ProjectRootPath: undefined -Info 69 [00:03:10.000] Projects: /dev/null/inferredProject2* -Info 69 [00:03:11.000] FileWatcher:: Added:: WatchInfo: /a/b/src/file2.ts 500 undefined WatchType: Closed Script info -Info 70 [00:03:12.000] Project '/a/b/tsconfig.json' (Configured) -Info 70 [00:03:13.000] Files (3) - -Info 70 [00:03:14.000] ----------------------------------------------- -Info 70 [00:03:15.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 70 [00:03:16.000] Files (0) - -Info 70 [00:03:17.000] ----------------------------------------------- -Info 70 [00:03:18.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 70 [00:03:19.000] Files (1) - -Info 70 [00:03:20.000] ----------------------------------------------- -Info 70 [00:03:21.000] Open files: -Info 70 [00:03:22.000] FileName: /a/b/file3.ts ProjectRootPath: undefined -Info 70 [00:03:23.000] Projects: /a/b/tsconfig.json -Info 70 [00:03:24.000] FileName: /a/file4.ts ProjectRootPath: undefined -Info 70 [00:03:25.000] Projects: /dev/null/inferredProject2* -Info 70 [00:03:26.000] FileWatcher:: Added:: WatchInfo: /a/file4.ts 500 undefined WatchType: Closed Script info -Info 71 [00:03:27.000] Project '/a/b/tsconfig.json' (Configured) -Info 71 [00:03:28.000] Files (3) - -Info 71 [00:03:29.000] ----------------------------------------------- -Info 71 [00:03:30.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 71 [00:03:31.000] Files (0) - -Info 71 [00:03:32.000] ----------------------------------------------- -Info 71 [00:03:33.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 71 [00:03:34.000] Files (1) - -Info 71 [00:03:35.000] ----------------------------------------------- -Info 71 [00:03:36.000] Open files: -Info 71 [00:03:37.000] FileName: /a/b/file3.ts ProjectRootPath: undefined -Info 71 [00:03:38.000] Projects: /a/b/tsconfig.json -Info 71 [00:03:39.000] FileWatcher:: Close:: WatchInfo: /a/file4.ts 500 undefined WatchType: Closed Script info -Info 72 [00:03:40.000] Search path: /a -Info 73 [00:03:41.000] For info: /a/file4.ts :: No config files found. -Info 74 [00:03:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info 75 [00:03:43.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 76 [00:03:44.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 77 [00:03:45.000] Files (1) +Info 64 [00:02:50.000] FileWatcher:: Added:: WatchInfo: /a/b/src/file1.ts 500 undefined WatchType: Closed Script info +Info 65 [00:02:51.000] Project '/a/b/tsconfig.json' (Configured) +Info 65 [00:02:52.000] Files (3) + +Info 65 [00:02:53.000] ----------------------------------------------- +Info 65 [00:02:54.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 65 [00:02:55.000] Files (0) + +Info 65 [00:02:56.000] ----------------------------------------------- +Info 65 [00:02:57.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 65 [00:02:58.000] Files (1) + +Info 65 [00:02:59.000] ----------------------------------------------- +Info 65 [00:03:00.000] Open files: +Info 65 [00:03:01.000] FileName: /a/b/src/file2.ts ProjectRootPath: undefined +Info 65 [00:03:02.000] Projects: /a/b/tsconfig.json +Info 65 [00:03:03.000] FileName: /a/b/file3.ts ProjectRootPath: undefined +Info 65 [00:03:04.000] Projects: /a/b/tsconfig.json +Info 65 [00:03:05.000] FileName: /a/file4.ts ProjectRootPath: undefined +Info 65 [00:03:06.000] Projects: /dev/null/inferredProject2* +Info 65 [00:03:07.000] FileWatcher:: Added:: WatchInfo: /a/b/src/file2.ts 500 undefined WatchType: Closed Script info +Info 66 [00:03:08.000] Project '/a/b/tsconfig.json' (Configured) +Info 66 [00:03:09.000] Files (3) + +Info 66 [00:03:10.000] ----------------------------------------------- +Info 66 [00:03:11.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 66 [00:03:12.000] Files (0) + +Info 66 [00:03:13.000] ----------------------------------------------- +Info 66 [00:03:14.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 66 [00:03:15.000] Files (1) + +Info 66 [00:03:16.000] ----------------------------------------------- +Info 66 [00:03:17.000] Open files: +Info 66 [00:03:18.000] FileName: /a/b/file3.ts ProjectRootPath: undefined +Info 66 [00:03:19.000] Projects: /a/b/tsconfig.json +Info 66 [00:03:20.000] FileName: /a/file4.ts ProjectRootPath: undefined +Info 66 [00:03:21.000] Projects: /dev/null/inferredProject2* +Info 66 [00:03:22.000] FileWatcher:: Added:: WatchInfo: /a/file4.ts 500 undefined WatchType: Closed Script info +Info 67 [00:03:23.000] Project '/a/b/tsconfig.json' (Configured) +Info 67 [00:03:24.000] Files (3) + +Info 67 [00:03:25.000] ----------------------------------------------- +Info 67 [00:03:26.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 67 [00:03:27.000] Files (0) + +Info 67 [00:03:28.000] ----------------------------------------------- +Info 67 [00:03:29.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 67 [00:03:30.000] Files (1) + +Info 67 [00:03:31.000] ----------------------------------------------- +Info 67 [00:03:32.000] Open files: +Info 67 [00:03:33.000] FileName: /a/b/file3.ts ProjectRootPath: undefined +Info 67 [00:03:34.000] Projects: /a/b/tsconfig.json +Info 67 [00:03:35.000] FileWatcher:: Close:: WatchInfo: /a/file4.ts 500 undefined WatchType: Closed Script info +Info 68 [00:03:36.000] Search path: /a +Info 69 [00:03:37.000] For info: /a/file4.ts :: No config files found. +Info 70 [00:03:38.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* +Info 71 [00:03:39.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 72 [00:03:40.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 73 [00:03:41.000] Files (1) /a/file4.ts file4.ts Root file specified for compilation -Info 78 [00:03:46.000] ----------------------------------------------- -Info 79 [00:03:47.000] `remove Project:: -Info 80 [00:03:48.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 81 [00:03:49.000] Files (0) +Info 74 [00:03:42.000] ----------------------------------------------- +Info 75 [00:03:43.000] `remove Project:: +Info 76 [00:03:44.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 77 [00:03:45.000] Files (0) -Info 82 [00:03:50.000] ----------------------------------------------- -Info 83 [00:03:51.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 84 [00:03:52.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 85 [00:03:53.000] Project '/a/b/tsconfig.json' (Configured) -Info 85 [00:03:54.000] Files (3) - -Info 85 [00:03:55.000] ----------------------------------------------- -Info 85 [00:03:56.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 85 [00:03:57.000] Files (1) - -Info 85 [00:03:58.000] ----------------------------------------------- -Info 85 [00:03:59.000] Open files: -Info 85 [00:04:00.000] FileName: /a/b/file3.ts ProjectRootPath: undefined -Info 85 [00:04:01.000] Projects: /a/b/tsconfig.json -Info 85 [00:04:02.000] FileName: /a/file4.ts ProjectRootPath: undefined -Info 85 [00:04:03.000] Projects: /dev/null/inferredProject2* -Info 85 [00:04:04.000] FileWatcher:: Added:: WatchInfo: /a/b/file3.ts 500 undefined WatchType: Closed Script info -Info 86 [00:04:05.000] Project '/a/b/tsconfig.json' (Configured) -Info 86 [00:04:06.000] Files (3) - -Info 86 [00:04:07.000] ----------------------------------------------- -Info 86 [00:04:08.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 86 [00:04:09.000] Files (1) - -Info 86 [00:04:10.000] ----------------------------------------------- -Info 86 [00:04:11.000] Open files: -Info 86 [00:04:12.000] FileName: /a/file4.ts ProjectRootPath: undefined -Info 86 [00:04:13.000] Projects: /dev/null/inferredProject2* +Info 78 [00:03:46.000] ----------------------------------------------- +Info 79 [00:03:47.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 80 [00:03:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 81 [00:03:49.000] Project '/a/b/tsconfig.json' (Configured) +Info 81 [00:03:50.000] Files (3) + +Info 81 [00:03:51.000] ----------------------------------------------- +Info 81 [00:03:52.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 81 [00:03:53.000] Files (1) + +Info 81 [00:03:54.000] ----------------------------------------------- +Info 81 [00:03:55.000] Open files: +Info 81 [00:03:56.000] FileName: /a/b/file3.ts ProjectRootPath: undefined +Info 81 [00:03:57.000] Projects: /a/b/tsconfig.json +Info 81 [00:03:58.000] FileName: /a/file4.ts ProjectRootPath: undefined +Info 81 [00:03:59.000] Projects: /dev/null/inferredProject2* +Info 81 [00:04:00.000] FileWatcher:: Added:: WatchInfo: /a/b/file3.ts 500 undefined WatchType: Closed Script info +Info 82 [00:04:01.000] Project '/a/b/tsconfig.json' (Configured) +Info 82 [00:04:02.000] Files (3) + +Info 82 [00:04:03.000] ----------------------------------------------- +Info 82 [00:04:04.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 82 [00:04:05.000] Files (1) + +Info 82 [00:04:06.000] ----------------------------------------------- +Info 82 [00:04:07.000] Open files: +Info 82 [00:04:08.000] FileName: /a/file4.ts ProjectRootPath: undefined +Info 82 [00:04:09.000] Projects: /dev/null/inferredProject2* File5 written //// [/file5.ts] let zz = 1; @@ -410,24 +406,23 @@ FsWatchesRecursive:: /a/b: {} -Info 86 [00:04:16.000] Search path: / -Info 87 [00:04:17.000] For info: /file5.ts :: No config files found. -Info 88 [00:04:18.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 89 [00:04:19.000] Starting updateGraphWorker: Project: /dev/null/inferredProject3* -Info 90 [00:04:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject3* WatchType: Missing file -Info 91 [00:04:21.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject3* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 92 [00:04:22.000] Project '/dev/null/inferredProject3*' (Inferred) -Info 93 [00:04:23.000] Files (1) +Info 82 [00:04:12.000] Search path: / +Info 83 [00:04:13.000] For info: /file5.ts :: No config files found. +Info 84 [00:04:14.000] Starting updateGraphWorker: Project: /dev/null/inferredProject3* +Info 85 [00:04:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject3* WatchType: Missing file +Info 86 [00:04:16.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject3* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 87 [00:04:17.000] Project '/dev/null/inferredProject3*' (Inferred) +Info 88 [00:04:18.000] Files (1) /file5.ts file5.ts Root file specified for compilation -Info 94 [00:04:24.000] ----------------------------------------------- -Info 95 [00:04:25.000] `remove Project:: -Info 96 [00:04:26.000] Project '/a/b/tsconfig.json' (Configured) -Info 97 [00:04:27.000] Files (3) +Info 89 [00:04:19.000] ----------------------------------------------- +Info 90 [00:04:20.000] `remove Project:: +Info 91 [00:04:21.000] Project '/a/b/tsconfig.json' (Configured) +Info 92 [00:04:22.000] Files (3) /a/b/src/file1.ts /a/b/file3.ts /a/b/src/file2.ts @@ -440,26 +435,26 @@ Info 97 [00:04:27.000] Files (3) src/file2.ts Matched by default include pattern '**/*' -Info 98 [00:04:28.000] ----------------------------------------------- -Info 99 [00:04:29.000] DirectoryWatcher:: Close:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 100 [00:04:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 101 [00:04:31.000] FileWatcher:: Close:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 102 [00:04:32.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 103 [00:04:33.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 104 [00:04:34.000] FileWatcher:: Close:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/b/tsconfig.json WatchType: Missing file -Info 105 [00:04:35.000] FileWatcher:: Close:: WatchInfo: /a/b/src/file1.ts 500 undefined WatchType: Closed Script info -Info 106 [00:04:36.000] FileWatcher:: Close:: WatchInfo: /a/b/file3.ts 500 undefined WatchType: Closed Script info -Info 107 [00:04:37.000] FileWatcher:: Close:: WatchInfo: /a/b/src/file2.ts 500 undefined WatchType: Closed Script info -Info 108 [00:04:38.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 108 [00:04:39.000] Files (1) - -Info 108 [00:04:40.000] ----------------------------------------------- -Info 108 [00:04:41.000] Project '/dev/null/inferredProject3*' (Inferred) -Info 108 [00:04:42.000] Files (1) - -Info 108 [00:04:43.000] ----------------------------------------------- -Info 108 [00:04:44.000] Open files: -Info 108 [00:04:45.000] FileName: /a/file4.ts ProjectRootPath: undefined -Info 108 [00:04:46.000] Projects: /dev/null/inferredProject2* -Info 108 [00:04:47.000] FileName: /file5.ts ProjectRootPath: undefined -Info 108 [00:04:48.000] Projects: /dev/null/inferredProject3* \ No newline at end of file +Info 93 [00:04:23.000] ----------------------------------------------- +Info 94 [00:04:24.000] DirectoryWatcher:: Close:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 95 [00:04:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 96 [00:04:26.000] FileWatcher:: Close:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 97 [00:04:27.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 98 [00:04:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 99 [00:04:29.000] FileWatcher:: Close:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/b/tsconfig.json WatchType: Missing file +Info 100 [00:04:30.000] FileWatcher:: Close:: WatchInfo: /a/b/src/file1.ts 500 undefined WatchType: Closed Script info +Info 101 [00:04:31.000] FileWatcher:: Close:: WatchInfo: /a/b/file3.ts 500 undefined WatchType: Closed Script info +Info 102 [00:04:32.000] FileWatcher:: Close:: WatchInfo: /a/b/src/file2.ts 500 undefined WatchType: Closed Script info +Info 103 [00:04:33.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 103 [00:04:34.000] Files (1) + +Info 103 [00:04:35.000] ----------------------------------------------- +Info 103 [00:04:36.000] Project '/dev/null/inferredProject3*' (Inferred) +Info 103 [00:04:37.000] Files (1) + +Info 103 [00:04:38.000] ----------------------------------------------- +Info 103 [00:04:39.000] Open files: +Info 103 [00:04:40.000] FileName: /a/file4.ts ProjectRootPath: undefined +Info 103 [00:04:41.000] Projects: /dev/null/inferredProject2* +Info 103 [00:04:42.000] FileName: /file5.ts ProjectRootPath: undefined +Info 103 [00:04:43.000] Projects: /dev/null/inferredProject3* \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-in-a-folder-with-loose-files.js b/tests/baselines/reference/tsserver/configuredProjects/add-and-then-remove-a-config-file-in-a-folder-with-loose-files.js index 44528cf9a0294..0f05f5f02ced0 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 @@ -28,16 +28,15 @@ 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] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 4 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 5 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 6 [00:00:27.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 7 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 8 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 9 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 10 [00:00:31.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 11 [00:00:32.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 12 [00:00:33.000] Files (2) +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 +Info 4 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 5 [00:00:26.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 6 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 7 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 8 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 9 [00:00:30.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 10 [00:00:31.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 11 [00:00:32.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/commonFile1.ts @@ -47,23 +46,22 @@ Info 12 [00:00:33.000] Files (2) commonFile1.ts Root file specified for compilation -Info 13 [00:00:34.000] ----------------------------------------------- -Info 14 [00:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 14 [00:00:36.000] Files (2) - -Info 14 [00:00:37.000] ----------------------------------------------- -Info 14 [00:00:38.000] Open files: -Info 14 [00:00:39.000] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined -Info 14 [00:00:40.000] Projects: /dev/null/inferredProject1* -Info 14 [00:00:41.000] Search path: /user/username/projects/myproject -Info 15 [00:00:42.000] For info: /user/username/projects/myproject/commonFile2.ts :: No config files found. -Info 16 [00:00:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 17 [00:00:44.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info 18 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 19 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 20 [00:00:47.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 21 [00:00:48.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 22 [00:00:49.000] Files (2) +Info 12 [00:00:33.000] ----------------------------------------------- +Info 13 [00:00:34.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 13 [00:00:35.000] Files (2) + +Info 13 [00:00:36.000] ----------------------------------------------- +Info 13 [00:00:37.000] Open files: +Info 13 [00:00:38.000] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined +Info 13 [00:00:39.000] Projects: /dev/null/inferredProject1* +Info 13 [00:00:40.000] Search path: /user/username/projects/myproject +Info 14 [00:00:41.000] For info: /user/username/projects/myproject/commonFile2.ts :: No config files found. +Info 15 [00:00:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* +Info 16 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 17 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 18 [00:00:45.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:46.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 20 [00:00:47.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/commonFile2.ts @@ -73,37 +71,37 @@ Info 22 [00:00:49.000] Files (2) commonFile2.ts Root file specified for compilation -Info 23 [00:00:50.000] ----------------------------------------------- -Info 24 [00:00:51.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 24 [00:00:52.000] Files (2) - -Info 24 [00:00:53.000] ----------------------------------------------- -Info 24 [00:00:54.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 24 [00:00:55.000] Files (2) - -Info 24 [00:00:56.000] ----------------------------------------------- -Info 24 [00:00:57.000] Open files: -Info 24 [00:00:58.000] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined -Info 24 [00:00:59.000] Projects: /dev/null/inferredProject1* -Info 24 [00:01:00.000] FileName: /user/username/projects/myproject/commonFile2.ts ProjectRootPath: undefined -Info 24 [00:01:01.000] Projects: /dev/null/inferredProject2* -Info 24 [00:01:04.000] FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 25 [00:01:05.000] Search path: /user/username/projects/myproject -Info 26 [00:01:06.000] For info: /user/username/projects/myproject/commonFile1.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 27 [00:01:07.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 28 [00:01:08.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 29 [00:01:09.000] Search path: /user/username/projects/myproject -Info 30 [00:01:10.000] For info: /user/username/projects/myproject/commonFile2.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 31 [00:01:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 32 [00:01:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 33 [00:01:13.000] FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 34 [00:01:14.000] Search path: /user/username/projects/myproject -Info 35 [00:01:15.000] For info: /user/username/projects/myproject/commonFile1.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 36 [00:01:16.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 37 [00:01:17.000] Search path: /user/username/projects/myproject -Info 38 [00:01:18.000] For info: /user/username/projects/myproject/commonFile2.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 39 [00:01:19.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 40 [00:01:20.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 21 [00:00:48.000] ----------------------------------------------- +Info 22 [00:00:49.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 22 [00:00:50.000] Files (2) + +Info 22 [00:00:51.000] ----------------------------------------------- +Info 22 [00:00:52.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 22 [00:00:53.000] Files (2) + +Info 22 [00:00:54.000] ----------------------------------------------- +Info 22 [00:00:55.000] Open files: +Info 22 [00:00:56.000] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined +Info 22 [00:00:57.000] Projects: /dev/null/inferredProject1* +Info 22 [00:00:58.000] FileName: /user/username/projects/myproject/commonFile2.ts ProjectRootPath: undefined +Info 22 [00:00:59.000] Projects: /dev/null/inferredProject2* +Info 22 [00:01:02.000] FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 23 [00:01:03.000] Search path: /user/username/projects/myproject +Info 24 [00:01:04.000] For info: /user/username/projects/myproject/commonFile1.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 25 [00:01:05.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 26 [00:01:06.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 27 [00:01:07.000] Search path: /user/username/projects/myproject +Info 28 [00:01:08.000] For info: /user/username/projects/myproject/commonFile2.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 29 [00:01:09.000] Scheduled: *ensureProjectForOpenFiles* +Info 30 [00:01:10.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 31 [00:01:11.000] FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 32 [00:01:12.000] Search path: /user/username/projects/myproject +Info 33 [00:01:13.000] For info: /user/username/projects/myproject/commonFile1.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 34 [00:01:14.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 35 [00:01:15.000] Search path: /user/username/projects/myproject +Info 36 [00:01:16.000] For info: /user/username/projects/myproject/commonFile2.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 37 [00:01:17.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 38 [00:01:18.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/tsconfig.json] { @@ -125,9 +123,9 @@ FsWatches:: FsWatchesRecursive:: -Info 41 [00:01:21.000] Running: /user/username/projects/myproject/tsconfig.json -Info 42 [00:01:22.000] Loading configured project /user/username/projects/myproject/tsconfig.json -Info 43 [00:01:23.000] Config: /user/username/projects/myproject/tsconfig.json : { +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 : { "rootNames": [ "/user/username/projects/myproject/commonFile1.ts" ], @@ -135,13 +133,12 @@ Info 43 [00:01:23.000] Config: /user/username/projects/myproject/tsconfig.json "configFilePath": "/user/username/projects/myproject/tsconfig.json" } } -Info 44 [00:01:24.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 45 [00:01:25.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 46 [00:01:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 47 [00:01:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 48 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 49 [00:01:29.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 50 [00:01:30.000] Files (2) +Info 42 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 43 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 44 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 45 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 46 [00:01:26.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 47 [00:01:27.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/commonFile1.ts @@ -151,52 +148,52 @@ Info 50 [00:01:30.000] Files (2) commonFile1.ts Part of 'files' list in tsconfig.json -Info 51 [00:01:31.000] ----------------------------------------------- -Info 52 [00:01:32.000] Running: *ensureProjectForOpenFiles* -Info 53 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 54 [00:01:34.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 54 [00:01:35.000] Files (2) - -Info 54 [00:01:36.000] ----------------------------------------------- -Info 54 [00:01:37.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 54 [00:01:38.000] Files (2) - -Info 54 [00:01:39.000] ----------------------------------------------- -Info 54 [00:01:40.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 54 [00:01:41.000] Files (2) - -Info 54 [00:01:42.000] ----------------------------------------------- -Info 54 [00:01:43.000] Open files: -Info 54 [00:01:44.000] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined -Info 54 [00:01:45.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 54 [00:01:46.000] FileName: /user/username/projects/myproject/commonFile2.ts ProjectRootPath: undefined -Info 54 [00:01:47.000] Projects: /dev/null/inferredProject2* -Info 54 [00:01:48.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 55 [00:01:49.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 56 [00:01:50.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 57 [00:01:51.000] Files (0) +Info 48 [00:01:28.000] ----------------------------------------------- +Info 49 [00:01:29.000] Running: *ensureProjectForOpenFiles* +Info 50 [00:01:30.000] Before ensureProjectForOpenFiles: +Info 51 [00:01:31.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 51 [00:01:32.000] Files (2) + +Info 51 [00:01:33.000] ----------------------------------------------- +Info 51 [00:01:34.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 51 [00:01:35.000] Files (2) + +Info 51 [00:01:36.000] ----------------------------------------------- +Info 51 [00:01:37.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 51 [00:01:38.000] Files (2) + +Info 51 [00:01:39.000] ----------------------------------------------- +Info 51 [00:01:40.000] Open files: +Info 51 [00:01:41.000] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined +Info 51 [00:01:42.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 51 [00:01:43.000] FileName: /user/username/projects/myproject/commonFile2.ts ProjectRootPath: undefined +Info 51 [00:01:44.000] Projects: /dev/null/inferredProject2* +Info 51 [00:01:45.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 52 [00:01:46.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 53 [00:01:47.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 54 [00:01:48.000] Files (0) -Info 58 [00:01:52.000] ----------------------------------------------- -Info 59 [00:01:53.000] After ensureProjectForOpenFiles: -Info 60 [00:01:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 60 [00:01:55.000] Files (2) - -Info 60 [00:01:56.000] ----------------------------------------------- -Info 60 [00:01:57.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 60 [00:01:58.000] Files (0) - -Info 60 [00:01:59.000] ----------------------------------------------- -Info 60 [00:02:00.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 60 [00:02:01.000] Files (2) - -Info 60 [00:02:02.000] ----------------------------------------------- -Info 60 [00:02:03.000] Open files: -Info 60 [00:02:04.000] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined -Info 60 [00:02:05.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 60 [00:02:06.000] FileName: /user/username/projects/myproject/commonFile2.ts ProjectRootPath: undefined -Info 60 [00:02:07.000] Projects: /dev/null/inferredProject2* +Info 55 [00:01:49.000] ----------------------------------------------- +Info 56 [00:01:50.000] After ensureProjectForOpenFiles: +Info 57 [00:01:51.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 57 [00:01:52.000] Files (2) + +Info 57 [00:01:53.000] ----------------------------------------------- +Info 57 [00:01:54.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 57 [00:01:55.000] Files (0) + +Info 57 [00:01:56.000] ----------------------------------------------- +Info 57 [00:01:57.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 57 [00:01:58.000] Files (2) + +Info 57 [00:01:59.000] ----------------------------------------------- +Info 57 [00:02:00.000] Open files: +Info 57 [00:02:01.000] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined +Info 57 [00:02:02.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 57 [00:02:03.000] FileName: /user/username/projects/myproject/commonFile2.ts ProjectRootPath: undefined +Info 57 [00:02:04.000] Projects: /dev/null/inferredProject2* After checking timeout queue length (2) and running PolledWatches:: @@ -213,10 +210,10 @@ FsWatches:: FsWatchesRecursive:: -Info 60 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 61 [00:02:10.000] `remove Project:: -Info 62 [00:02:11.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 63 [00:02:12.000] Files (2) +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) +Info 60 [00:02:09.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/commonFile1.ts @@ -226,15 +223,15 @@ Info 63 [00:02:12.000] Files (2) commonFile1.ts Part of 'files' list in tsconfig.json -Info 64 [00:02:13.000] ----------------------------------------------- -Info 65 [00:02:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 66 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 67 [00:02:16.000] Search path: /user/username/projects/myproject -Info 68 [00:02:17.000] For info: /user/username/projects/myproject/commonFile1.ts :: No config files found. -Info 69 [00:02:18.000] Search path: /user/username/projects/myproject -Info 70 [00:02:19.000] For info: /user/username/projects/myproject/commonFile2.ts :: No config files found. -Info 71 [00:02:20.000] Scheduled: *ensureProjectForOpenFiles* -Info 72 [00:02:21.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 61 [00:02:10.000] ----------------------------------------------- +Info 62 [00:02:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 63 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 64 [00:02:13.000] Search path: /user/username/projects/myproject +Info 65 [00:02:14.000] For info: /user/username/projects/myproject/commonFile1.ts :: No config files found. +Info 66 [00:02:15.000] Search path: /user/username/projects/myproject +Info 67 [00:02:16.000] For info: /user/username/projects/myproject/commonFile2.ts :: No config files found. +Info 68 [00:02:17.000] Scheduled: *ensureProjectForOpenFiles* +Info 69 [00:02:18.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root Before checking timeout queue length (1) and running //// [/user/username/projects/myproject/tsconfig.json] deleted @@ -252,25 +249,25 @@ FsWatches:: FsWatchesRecursive:: -Info 73 [00:02:22.500] Running: *ensureProjectForOpenFiles* -Info 74 [00:02:23.500] Before ensureProjectForOpenFiles: -Info 75 [00:02:24.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 75 [00:02:25.500] Files (0) - -Info 75 [00:02:26.500] ----------------------------------------------- -Info 75 [00:02:27.500] Project '/dev/null/inferredProject2*' (Inferred) -Info 75 [00:02:28.500] Files (2) - -Info 75 [00:02:29.500] ----------------------------------------------- -Info 75 [00:02:30.500] Open files: -Info 75 [00:02:31.500] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined -Info 75 [00:02:32.500] Projects: -Info 75 [00:02:33.500] FileName: /user/username/projects/myproject/commonFile2.ts ProjectRootPath: undefined -Info 75 [00:02:34.500] Projects: /dev/null/inferredProject2* -Info 75 [00:02:35.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 76 [00:02:36.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 77 [00:02:37.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 78 [00:02:38.500] Files (2) +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) +Info 72 [00:02:22.500] Files (0) + +Info 72 [00:02:23.500] ----------------------------------------------- +Info 72 [00:02:24.500] Project '/dev/null/inferredProject2*' (Inferred) +Info 72 [00:02:25.500] Files (2) + +Info 72 [00:02:26.500] ----------------------------------------------- +Info 72 [00:02:27.500] Open files: +Info 72 [00:02:28.500] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined +Info 72 [00:02:29.500] Projects: +Info 72 [00:02:30.500] FileName: /user/username/projects/myproject/commonFile2.ts ProjectRootPath: undefined +Info 72 [00:02:31.500] Projects: /dev/null/inferredProject2* +Info 72 [00:02:32.500] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 73 [00:02:33.500] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 74 [00:02:34.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 75 [00:02:35.500] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/commonFile1.ts @@ -280,21 +277,21 @@ Info 78 [00:02:38.500] Files (2) commonFile1.ts Root file specified for compilation -Info 79 [00:02:39.500] ----------------------------------------------- -Info 80 [00:02:40.500] After ensureProjectForOpenFiles: -Info 81 [00:02:41.500] Project '/dev/null/inferredProject1*' (Inferred) -Info 81 [00:02:42.500] Files (2) - -Info 81 [00:02:43.500] ----------------------------------------------- -Info 81 [00:02:44.500] Project '/dev/null/inferredProject2*' (Inferred) -Info 81 [00:02:45.500] Files (2) - -Info 81 [00:02:46.500] ----------------------------------------------- -Info 81 [00:02:47.500] Open files: -Info 81 [00:02:48.500] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined -Info 81 [00:02:49.500] Projects: /dev/null/inferredProject1* -Info 81 [00:02:50.500] FileName: /user/username/projects/myproject/commonFile2.ts ProjectRootPath: undefined -Info 81 [00:02:51.500] Projects: /dev/null/inferredProject2* +Info 76 [00:02:36.500] ----------------------------------------------- +Info 77 [00:02:37.500] After ensureProjectForOpenFiles: +Info 78 [00:02:38.500] Project '/dev/null/inferredProject1*' (Inferred) +Info 78 [00:02:39.500] Files (2) + +Info 78 [00:02:40.500] ----------------------------------------------- +Info 78 [00:02:41.500] Project '/dev/null/inferredProject2*' (Inferred) +Info 78 [00:02:42.500] Files (2) + +Info 78 [00:02:43.500] ----------------------------------------------- +Info 78 [00:02:44.500] Open files: +Info 78 [00:02:45.500] FileName: /user/username/projects/myproject/commonFile1.ts ProjectRootPath: undefined +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:: 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 e0955ccf51632..9b523c507f9a3 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 @@ -40,14 +40,13 @@ Info 5 [00:00:20.000] Config: /a/b/tsconfig.json : { } Info 6 [00:00:21.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory Info 7 [00:00:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:24.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 10 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:26.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 12 [00:00:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 13 [00:00:28.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 14 [00:00:29.000] Project '/a/b/tsconfig.json' (Configured) -Info 15 [00:00:30.000] Files (2) +Info 8 [00:00:23.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 9 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:25.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 11 [00:00:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 12 [00:00:27.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 13 [00:00:28.000] Project '/a/b/tsconfig.json' (Configured) +Info 14 [00:00:29.000] Files (2) /a/lib/lib.d.ts /a/b/commonFile1.ts @@ -57,18 +56,18 @@ Info 15 [00:00:30.000] Files (2) commonFile1.ts Matched by default include pattern '**/*' -Info 16 [00:00:31.000] ----------------------------------------------- -Info 17 [00:00:32.000] Project '/a/b/tsconfig.json' (Configured) -Info 17 [00:00:33.000] Files (2) - -Info 17 [00:00:34.000] ----------------------------------------------- -Info 17 [00:00:35.000] Open files: -Info 17 [00:00:36.000] FileName: /a/b/commonFile1.ts ProjectRootPath: undefined -Info 17 [00:00:37.000] Projects: /a/b/tsconfig.json -Info 17 [00:00:40.000] DirectoryWatcher:: Triggered with /a/b/commonFile2.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 18 [00:00:41.000] Scheduled: /a/b/tsconfig.json -Info 19 [00:00:42.000] Scheduled: *ensureProjectForOpenFiles* -Info 20 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/commonFile2.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:30.000] ----------------------------------------------- +Info 16 [00:00:31.000] Project '/a/b/tsconfig.json' (Configured) +Info 16 [00:00:32.000] Files (2) + +Info 16 [00:00:33.000] ----------------------------------------------- +Info 16 [00:00:34.000] Open files: +Info 16 [00:00:35.000] FileName: /a/b/commonFile1.ts ProjectRootPath: undefined +Info 16 [00:00:36.000] Projects: /a/b/tsconfig.json +Info 16 [00:00:39.000] DirectoryWatcher:: Triggered with /a/b/commonFile2.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 17 [00:00:40.000] Scheduled: /a/b/tsconfig.json +Info 18 [00:00:41.000] Scheduled: *ensureProjectForOpenFiles* +Info 19 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/commonFile2.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (2) and running //// [/a/b/commonFile2.ts] let y = 1 @@ -88,12 +87,12 @@ FsWatchesRecursive:: /a/b: {} -Info 21 [00:00:44.000] Running: /a/b/tsconfig.json -Info 22 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /a/b/commonFile2.ts 500 undefined WatchType: Closed Script info -Info 23 [00:00:46.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 24 [00:00:47.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 25 [00:00:48.000] Project '/a/b/tsconfig.json' (Configured) -Info 26 [00:00:49.000] Files (3) +Info 20 [00:00:43.000] Running: /a/b/tsconfig.json +Info 21 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /a/b/commonFile2.ts 500 undefined WatchType: Closed Script info +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: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:47.000] Project '/a/b/tsconfig.json' (Configured) +Info 25 [00:00:48.000] Files (3) /a/lib/lib.d.ts /a/b/commonFile1.ts /a/b/commonFile2.ts @@ -106,24 +105,24 @@ Info 26 [00:00:49.000] Files (3) commonFile2.ts Matched by default include pattern '**/*' -Info 27 [00:00:50.000] ----------------------------------------------- -Info 28 [00:00:51.000] Running: *ensureProjectForOpenFiles* -Info 29 [00:00:52.000] Before ensureProjectForOpenFiles: -Info 30 [00:00:53.000] Project '/a/b/tsconfig.json' (Configured) -Info 30 [00:00:54.000] Files (3) - -Info 30 [00:00:55.000] ----------------------------------------------- -Info 30 [00:00:56.000] Open files: -Info 30 [00:00:57.000] FileName: /a/b/commonFile1.ts ProjectRootPath: undefined -Info 30 [00:00:58.000] Projects: /a/b/tsconfig.json -Info 30 [00:00:59.000] After ensureProjectForOpenFiles: -Info 31 [00:01:00.000] Project '/a/b/tsconfig.json' (Configured) -Info 31 [00:01:01.000] Files (3) - -Info 31 [00:01:02.000] ----------------------------------------------- -Info 31 [00:01:03.000] Open files: -Info 31 [00:01:04.000] FileName: /a/b/commonFile1.ts ProjectRootPath: undefined -Info 31 [00:01:05.000] Projects: /a/b/tsconfig.json +Info 26 [00:00:49.000] ----------------------------------------------- +Info 27 [00:00:50.000] Running: *ensureProjectForOpenFiles* +Info 28 [00:00:51.000] Before ensureProjectForOpenFiles: +Info 29 [00:00:52.000] Project '/a/b/tsconfig.json' (Configured) +Info 29 [00:00:53.000] Files (3) + +Info 29 [00:00:54.000] ----------------------------------------------- +Info 29 [00:00:55.000] Open files: +Info 29 [00:00:56.000] FileName: /a/b/commonFile1.ts ProjectRootPath: undefined +Info 29 [00:00:57.000] Projects: /a/b/tsconfig.json +Info 29 [00:00:58.000] After ensureProjectForOpenFiles: +Info 30 [00:00:59.000] Project '/a/b/tsconfig.json' (Configured) +Info 30 [00:01:00.000] Files (3) + +Info 30 [00:01:01.000] ----------------------------------------------- +Info 30 [00:01:02.000] Open files: +Info 30 [00:01:03.000] FileName: /a/b/commonFile1.ts ProjectRootPath: undefined +Info 30 [00:01:04.000] Projects: /a/b/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/configuredProjects/changed-module-resolution-reflected-when-specifying-files-list.js b/tests/baselines/reference/tsserver/configuredProjects/changed-module-resolution-reflected-when-specifying-files-list.js index eecec7bdbaa56..7fdebd2c04c75 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 @@ -42,17 +42,16 @@ Info 5 [00:00:22.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 6 [00:00:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 7 [00:00:24.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 8 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/file2.ts 500 undefined WatchType: Closed Script info -Info 9 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 10 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 11 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 13 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [00:00:31.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [00:00:32.000] Project '/a/b/tsconfig.json' (Configured) -Info 16 [00:00:33.000] Files (3) +Info 6 [00:00:23.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 7 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /a/file2.ts 500 undefined WatchType: Closed Script info +Info 8 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 9 [00:00:26.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 10 [00:00:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 12 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 13 [00:00:30.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 14 [00:00:31.000] Project '/a/b/tsconfig.json' (Configured) +Info 15 [00:00:32.000] Files (3) /a/lib/lib.d.ts /a/file2.ts /a/b/file1.ts @@ -65,17 +64,17 @@ Info 16 [00:00:33.000] Files (3) file1.ts Part of 'files' list in tsconfig.json -Info 17 [00:00:34.000] ----------------------------------------------- -Info 18 [00:00:35.000] Project '/a/b/tsconfig.json' (Configured) -Info 18 [00:00:36.000] Files (3) - -Info 18 [00:00:37.000] ----------------------------------------------- -Info 18 [00:00:38.000] Open files: -Info 18 [00:00:39.000] FileName: /a/b/file1.ts ProjectRootPath: undefined -Info 18 [00:00:40.000] Projects: /a/b/tsconfig.json -Info 18 [00:00:43.000] DirectoryWatcher:: Triggered with /a/b/file2.ts :: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [00:00:44.000] Scheduled: /a/b/tsconfig.jsonFailedLookupInvalidation -Info 20 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/file2.ts :: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:33.000] ----------------------------------------------- +Info 17 [00:00:34.000] Project '/a/b/tsconfig.json' (Configured) +Info 17 [00:00:35.000] Files (3) + +Info 17 [00:00:36.000] ----------------------------------------------- +Info 17 [00:00:37.000] Open files: +Info 17 [00:00:38.000] FileName: /a/b/file1.ts ProjectRootPath: undefined +Info 17 [00:00:39.000] Projects: /a/b/tsconfig.json +Info 17 [00:00:42.000] DirectoryWatcher:: Triggered with /a/b/file2.ts :: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:43.000] Scheduled: /a/b/tsconfig.jsonFailedLookupInvalidation +Info 19 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/file2.ts :: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations Before running timeout callbacks //// [/a/b/file2.ts] export classc { method2() { return 10; } } @@ -97,9 +96,9 @@ FsWatches:: FsWatchesRecursive:: -Info 21 [00:00:46.000] Running: /a/b/tsconfig.jsonFailedLookupInvalidation -Info 22 [00:00:47.000] Scheduled: /a/b/tsconfig.json -Info 23 [00:00:48.000] Scheduled: *ensureProjectForOpenFiles* +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:: @@ -136,14 +135,14 @@ FsWatches:: FsWatchesRecursive:: -Info 24 [00:00:49.000] Running: /a/b/tsconfig.json -Info 25 [00:00:50.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 26 [00:00:51.000] FileWatcher:: Added:: WatchInfo: /a/b/file2.ts 500 undefined WatchType: Closed Script info -Info 27 [00:00:52.000] DirectoryWatcher:: Close:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 28 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 29 [00:00:54.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 30 [00:00:55.000] Project '/a/b/tsconfig.json' (Configured) -Info 31 [00:00:56.000] Files (3) +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 +Info 26 [00:00:51.000] DirectoryWatcher:: Close:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 28 [00:00:53.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 29 [00:00:54.000] Project '/a/b/tsconfig.json' (Configured) +Info 30 [00:00:55.000] Files (3) /a/lib/lib.d.ts /a/b/file2.ts /a/b/file1.ts @@ -156,24 +155,24 @@ Info 31 [00:00:56.000] Files (3) file1.ts Part of 'files' list in tsconfig.json -Info 32 [00:00:57.000] ----------------------------------------------- -Info 33 [00:00:58.000] Running: *ensureProjectForOpenFiles* -Info 34 [00:00:59.000] Before ensureProjectForOpenFiles: -Info 35 [00:01:00.000] Project '/a/b/tsconfig.json' (Configured) -Info 35 [00:01:01.000] Files (3) - -Info 35 [00:01:02.000] ----------------------------------------------- -Info 35 [00:01:03.000] Open files: -Info 35 [00:01:04.000] FileName: /a/b/file1.ts ProjectRootPath: undefined -Info 35 [00:01:05.000] Projects: /a/b/tsconfig.json -Info 35 [00:01:06.000] After ensureProjectForOpenFiles: -Info 36 [00:01:07.000] Project '/a/b/tsconfig.json' (Configured) -Info 36 [00:01:08.000] Files (3) - -Info 36 [00:01:09.000] ----------------------------------------------- -Info 36 [00:01:10.000] Open files: -Info 36 [00:01:11.000] FileName: /a/b/file1.ts ProjectRootPath: undefined -Info 36 [00:01:12.000] Projects: /a/b/tsconfig.json +Info 31 [00:00:56.000] ----------------------------------------------- +Info 32 [00:00:57.000] Running: *ensureProjectForOpenFiles* +Info 33 [00:00:58.000] Before ensureProjectForOpenFiles: +Info 34 [00:00:59.000] Project '/a/b/tsconfig.json' (Configured) +Info 34 [00:01:00.000] Files (3) + +Info 34 [00:01:01.000] ----------------------------------------------- +Info 34 [00:01:02.000] Open files: +Info 34 [00:01:03.000] FileName: /a/b/file1.ts ProjectRootPath: undefined +Info 34 [00:01:04.000] Projects: /a/b/tsconfig.json +Info 34 [00:01:05.000] After ensureProjectForOpenFiles: +Info 35 [00:01:06.000] Project '/a/b/tsconfig.json' (Configured) +Info 35 [00:01:07.000] Files (3) + +Info 35 [00:01:08.000] ----------------------------------------------- +Info 35 [00:01:09.000] Open files: +Info 35 [00:01:10.000] FileName: /a/b/file1.ts ProjectRootPath: undefined +Info 35 [00:01:11.000] Projects: /a/b/tsconfig.json After running timeout callbacks PolledWatches:: @@ -192,16 +191,16 @@ FsWatches:: FsWatchesRecursive:: -Info 36 [00:01:13.000] FileWatcher:: Close:: WatchInfo: /a/b/file2.ts 500 undefined WatchType: Closed Script info -Info 37 [00:01:14.000] Search path: /a/b -Info 38 [00:01:15.000] For info: /a/b/file2.ts :: Config file name: /a/b/tsconfig.json -Info 39 [00:01:16.000] FileWatcher:: Close:: WatchInfo: /a/file2.ts 500 undefined WatchType: Closed Script info -Info 40 [00:01:17.000] Project '/a/b/tsconfig.json' (Configured) -Info 40 [00:01:18.000] Files (3) - -Info 40 [00:01:19.000] ----------------------------------------------- -Info 40 [00:01:20.000] Open files: -Info 40 [00:01:21.000] FileName: /a/b/file1.ts ProjectRootPath: undefined -Info 40 [00:01:22.000] Projects: /a/b/tsconfig.json -Info 40 [00:01:23.000] FileName: /a/b/file2.ts ProjectRootPath: undefined -Info 40 [00:01:24.000] Projects: /a/b/tsconfig.json \ No newline at end of file +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 +Info 37 [00:01:14.000] For info: /a/b/file2.ts :: Config file name: /a/b/tsconfig.json +Info 38 [00:01:15.000] FileWatcher:: Close:: WatchInfo: /a/file2.ts 500 undefined WatchType: Closed Script info +Info 39 [00:01:16.000] Project '/a/b/tsconfig.json' (Configured) +Info 39 [00:01:17.000] Files (3) + +Info 39 [00:01:18.000] ----------------------------------------------- +Info 39 [00:01:19.000] Open files: +Info 39 [00:01:20.000] FileName: /a/b/file1.ts ProjectRootPath: undefined +Info 39 [00:01:21.000] Projects: /a/b/tsconfig.json +Info 39 [00:01:22.000] FileName: /a/b/file2.ts ProjectRootPath: undefined +Info 39 [00:01:23.000] Projects: /a/b/tsconfig.json \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/configuredProjects/create-configured-project-with-the-file-list.js b/tests/baselines/reference/tsserver/configuredProjects/create-configured-project-with-the-file-list.js index 07c2725919623..f73894c132556 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 @@ -51,15 +51,14 @@ Info 5 [00:00:26.000] Config: /a/b/tsconfig.json : { } Info 6 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory Info 7 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:29.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /a/b/f2.ts 500 undefined WatchType: Closed Script info -Info 10 [00:00:31.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 11 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 13 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [00:00:35.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [00:00:36.000] Project '/a/b/tsconfig.json' (Configured) -Info 16 [00:00:37.000] Files (3) +Info 8 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /a/b/f2.ts 500 undefined WatchType: Closed Script info +Info 9 [00:00:30.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 10 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 12 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 13 [00:00:34.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 14 [00:00:35.000] Project '/a/b/tsconfig.json' (Configured) +Info 15 [00:00:36.000] Files (3) /a/lib/lib.d.ts /a/b/f1.ts /a/b/f2.ts @@ -72,11 +71,11 @@ Info 16 [00:00:37.000] Files (3) f2.ts Matched by include pattern '*.ts' in 'tsconfig.json' -Info 17 [00:00:38.000] ----------------------------------------------- -Info 18 [00:00:39.000] Project '/a/b/tsconfig.json' (Configured) -Info 18 [00:00:40.000] Files (3) +Info 16 [00:00:37.000] ----------------------------------------------- +Info 17 [00:00:38.000] Project '/a/b/tsconfig.json' (Configured) +Info 17 [00:00:39.000] Files (3) -Info 18 [00:00:41.000] ----------------------------------------------- -Info 18 [00:00:42.000] Open files: -Info 18 [00:00:43.000] FileName: /a/b/f1.ts ProjectRootPath: undefined -Info 18 [00:00:44.000] Projects: /a/b/tsconfig.json \ No newline at end of file +Info 17 [00:00:40.000] ----------------------------------------------- +Info 17 [00:00:41.000] Open files: +Info 17 [00:00:42.000] FileName: /a/b/f1.ts ProjectRootPath: undefined +Info 17 [00:00:43.000] Projects: /a/b/tsconfig.json \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/configuredProjects/create-configured-project-without-file-list.js b/tests/baselines/reference/tsserver/configuredProjects/create-configured-project-without-file-list.js index 01787bb7756ab..9b839f542554f 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 @@ -53,15 +53,14 @@ Info 5 [00:00:30.000] Config: /a/b/tsconfig.json : { } Info 6 [00:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory Info 7 [00:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /a/b/d/f2.ts 500 undefined WatchType: Closed Script info -Info 10 [00:00:35.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 11 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 13 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [00:00:39.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [00:00:40.000] Project '/a/b/tsconfig.json' (Configured) -Info 16 [00:00:41.000] Files (3) +Info 8 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/b/d/f2.ts 500 undefined WatchType: Closed Script info +Info 9 [00:00:34.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 10 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 12 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 13 [00:00:38.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 14 [00:00:39.000] Project '/a/b/tsconfig.json' (Configured) +Info 15 [00:00:40.000] Files (3) /a/lib/lib.d.ts /a/b/c/f1.ts /a/b/d/f2.ts @@ -74,11 +73,11 @@ Info 16 [00:00:41.000] Files (3) d/f2.ts Matched by default include pattern '**/*' -Info 17 [00:00:42.000] ----------------------------------------------- -Info 18 [00:00:43.000] Project '/a/b/tsconfig.json' (Configured) -Info 18 [00:00:44.000] Files (3) +Info 16 [00:00:41.000] ----------------------------------------------- +Info 17 [00:00:42.000] Project '/a/b/tsconfig.json' (Configured) +Info 17 [00:00:43.000] Files (3) -Info 18 [00:00:45.000] ----------------------------------------------- -Info 18 [00:00:46.000] Open files: -Info 18 [00:00:47.000] FileName: /a/b/c/f1.ts ProjectRootPath: undefined -Info 18 [00:00:48.000] Projects: /a/b/tsconfig.json \ No newline at end of file +Info 17 [00:00:44.000] ----------------------------------------------- +Info 17 [00:00:45.000] Open files: +Info 17 [00:00:46.000] FileName: /a/b/c/f1.ts ProjectRootPath: undefined +Info 17 [00:00:47.000] Projects: /a/b/tsconfig.json \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-after-old-one-without-file-being-in-config.js b/tests/baselines/reference/tsserver/configuredProjects/creating-new-file-and-then-open-it-after-watcher-is-invoked,-ask-errors-on-it-after-old-one-without-file-being-in-config.js index 3f61cb6de7006..05931155afaa2 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 @@ -57,15 +57,14 @@ Info 7 [00:00:34.000] Config: /user/username/projects/myproject/tsconfig.json } Info 8 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 9 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 16 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [00:00:45.000] Files (3) +Info 10 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 12 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 14 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 17 [00:00:44.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -78,20 +77,20 @@ Info 18 [00:00:45.000] Files (3) src/foo.ts Matched by include pattern './src' in 'tsconfig.json' -Info 19 [00:00:46.000] ----------------------------------------------- -Info 20 [00:00:47.000] event: +Info 18 [00:00:45.000] ----------------------------------------------- +Info 19 [00:00:46.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 21 [00:00:48.000] event: +Info 20 [00:00:47.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":50,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":true,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [00:00:49.000] event: +Info 21 [00:00:48.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/foo.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 23 [00:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [00:00:51.000] Files (3) +Info 22 [00:00:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 22 [00:00:50.000] Files (3) -Info 23 [00:00:52.000] ----------------------------------------------- -Info 23 [00:00:53.000] Open files: -Info 23 [00:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 23 [00:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 22 [00:00:51.000] ----------------------------------------------- +Info 22 [00:00:52.000] Open files: +Info 22 [00:00:53.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 22 [00:00:54.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -110,14 +109,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 23 [00:00:56.000] response: +Info 22 [00:00:55.000] response: { "responseRequired": false } -Info 24 [00:00:59.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 25 [00:01:00.000] Project: /user/username/projects/myproject/tsconfig.json Detected excluded file: /user/username/projects/myproject/src/sub/fooBar.ts -Info 26 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 27 [00:01:02.000] request: +Info 23 [00:00:58.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 24 [00:00:59.000] Project: /user/username/projects/myproject/tsconfig.json Detected excluded file: /user/username/projects/myproject/src/sub/fooBar.ts +Info 25 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 26 [00:01:01.000] request: { "command": "open", "arguments": { @@ -149,26 +148,25 @@ 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] event: +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: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/sub/fooBar.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 31 [00:01:06.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 33 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 34 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 35 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 36 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 37 [00:01:12.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 38 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 39 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 40 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 41 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 42 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 43 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 44 [00:01:19.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:20.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 46 [00:01:21.000] Files (2) +Info 30 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 31 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 32 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 33 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 34 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 35 [00:01:10.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 36 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 37 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 38 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 39 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 40 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 41 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 42 [00:01:17.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:18.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 44 [00:01:19.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/sub/fooBar.ts @@ -178,20 +176,20 @@ Info 46 [00:01:21.000] Files (2) fooBar.ts Root file specified for compilation -Info 47 [00:01:22.000] ----------------------------------------------- -Info 48 [00:01:23.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 48 [00:01:24.000] Files (3) +Info 45 [00:01:20.000] ----------------------------------------------- +Info 46 [00:01:21.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 46 [00:01:22.000] Files (3) -Info 48 [00:01:25.000] ----------------------------------------------- -Info 48 [00:01:26.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 48 [00:01:27.000] Files (2) +Info 46 [00:01:23.000] ----------------------------------------------- +Info 46 [00:01:24.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 46 [00:01:25.000] Files (2) -Info 48 [00:01:28.000] ----------------------------------------------- -Info 48 [00:01:29.000] Open files: -Info 48 [00:01:30.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 48 [00:01:31.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 48 [00:01:32.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject -Info 48 [00:01:33.000] Projects: /dev/null/inferredProject1* +Info 46 [00:01:26.000] ----------------------------------------------- +Info 46 [00:01:27.000] Open files: +Info 46 [00:01:28.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 46 [00:01:29.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 46 [00:01:30.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject +Info 46 [00:01:31.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -224,11 +222,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 48 [00:01:34.000] response: +Info 46 [00:01:32.000] response: { "responseRequired": false } -Info 49 [00:01:35.000] request: +Info 47 [00:01:33.000] request: { "command": "geterr", "arguments": { @@ -305,7 +303,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 50 [00:01:36.000] response: +Info 48 [00:01:34.000] response: { "responseRequired": false } @@ -373,7 +371,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 51 [00:01:37.000] event: +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 @@ -439,7 +437,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 52 [00:01:38.000] event: +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) @@ -505,7 +503,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 53 [00:01:39.000] event: +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) @@ -603,7 +601,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 54 [00:01:40.000] event: +Info 52 [00:01:38.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} After running timeout callback2 @@ -669,7 +667,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 55 [00:01:41.000] event: +Info 53 [00:01:39.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -735,9 +733,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 56 [00:01:42.000] event: +Info 54 [00:01:40.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} -Info 57 [00:01:43.000] event: +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) 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 92ac1a111e9be..e0f2ee4c23266 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 @@ -57,15 +57,14 @@ Info 7 [00:00:34.000] Config: /user/username/projects/myproject/tsconfig.json } Info 8 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 9 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 16 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [00:00:45.000] Files (3) +Info 10 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 12 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 14 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 17 [00:00:44.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -78,20 +77,20 @@ Info 18 [00:00:45.000] Files (3) src/foo.ts Matched by include pattern './src' in 'tsconfig.json' -Info 19 [00:00:46.000] ----------------------------------------------- -Info 20 [00:00:47.000] event: +Info 18 [00:00:45.000] ----------------------------------------------- +Info 19 [00:00:46.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 21 [00:00:48.000] event: +Info 20 [00:00:47.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":50,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [00:00:49.000] event: +Info 21 [00:00:48.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/foo.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 23 [00:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [00:00:51.000] Files (3) +Info 22 [00:00:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 22 [00:00:50.000] Files (3) -Info 23 [00:00:52.000] ----------------------------------------------- -Info 23 [00:00:53.000] Open files: -Info 23 [00:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 23 [00:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 22 [00:00:51.000] ----------------------------------------------- +Info 22 [00:00:52.000] Open files: +Info 22 [00:00:53.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 22 [00:00:54.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -110,15 +109,15 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 23 [00:00:56.000] response: +Info 22 [00:00:55.000] response: { "responseRequired": false } -Info 24 [00:00:59.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 25 [00:01:00.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 26 [00:01:01.000] Scheduled: *ensureProjectForOpenFiles* -Info 27 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 28 [00:01:03.000] request: +Info 23 [00:00:58.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 24 [00:00:59.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 25 [00:01:00.000] Scheduled: *ensureProjectForOpenFiles* +Info 26 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 27 [00:01:02.000] request: { "command": "open", "arguments": { @@ -150,12 +149,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/src/sub -Info 30 [00:01:05.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 31 [00:01:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 32 [00:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 33 [00:01:08.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 34 [00:01:09.000] Files (4) +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 +Info 31 [00:01:06.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 32 [00:01:07.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 33 [00:01:08.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -171,16 +170,16 @@ Info 34 [00:01:09.000] Files (4) src/sub/fooBar.ts Matched by include pattern './src' in 'tsconfig.json' -Info 35 [00:01:10.000] ----------------------------------------------- -Info 36 [00:01:11.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 36 [00:01:12.000] Files (4) +Info 34 [00:01:09.000] ----------------------------------------------- +Info 35 [00:01:10.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 35 [00:01:11.000] Files (4) -Info 36 [00:01:13.000] ----------------------------------------------- -Info 36 [00:01:14.000] Open files: -Info 36 [00:01:15.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 36 [00:01:16.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 36 [00:01:17.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject -Info 36 [00:01:18.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 35 [00:01:12.000] ----------------------------------------------- +Info 35 [00:01:13.000] Open files: +Info 35 [00:01:14.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 35 [00:01:15.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 35 [00:01:16.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject +Info 35 [00:01:17.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -199,11 +198,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 36 [00:01:19.000] response: +Info 35 [00:01:18.000] response: { "responseRequired": false } -Info 37 [00:01:20.000] request: +Info 36 [00:01:19.000] request: { "command": "geterr", "arguments": { @@ -252,7 +251,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 38 [00:01:21.000] response: +Info 37 [00:01:20.000] response: { "responseRequired": false } @@ -292,7 +291,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 39 [00:01:22.000] event: +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 @@ -330,7 +329,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 40 [00:01:23.000] event: +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) @@ -368,7 +367,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 41 [00:01:24.000] event: +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) @@ -424,7 +423,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 42 [00:01:25.000] event: +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 @@ -462,7 +461,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 43 [00:01:26.000] event: +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) @@ -500,9 +499,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 44 [00:01:27.000] event: +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 45 [00:01:28.000] event: +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) 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 07431ef9e23e2..da2d048711190 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 @@ -57,15 +57,14 @@ Info 7 [00:00:34.000] Config: /user/username/projects/myproject/tsconfig.json } Info 8 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 9 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 16 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [00:00:45.000] Files (3) +Info 10 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 12 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 14 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 17 [00:00:44.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -78,20 +77,20 @@ Info 18 [00:00:45.000] Files (3) src/foo.ts Matched by include pattern './src' in 'tsconfig.json' -Info 19 [00:00:46.000] ----------------------------------------------- -Info 20 [00:00:47.000] event: +Info 18 [00:00:45.000] ----------------------------------------------- +Info 19 [00:00:46.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 21 [00:00:48.000] event: +Info 20 [00:00:47.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":50,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":true,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [00:00:49.000] event: +Info 21 [00:00:48.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/foo.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 23 [00:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [00:00:51.000] Files (3) +Info 22 [00:00:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 22 [00:00:50.000] Files (3) -Info 23 [00:00:52.000] ----------------------------------------------- -Info 23 [00:00:53.000] Open files: -Info 23 [00:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 23 [00:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 22 [00:00:51.000] ----------------------------------------------- +Info 22 [00:00:52.000] Open files: +Info 22 [00:00:53.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 22 [00:00:54.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -110,14 +109,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 23 [00:00:56.000] response: +Info 22 [00:00:55.000] response: { "responseRequired": false } -Info 24 [00:00:59.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 25 [00:01:00.000] Project: /user/username/projects/myproject/tsconfig.json Detected excluded file: /user/username/projects/myproject/src/sub/fooBar.ts -Info 26 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 27 [00:01:02.000] request: +Info 23 [00:00:58.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 24 [00:00:59.000] Project: /user/username/projects/myproject/tsconfig.json Detected excluded file: /user/username/projects/myproject/src/sub/fooBar.ts +Info 25 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 26 [00:01:01.000] request: { "command": "open", "arguments": { @@ -149,26 +148,25 @@ 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] event: +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: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/sub/fooBar.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 31 [00:01:06.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 33 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 34 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 35 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 36 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 37 [00:01:12.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 38 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 39 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 40 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 41 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 42 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 43 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 44 [00:01:19.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:20.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 46 [00:01:21.000] Files (2) +Info 30 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 31 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 32 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 33 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 34 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 35 [00:01:10.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 36 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 37 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 38 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 39 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 40 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 41 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 42 [00:01:17.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:18.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 44 [00:01:19.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/sub/fooBar.ts @@ -178,20 +176,20 @@ Info 46 [00:01:21.000] Files (2) fooBar.ts Root file specified for compilation -Info 47 [00:01:22.000] ----------------------------------------------- -Info 48 [00:01:23.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 48 [00:01:24.000] Files (3) +Info 45 [00:01:20.000] ----------------------------------------------- +Info 46 [00:01:21.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 46 [00:01:22.000] Files (3) -Info 48 [00:01:25.000] ----------------------------------------------- -Info 48 [00:01:26.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 48 [00:01:27.000] Files (2) +Info 46 [00:01:23.000] ----------------------------------------------- +Info 46 [00:01:24.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 46 [00:01:25.000] Files (2) -Info 48 [00:01:28.000] ----------------------------------------------- -Info 48 [00:01:29.000] Open files: -Info 48 [00:01:30.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 48 [00:01:31.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 48 [00:01:32.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject -Info 48 [00:01:33.000] Projects: /dev/null/inferredProject1* +Info 46 [00:01:26.000] ----------------------------------------------- +Info 46 [00:01:27.000] Open files: +Info 46 [00:01:28.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 46 [00:01:29.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 46 [00:01:30.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject +Info 46 [00:01:31.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -224,11 +222,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 48 [00:01:34.000] response: +Info 46 [00:01:32.000] response: { "responseRequired": false } -Info 49 [00:01:35.000] request: +Info 47 [00:01:33.000] request: { "command": "geterr", "arguments": { @@ -305,7 +303,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 50 [00:01:36.000] response: +Info 48 [00:01:34.000] response: { "responseRequired": false } @@ -373,7 +371,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 51 [00:01:37.000] event: +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 @@ -439,7 +437,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 52 [00:01:38.000] event: +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) @@ -505,7 +503,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 53 [00:01:39.000] event: +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) @@ -603,7 +601,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 54 [00:01:40.000] event: +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 @@ -669,7 +667,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 55 [00:01:41.000] event: +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) @@ -735,9 +733,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 56 [00:01:42.000] event: +Info 54 [00:01:40.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} -Info 57 [00:01:43.000] event: +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) 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 bb3f0f7844356..8635c91c59c6d 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 @@ -57,15 +57,14 @@ Info 7 [00:00:34.000] Config: /user/username/projects/myproject/tsconfig.json } Info 8 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 9 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 16 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [00:00:45.000] Files (3) +Info 10 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 12 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 14 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 17 [00:00:44.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -78,20 +77,20 @@ Info 18 [00:00:45.000] Files (3) src/foo.ts Matched by include pattern './src' in 'tsconfig.json' -Info 19 [00:00:46.000] ----------------------------------------------- -Info 20 [00:00:47.000] event: +Info 18 [00:00:45.000] ----------------------------------------------- +Info 19 [00:00:46.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 21 [00:00:48.000] event: +Info 20 [00:00:47.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":50,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [00:00:49.000] event: +Info 21 [00:00:48.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/foo.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 23 [00:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [00:00:51.000] Files (3) +Info 22 [00:00:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 22 [00:00:50.000] Files (3) -Info 23 [00:00:52.000] ----------------------------------------------- -Info 23 [00:00:53.000] Open files: -Info 23 [00:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 23 [00:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 22 [00:00:51.000] ----------------------------------------------- +Info 22 [00:00:52.000] Open files: +Info 22 [00:00:53.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 22 [00:00:54.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -110,15 +109,15 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 23 [00:00:56.000] response: +Info 22 [00:00:55.000] response: { "responseRequired": false } -Info 24 [00:00:59.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 25 [00:01:00.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 26 [00:01:01.000] Scheduled: *ensureProjectForOpenFiles* -Info 27 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 28 [00:01:03.000] request: +Info 23 [00:00:58.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 24 [00:00:59.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 25 [00:01:00.000] Scheduled: *ensureProjectForOpenFiles* +Info 26 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 27 [00:01:02.000] request: { "command": "open", "arguments": { @@ -150,12 +149,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 29 [00:01:04.000] Search path: /user/username/projects/myproject/src/sub -Info 30 [00:01:05.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 31 [00:01:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 32 [00:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 33 [00:01:08.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 34 [00:01:09.000] Files (4) +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 +Info 31 [00:01:06.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 32 [00:01:07.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 33 [00:01:08.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -171,16 +170,16 @@ Info 34 [00:01:09.000] Files (4) src/sub/fooBar.ts Matched by include pattern './src' in 'tsconfig.json' -Info 35 [00:01:10.000] ----------------------------------------------- -Info 36 [00:01:11.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 36 [00:01:12.000] Files (4) +Info 34 [00:01:09.000] ----------------------------------------------- +Info 35 [00:01:10.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 35 [00:01:11.000] Files (4) -Info 36 [00:01:13.000] ----------------------------------------------- -Info 36 [00:01:14.000] Open files: -Info 36 [00:01:15.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 36 [00:01:16.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 36 [00:01:17.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject -Info 36 [00:01:18.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 35 [00:01:12.000] ----------------------------------------------- +Info 35 [00:01:13.000] Open files: +Info 35 [00:01:14.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 35 [00:01:15.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 35 [00:01:16.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject +Info 35 [00:01:17.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -199,11 +198,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 36 [00:01:19.000] response: +Info 35 [00:01:18.000] response: { "responseRequired": false } -Info 37 [00:01:20.000] request: +Info 36 [00:01:19.000] request: { "command": "geterr", "arguments": { @@ -252,7 +251,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 38 [00:01:21.000] response: +Info 37 [00:01:20.000] response: { "responseRequired": false } @@ -292,7 +291,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 39 [00:01:22.000] event: +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 @@ -330,7 +329,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 40 [00:01:23.000] event: +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) @@ -368,7 +367,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 41 [00:01:24.000] event: +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) @@ -424,7 +423,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 42 [00:01:25.000] event: +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 @@ -462,7 +461,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 43 [00:01:26.000] event: +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) @@ -500,9 +499,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 44 [00:01:27.000] event: +Info 43 [00:01:26.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} -Info 45 [00:01:28.000] event: +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) 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 7ceef00398200..98ccc24cea8a0 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 @@ -57,15 +57,14 @@ Info 7 [00:00:34.000] Config: /user/username/projects/myproject/tsconfig.json } Info 8 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 9 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 16 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [00:00:45.000] Files (3) +Info 10 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 12 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 14 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 17 [00:00:44.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -78,20 +77,20 @@ Info 18 [00:00:45.000] Files (3) src/foo.ts Matched by include pattern './src' in 'tsconfig.json' -Info 19 [00:00:46.000] ----------------------------------------------- -Info 20 [00:00:47.000] event: +Info 18 [00:00:45.000] ----------------------------------------------- +Info 19 [00:00:46.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 21 [00:00:48.000] event: +Info 20 [00:00:47.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":50,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":true,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [00:00:49.000] event: +Info 21 [00:00:48.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/foo.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 23 [00:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [00:00:51.000] Files (3) +Info 22 [00:00:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 22 [00:00:50.000] Files (3) -Info 23 [00:00:52.000] ----------------------------------------------- -Info 23 [00:00:53.000] Open files: -Info 23 [00:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 23 [00:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 22 [00:00:51.000] ----------------------------------------------- +Info 22 [00:00:52.000] Open files: +Info 22 [00:00:53.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 22 [00:00:54.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -110,11 +109,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 23 [00:00:56.000] response: +Info 22 [00:00:55.000] response: { "responseRequired": false } -Info 24 [00:00:57.000] request: +Info 23 [00:00:56.000] request: { "command": "open", "arguments": { @@ -143,26 +142,25 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 25 [00:00:58.000] Search path: /user/username/projects/myproject/src/sub -Info 26 [00:00:59.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 27 [00:01:00.000] event: +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: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/sub/fooBar.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 28 [00:01:01.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 29 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 30 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 31 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 32 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 33 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 34 [00:01:07.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 35 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 36 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 37 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 38 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 39 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 40 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 41 [00:01:14.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:15.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 43 [00:01:16.000] Files (2) +Info 27 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 28 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 29 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 30 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 31 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 32 [00:01:05.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 33 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 34 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 35 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 36 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 37 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 38 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 39 [00:01:12.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:13.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 41 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/sub/fooBar.ts @@ -172,20 +170,20 @@ Info 43 [00:01:16.000] Files (2) fooBar.ts Root file specified for compilation -Info 44 [00:01:17.000] ----------------------------------------------- -Info 45 [00:01:18.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 45 [00:01:19.000] Files (3) +Info 42 [00:01:15.000] ----------------------------------------------- +Info 43 [00:01:16.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 43 [00:01:17.000] Files (3) -Info 45 [00:01:20.000] ----------------------------------------------- -Info 45 [00:01:21.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 45 [00:01:22.000] Files (2) +Info 43 [00:01:18.000] ----------------------------------------------- +Info 43 [00:01:19.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 43 [00:01:20.000] Files (2) -Info 45 [00:01:23.000] ----------------------------------------------- -Info 45 [00:01:24.000] Open files: -Info 45 [00:01:25.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 45 [00:01:26.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject -Info 45 [00:01:28.000] Projects: /dev/null/inferredProject1* +Info 43 [00:01:21.000] ----------------------------------------------- +Info 43 [00:01:22.000] Open files: +Info 43 [00:01:23.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 43 [00:01:24.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject +Info 43 [00:01:26.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -218,14 +216,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 45 [00:01:29.000] response: +Info 43 [00:01:27.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 47 [00:01:33.000] Project: /user/username/projects/myproject/tsconfig.json Detected excluded file: /user/username/projects/myproject/src/sub/fooBar.ts -Info 48 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 49 [00:01:35.000] request: +Info 44 [00:01:30.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 45 [00:01:31.000] Project: /user/username/projects/myproject/tsconfig.json Detected excluded file: /user/username/projects/myproject/src/sub/fooBar.ts +Info 46 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 47 [00:01:33.000] request: { "command": "geterr", "arguments": { @@ -305,7 +303,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 50 [00:01:36.000] response: +Info 48 [00:01:34.000] response: { "responseRequired": false } @@ -373,7 +371,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 51 [00:01:37.000] event: +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 @@ -439,7 +437,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 52 [00:01:38.000] event: +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) @@ -505,7 +503,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 53 [00:01:39.000] event: +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) @@ -603,7 +601,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 54 [00:01:40.000] event: +Info 52 [00:01:38.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} After running timeout callback2 @@ -669,7 +667,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 55 [00:01:41.000] event: +Info 53 [00:01:39.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -735,9 +733,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 56 [00:01:42.000] event: +Info 54 [00:01:40.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/sub/fooBar.ts","diagnostics":[]}} -Info 57 [00:01:43.000] event: +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) 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 545b1f654bbdc..fec2ae135d98c 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 @@ -57,15 +57,14 @@ Info 7 [00:00:34.000] Config: /user/username/projects/myproject/tsconfig.json } Info 8 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 9 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 16 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [00:00:45.000] Files (3) +Info 10 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 12 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 14 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 17 [00:00:44.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -78,20 +77,20 @@ Info 18 [00:00:45.000] Files (3) src/foo.ts Matched by include pattern './src' in 'tsconfig.json' -Info 19 [00:00:46.000] ----------------------------------------------- -Info 20 [00:00:47.000] event: +Info 18 [00:00:45.000] ----------------------------------------------- +Info 19 [00:00:46.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 21 [00:00:48.000] event: +Info 20 [00:00:47.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":50,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [00:00:49.000] event: +Info 21 [00:00:48.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/foo.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 23 [00:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [00:00:51.000] Files (3) +Info 22 [00:00:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 22 [00:00:50.000] Files (3) -Info 23 [00:00:52.000] ----------------------------------------------- -Info 23 [00:00:53.000] Open files: -Info 23 [00:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 23 [00:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 22 [00:00:51.000] ----------------------------------------------- +Info 22 [00:00:52.000] Open files: +Info 22 [00:00:53.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 22 [00:00:54.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -110,11 +109,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 23 [00:00:56.000] response: +Info 22 [00:00:55.000] response: { "responseRequired": false } -Info 24 [00:00:57.000] request: +Info 23 [00:00:56.000] request: { "command": "open", "arguments": { @@ -143,26 +142,25 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 25 [00:00:58.000] Search path: /user/username/projects/myproject/src/sub -Info 26 [00:00:59.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 27 [00:01:00.000] event: +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: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/sub/fooBar.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 28 [00:01:01.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 29 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 30 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 31 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 32 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 33 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 34 [00:01:07.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 35 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 36 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 37 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 38 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 39 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 40 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 41 [00:01:14.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:15.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 43 [00:01:16.000] Files (2) +Info 27 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 28 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 29 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 30 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 31 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 32 [00:01:05.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 33 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 34 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 35 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 36 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 37 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 38 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 39 [00:01:12.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:13.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 41 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/sub/fooBar.ts @@ -172,20 +170,20 @@ Info 43 [00:01:16.000] Files (2) fooBar.ts Root file specified for compilation -Info 44 [00:01:17.000] ----------------------------------------------- -Info 45 [00:01:18.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 45 [00:01:19.000] Files (3) +Info 42 [00:01:15.000] ----------------------------------------------- +Info 43 [00:01:16.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 43 [00:01:17.000] Files (3) -Info 45 [00:01:20.000] ----------------------------------------------- -Info 45 [00:01:21.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 45 [00:01:22.000] Files (2) +Info 43 [00:01:18.000] ----------------------------------------------- +Info 43 [00:01:19.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 43 [00:01:20.000] Files (2) -Info 45 [00:01:23.000] ----------------------------------------------- -Info 45 [00:01:24.000] Open files: -Info 45 [00:01:25.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 45 [00:01:26.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject -Info 45 [00:01:28.000] Projects: /dev/null/inferredProject1* +Info 43 [00:01:21.000] ----------------------------------------------- +Info 43 [00:01:22.000] Open files: +Info 43 [00:01:23.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 43 [00:01:24.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject +Info 43 [00:01:26.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -218,15 +216,15 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 45 [00:01:29.000] response: +Info 43 [00:01:27.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 47 [00:01:33.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 48 [00:01:34.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 50 [00:01:36.000] request: +Info 44 [00:01:30.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 45 [00:01:31.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 46 [00:01:32.000] Scheduled: *ensureProjectForOpenFiles* +Info 47 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 48 [00:01:34.000] request: { "command": "geterr", "arguments": { @@ -306,7 +304,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 51 [00:01:37.000] response: +Info 49 [00:01:35.000] response: { "responseRequired": false } @@ -374,15 +372,15 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 52 [00:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 53 [00:01:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 54 [00:01:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 55 [00:01:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 56 [00:01:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 57 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 58 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 59 [00:01:45.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 60 [00:01:46.000] Files (4) +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 +Info 53 [00:01:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 54 [00:01:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 55 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 56 [00:01:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 57 [00:01:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 58 [00:01:44.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -398,8 +396,8 @@ Info 60 [00:01:46.000] Files (4) src/sub/fooBar.ts Matched by include pattern './src' in 'tsconfig.json' -Info 61 [00:01:47.000] ----------------------------------------------- -Info 62 [00:01:48.000] event: +Info 59 [00:01:45.000] ----------------------------------------------- +Info 60 [00:01:46.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} After running timeout callback3 @@ -445,7 +443,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 63 [00:01:49.000] event: +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) @@ -491,7 +489,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 64 [00:01:50.000] event: +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) @@ -559,7 +557,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 65 [00:01:51.000] event: +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 @@ -605,7 +603,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 66 [00:01:52.000] event: +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) @@ -651,9 +649,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 67 [00:01:53.000] event: +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 68 [00:01:54.000] event: +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) 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 ccd1584ff5155..8463e70a02e49 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 @@ -57,15 +57,14 @@ Info 7 [00:00:34.000] Config: /user/username/projects/myproject/tsconfig.json } Info 8 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 9 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 16 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [00:00:45.000] Files (3) +Info 10 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 12 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 14 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 17 [00:00:44.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -78,20 +77,20 @@ Info 18 [00:00:45.000] Files (3) src/foo.ts Matched by include pattern './src' in 'tsconfig.json' -Info 19 [00:00:46.000] ----------------------------------------------- -Info 20 [00:00:47.000] event: +Info 18 [00:00:45.000] ----------------------------------------------- +Info 19 [00:00:46.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 21 [00:00:48.000] event: +Info 20 [00:00:47.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":50,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":true,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [00:00:49.000] event: +Info 21 [00:00:48.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/foo.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 23 [00:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [00:00:51.000] Files (3) +Info 22 [00:00:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 22 [00:00:50.000] Files (3) -Info 23 [00:00:52.000] ----------------------------------------------- -Info 23 [00:00:53.000] Open files: -Info 23 [00:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 23 [00:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 22 [00:00:51.000] ----------------------------------------------- +Info 22 [00:00:52.000] Open files: +Info 22 [00:00:53.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 22 [00:00:54.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -110,11 +109,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 23 [00:00:56.000] response: +Info 22 [00:00:55.000] response: { "responseRequired": false } -Info 24 [00:00:57.000] request: +Info 23 [00:00:56.000] request: { "command": "open", "arguments": { @@ -143,26 +142,25 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 25 [00:00:58.000] Search path: /user/username/projects/myproject/src/sub -Info 26 [00:00:59.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 27 [00:01:00.000] event: +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: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/sub/fooBar.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 28 [00:01:01.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 29 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 30 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 31 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 32 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 33 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 34 [00:01:07.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 35 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 36 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 37 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 38 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 39 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 40 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 41 [00:01:14.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:15.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 43 [00:01:16.000] Files (2) +Info 27 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 28 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 29 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 30 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 31 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 32 [00:01:05.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 33 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 34 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 35 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 36 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 37 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 38 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 39 [00:01:12.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:13.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 41 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/sub/fooBar.ts @@ -172,20 +170,20 @@ Info 43 [00:01:16.000] Files (2) fooBar.ts Root file specified for compilation -Info 44 [00:01:17.000] ----------------------------------------------- -Info 45 [00:01:18.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 45 [00:01:19.000] Files (3) +Info 42 [00:01:15.000] ----------------------------------------------- +Info 43 [00:01:16.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 43 [00:01:17.000] Files (3) -Info 45 [00:01:20.000] ----------------------------------------------- -Info 45 [00:01:21.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 45 [00:01:22.000] Files (2) +Info 43 [00:01:18.000] ----------------------------------------------- +Info 43 [00:01:19.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 43 [00:01:20.000] Files (2) -Info 45 [00:01:23.000] ----------------------------------------------- -Info 45 [00:01:24.000] Open files: -Info 45 [00:01:25.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 45 [00:01:26.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject -Info 45 [00:01:28.000] Projects: /dev/null/inferredProject1* +Info 43 [00:01:21.000] ----------------------------------------------- +Info 43 [00:01:22.000] Open files: +Info 43 [00:01:23.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 43 [00:01:24.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject +Info 43 [00:01:26.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -218,14 +216,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 45 [00:01:29.000] response: +Info 43 [00:01:27.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 47 [00:01:33.000] Project: /user/username/projects/myproject/tsconfig.json Detected excluded file: /user/username/projects/myproject/src/sub/fooBar.ts -Info 48 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 49 [00:01:35.000] request: +Info 44 [00:01:30.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 45 [00:01:31.000] Project: /user/username/projects/myproject/tsconfig.json Detected excluded file: /user/username/projects/myproject/src/sub/fooBar.ts +Info 46 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 47 [00:01:33.000] request: { "command": "geterr", "arguments": { @@ -305,7 +303,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 50 [00:01:36.000] response: +Info 48 [00:01:34.000] response: { "responseRequired": false } @@ -373,7 +371,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 51 [00:01:37.000] event: +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 @@ -439,7 +437,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 52 [00:01:38.000] event: +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) @@ -505,7 +503,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 53 [00:01:39.000] event: +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) @@ -603,7 +601,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 54 [00:01:40.000] event: +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 @@ -669,7 +667,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 55 [00:01:41.000] event: +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) @@ -735,9 +733,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 56 [00:01:42.000] event: +Info 54 [00:01:40.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} -Info 57 [00:01:43.000] event: +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) 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 03c27d7e7d802..31c361550f159 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 @@ -57,15 +57,14 @@ Info 7 [00:00:34.000] Config: /user/username/projects/myproject/tsconfig.json } Info 8 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 9 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 16 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [00:00:45.000] Files (3) +Info 10 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/bar.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 12 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 14 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 17 [00:00:44.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -78,20 +77,20 @@ Info 18 [00:00:45.000] Files (3) src/foo.ts Matched by include pattern './src' in 'tsconfig.json' -Info 19 [00:00:46.000] ----------------------------------------------- -Info 20 [00:00:47.000] event: +Info 18 [00:00:45.000] ----------------------------------------------- +Info 19 [00:00:46.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 21 [00:00:48.000] event: +Info 20 [00:00:47.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":50,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [00:00:49.000] event: +Info 21 [00:00:48.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/foo.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 23 [00:00:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [00:00:51.000] Files (3) +Info 22 [00:00:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 22 [00:00:50.000] Files (3) -Info 23 [00:00:52.000] ----------------------------------------------- -Info 23 [00:00:53.000] Open files: -Info 23 [00:00:54.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 23 [00:00:55.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 22 [00:00:51.000] ----------------------------------------------- +Info 22 [00:00:52.000] Open files: +Info 22 [00:00:53.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 22 [00:00:54.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -110,11 +109,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 23 [00:00:56.000] response: +Info 22 [00:00:55.000] response: { "responseRequired": false } -Info 24 [00:00:57.000] request: +Info 23 [00:00:56.000] request: { "command": "open", "arguments": { @@ -143,26 +142,25 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 25 [00:00:58.000] Search path: /user/username/projects/myproject/src/sub -Info 26 [00:00:59.000] For info: /user/username/projects/myproject/src/sub/fooBar.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 27 [00:01:00.000] event: +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: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/sub/fooBar.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 28 [00:01:01.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 29 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 30 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 31 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 32 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 33 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 34 [00:01:07.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 35 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 36 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 37 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 38 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 39 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 40 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 41 [00:01:14.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:15.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 43 [00:01:16.000] Files (2) +Info 27 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 28 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 29 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 30 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 31 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 32 [00:01:05.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 33 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 34 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 35 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 36 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 37 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 38 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 39 [00:01:12.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:13.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 41 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/sub/fooBar.ts @@ -172,20 +170,20 @@ Info 43 [00:01:16.000] Files (2) fooBar.ts Root file specified for compilation -Info 44 [00:01:17.000] ----------------------------------------------- -Info 45 [00:01:18.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 45 [00:01:19.000] Files (3) +Info 42 [00:01:15.000] ----------------------------------------------- +Info 43 [00:01:16.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 43 [00:01:17.000] Files (3) -Info 45 [00:01:20.000] ----------------------------------------------- -Info 45 [00:01:21.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 45 [00:01:22.000] Files (2) +Info 43 [00:01:18.000] ----------------------------------------------- +Info 43 [00:01:19.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 43 [00:01:20.000] Files (2) -Info 45 [00:01:23.000] ----------------------------------------------- -Info 45 [00:01:24.000] Open files: -Info 45 [00:01:25.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject -Info 45 [00:01:26.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject -Info 45 [00:01:28.000] Projects: /dev/null/inferredProject1* +Info 43 [00:01:21.000] ----------------------------------------------- +Info 43 [00:01:22.000] Open files: +Info 43 [00:01:23.000] FileName: /user/username/projects/myproject/src/foo.ts ProjectRootPath: /user/username/projects/myproject +Info 43 [00:01:24.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/src/sub/fooBar.ts ProjectRootPath: /user/username/projects/myproject +Info 43 [00:01:26.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -218,15 +216,15 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 45 [00:01:29.000] response: +Info 43 [00:01:27.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 47 [00:01:33.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 48 [00:01:34.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 50 [00:01:36.000] request: +Info 44 [00:01:30.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 45 [00:01:31.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 46 [00:01:32.000] Scheduled: *ensureProjectForOpenFiles* +Info 47 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/sub/fooBar.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 48 [00:01:34.000] request: { "command": "geterr", "arguments": { @@ -306,7 +304,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 51 [00:01:37.000] response: +Info 49 [00:01:35.000] response: { "responseRequired": false } @@ -374,7 +372,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 52 [00:01:38.000] event: +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 @@ -440,7 +438,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 53 [00:01:39.000] event: +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) @@ -506,7 +504,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 54 [00:01:40.000] event: +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) @@ -604,15 +602,15 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 55 [00:01:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 56 [00:01:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 57 [00:01:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 58 [00:01:44.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 59 [00:01:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 60 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 61 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:01:48.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 63 [00:01:49.000] Files (4) +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 +Info 56 [00:01:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 57 [00:01:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 58 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 59 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:01:46.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 61 [00:01:47.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/bar.ts /user/username/projects/myproject/src/foo.ts @@ -628,8 +626,8 @@ Info 63 [00:01:49.000] Files (4) src/sub/fooBar.ts Matched by include pattern './src' in 'tsconfig.json' -Info 64 [00:01:50.000] ----------------------------------------------- -Info 65 [00:01:51.000] event: +Info 62 [00:01:48.000] ----------------------------------------------- +Info 63 [00:01:49.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} After running timeout callback4 @@ -675,7 +673,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 66 [00:01:52.000] event: +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) @@ -721,9 +719,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 67 [00:01:53.000] event: +Info 65 [00:01:51.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/foo.ts","diagnostics":[]}} -Info 68 [00:01:54.000] event: +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) 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 47c75f18eb7cf..062a89edff5f8 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 @@ -48,24 +48,23 @@ Info 5 [00:00:48.000] Config: /user/username/rootfolder/a/b/src/tsconfig.json "configFilePath": "/user/username/rootfolder/a/b/src/tsconfig.json" } } -Info 6 [00:00:49.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 7 [00:00:50.000] Starting updateGraphWorker: Project: /user/username/rootfolder/a/b/src/tsconfig.json -Info 8 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 9 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 10 [00:00:53.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/src/node_modules 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/src/node_modules 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/src/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots -Info 16 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/src/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots -Info 17 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots -Info 18 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots -Info 19 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots -Info 20 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots -Info 21 [00:01:04.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/a/b/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 22 [00:01:05.000] Project '/user/username/rootfolder/a/b/src/tsconfig.json' (Configured) -Info 23 [00:01:06.000] Files (4) +Info 6 [00:00:49.000] Starting updateGraphWorker: Project: /user/username/rootfolder/a/b/src/tsconfig.json +Info 7 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 8 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 9 [00:00:52.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/src/node_modules 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/src/node_modules 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/src/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots +Info 15 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/src/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots +Info 16 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots +Info 17 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/b/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots +Info 18 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots +Info 19 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/a/node_modules/@types 1 undefined Project: /user/username/rootfolder/a/b/src/tsconfig.json WatchType: Type roots +Info 20 [00:01:03.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/a/b/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 21 [00:01:04.000] Project '/user/username/rootfolder/a/b/src/tsconfig.json' (Configured) +Info 22 [00:01:05.000] Files (4) /a/lib/lib.d.ts /user/username/rootfolder/a/b/node_modules/module2/index.d.ts /user/username/rootfolder/a/b/node_modules/module1/index.d.ts @@ -81,11 +80,11 @@ Info 23 [00:01:06.000] Files (4) file1.ts Part of 'files' list in tsconfig.json -Info 24 [00:01:07.000] ----------------------------------------------- -Info 25 [00:01:08.000] Project '/user/username/rootfolder/a/b/src/tsconfig.json' (Configured) -Info 25 [00:01:09.000] Files (4) +Info 23 [00:01:06.000] ----------------------------------------------- +Info 24 [00:01:07.000] Project '/user/username/rootfolder/a/b/src/tsconfig.json' (Configured) +Info 24 [00:01:08.000] Files (4) -Info 25 [00:01:10.000] ----------------------------------------------- -Info 25 [00:01:11.000] Open files: -Info 25 [00:01:12.000] FileName: /user/username/rootfolder/a/b/src/file1.ts ProjectRootPath: undefined -Info 25 [00:01:13.000] Projects: /user/username/rootfolder/a/b/src/tsconfig.json \ No newline at end of file +Info 24 [00:01:09.000] ----------------------------------------------- +Info 24 [00:01:10.000] Open files: +Info 24 [00:01:11.000] FileName: /user/username/rootfolder/a/b/src/file1.ts ProjectRootPath: undefined +Info 24 [00:01:12.000] Projects: /user/username/rootfolder/a/b/src/tsconfig.json \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/configuredProjects/should-stop-watching-the-extended-configs-of-closed-projects.js b/tests/baselines/reference/tsserver/configuredProjects/should-stop-watching-the-extended-configs-of-closed-projects.js index 9ddd4942572ca..8ebabcd33a957 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 @@ -44,35 +44,34 @@ Info 5 [00:00:40.000] Config: /user/username/projects/myproject/a/tsconfig.js } } Info 6 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file -Info 7 [00:00:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [00:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 9 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 10 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 11 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 12 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 13 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 14 [00:00:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [00:00:50.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 16 [00:00:51.000] Files (1) +Info 7 [00:00:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 8 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 9 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 10 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 11 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 12 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 13 [00:00:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 14 [00:00:49.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 15 [00:00:50.000] Files (1) /user/username/projects/myproject/a/a.ts a.ts Part of 'files' list in tsconfig.json -Info 17 [00:00:52.000] ----------------------------------------------- -Info 18 [00:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 18 [00:00:54.000] Files (1) - -Info 18 [00:00:55.000] ----------------------------------------------- -Info 18 [00:00:56.000] Open files: -Info 18 [00:00:57.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 18 [00:00:58.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 18 [00:00:59.000] Search path: /user/username/projects/myproject/b -Info 19 [00:01:00.000] For info: /user/username/projects/myproject/b/b.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 20 [00:01:01.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 21 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file -Info 22 [00:01:03.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 16 [00:00:51.000] ----------------------------------------------- +Info 17 [00:00:52.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 17 [00:00:53.000] Files (1) + +Info 17 [00:00:54.000] ----------------------------------------------- +Info 17 [00:00:55.000] Open files: +Info 17 [00:00:56.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 17 [00:00:57.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 17 [00:00:58.000] Search path: /user/username/projects/myproject/b +Info 18 [00:00:59.000] For info: /user/username/projects/myproject/b/b.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 19 [00:01:00.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json +Info 20 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file +Info 21 [00:01:02.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/b.ts" ], @@ -80,42 +79,41 @@ Info 22 [00:01:03.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 23 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file -Info 24 [00:01:05.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 25 [00:01:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 26 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 27 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 28 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 29 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 30 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 31 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 32 [00:01:13.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 33 [00:01:14.000] Files (1) +Info 22 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file +Info 23 [00:01:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 24 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 25 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 26 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 27 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 28 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 29 [00:01:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 30 [00:01:11.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 31 [00:01:12.000] Files (1) /user/username/projects/myproject/b/b.ts b.ts Part of 'files' list in tsconfig.json -Info 34 [00:01:15.000] ----------------------------------------------- -Info 35 [00:01:16.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 35 [00:01:17.000] Files (1) - -Info 35 [00:01:18.000] ----------------------------------------------- -Info 35 [00:01:19.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 35 [00:01:20.000] Files (1) - -Info 35 [00:01:21.000] ----------------------------------------------- -Info 35 [00:01:22.000] Open files: -Info 35 [00:01:23.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 35 [00:01:24.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 35 [00:01:25.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 35 [00:01:26.000] Projects: /user/username/projects/myproject/b/tsconfig.json -Info 35 [00:01:27.000] Search path: /user/username/projects/myproject/dummy -Info 36 [00:01:28.000] For info: /user/username/projects/myproject/dummy/dummy.ts :: Config file name: /user/username/projects/myproject/dummy/tsconfig.json -Info 37 [00:01:29.000] Creating configuration project /user/username/projects/myproject/dummy/tsconfig.json -Info 38 [00:01:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Config file -Info 39 [00:01:31.000] Config: /user/username/projects/myproject/dummy/tsconfig.json : { +Info 32 [00:01:13.000] ----------------------------------------------- +Info 33 [00:01:14.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 33 [00:01:15.000] Files (1) + +Info 33 [00:01:16.000] ----------------------------------------------- +Info 33 [00:01:17.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 33 [00:01:18.000] Files (1) + +Info 33 [00:01:19.000] ----------------------------------------------- +Info 33 [00:01:20.000] Open files: +Info 33 [00:01:21.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 33 [00:01:22.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 33 [00:01:23.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined +Info 33 [00:01:24.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 33 [00:01:25.000] Search path: /user/username/projects/myproject/dummy +Info 34 [00:01:26.000] For info: /user/username/projects/myproject/dummy/dummy.ts :: Config file name: /user/username/projects/myproject/dummy/tsconfig.json +Info 35 [00:01:27.000] Creating configuration project /user/username/projects/myproject/dummy/tsconfig.json +Info 36 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Config file +Info 37 [00:01:29.000] Config: /user/username/projects/myproject/dummy/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dummy/dummy.ts" ], @@ -123,159 +121,158 @@ Info 39 [00:01:31.000] Config: /user/username/projects/myproject/dummy/tsconfi "configFilePath": "/user/username/projects/myproject/dummy/tsconfig.json" } } -Info 40 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy 1 undefined Config: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Wild card directory -Info 41 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy 1 undefined Config: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Wild card directory -Info 42 [00:01:34.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 43 [00:01:35.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dummy/tsconfig.json -Info 44 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Missing file -Info 45 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Type roots -Info 46 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Type roots -Info 47 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Type roots -Info 48 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Type roots -Info 49 [00:01:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dummy/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 50 [00:01:42.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) -Info 51 [00:01:43.000] Files (1) +Info 38 [00:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy 1 undefined Config: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Wild card directory +Info 39 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy 1 undefined Config: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Wild card directory +Info 40 [00:01:32.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dummy/tsconfig.json +Info 41 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Missing file +Info 42 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Type roots +Info 43 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Type roots +Info 44 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Type roots +Info 45 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dummy/tsconfig.json WatchType: Type roots +Info 46 [00:01:38.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dummy/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 47 [00:01:39.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) +Info 48 [00:01:40.000] Files (1) /user/username/projects/myproject/dummy/dummy.ts dummy.ts Matched by default include pattern '**/*' -Info 52 [00:01:44.000] ----------------------------------------------- -Info 53 [00:01:45.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 53 [00:01:46.000] Files (1) - -Info 53 [00:01:47.000] ----------------------------------------------- -Info 53 [00:01:48.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 53 [00:01:49.000] Files (1) - -Info 53 [00:01:50.000] ----------------------------------------------- -Info 53 [00:01:51.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) -Info 53 [00:01:52.000] Files (1) - -Info 53 [00:01:53.000] ----------------------------------------------- -Info 53 [00:01:54.000] Open files: -Info 53 [00:01:55.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 53 [00:01:56.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 53 [00:01:57.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 53 [00:01:58.000] Projects: /user/username/projects/myproject/b/tsconfig.json -Info 53 [00:01:59.000] FileName: /user/username/projects/myproject/dummy/dummy.ts ProjectRootPath: undefined -Info 53 [00:02:00.000] Projects: /user/username/projects/myproject/dummy/tsconfig.json -Info 53 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/b.ts 500 undefined WatchType: Closed Script info -Info 54 [00:02:02.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 54 [00:02:03.000] Files (1) - -Info 54 [00:02:04.000] ----------------------------------------------- -Info 54 [00:02:05.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 54 [00:02:06.000] Files (1) - -Info 54 [00:02:07.000] ----------------------------------------------- -Info 54 [00:02:08.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) -Info 54 [00:02:09.000] Files (1) - -Info 54 [00:02:10.000] ----------------------------------------------- -Info 54 [00:02:11.000] Open files: -Info 54 [00:02:12.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 54 [00:02:13.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 54 [00:02:14.000] FileName: /user/username/projects/myproject/dummy/dummy.ts ProjectRootPath: undefined -Info 54 [00:02:15.000] Projects: /user/username/projects/myproject/dummy/tsconfig.json -Info 54 [00:02:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 55 [00:02:17.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 55 [00:02:18.000] Files (1) - -Info 55 [00:02:19.000] ----------------------------------------------- -Info 55 [00:02:20.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 55 [00:02:21.000] Files (1) - -Info 55 [00:02:22.000] ----------------------------------------------- -Info 55 [00:02:23.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) -Info 55 [00:02:24.000] Files (1) - -Info 55 [00:02:25.000] ----------------------------------------------- -Info 55 [00:02:26.000] Open files: -Info 55 [00:02:27.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 55 [00:02:28.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 55 [00:02:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 56 [00:02:30.000] Search path: /user/username/projects/myproject/dummy -Info 57 [00:02:31.000] For info: /user/username/projects/myproject/dummy/dummy.ts :: Config file name: /user/username/projects/myproject/dummy/tsconfig.json -Info 58 [00:02:32.000] `remove Project:: -Info 59 [00:02:33.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 60 [00:02:34.000] Files (1) +Info 49 [00:01:41.000] ----------------------------------------------- +Info 50 [00:01:42.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 50 [00:01:43.000] Files (1) + +Info 50 [00:01:44.000] ----------------------------------------------- +Info 50 [00:01:45.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 50 [00:01:46.000] Files (1) + +Info 50 [00:01:47.000] ----------------------------------------------- +Info 50 [00:01:48.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) +Info 50 [00:01:49.000] Files (1) + +Info 50 [00:01:50.000] ----------------------------------------------- +Info 50 [00:01:51.000] Open files: +Info 50 [00:01:52.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 50 [00:01:53.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 50 [00:01:54.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined +Info 50 [00:01:55.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 50 [00:01:56.000] FileName: /user/username/projects/myproject/dummy/dummy.ts ProjectRootPath: undefined +Info 50 [00:01:57.000] Projects: /user/username/projects/myproject/dummy/tsconfig.json +Info 50 [00:01:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/b.ts 500 undefined WatchType: Closed Script info +Info 51 [00:01:59.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 51 [00:02:00.000] Files (1) + +Info 51 [00:02:01.000] ----------------------------------------------- +Info 51 [00:02:02.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 51 [00:02:03.000] Files (1) + +Info 51 [00:02:04.000] ----------------------------------------------- +Info 51 [00:02:05.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) +Info 51 [00:02:06.000] Files (1) + +Info 51 [00:02:07.000] ----------------------------------------------- +Info 51 [00:02:08.000] Open files: +Info 51 [00:02:09.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 51 [00:02:10.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 51 [00:02:11.000] FileName: /user/username/projects/myproject/dummy/dummy.ts ProjectRootPath: undefined +Info 51 [00:02:12.000] Projects: /user/username/projects/myproject/dummy/tsconfig.json +Info 51 [00:02:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 52 [00:02:14.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 52 [00:02:15.000] Files (1) + +Info 52 [00:02:16.000] ----------------------------------------------- +Info 52 [00:02:17.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 52 [00:02:18.000] Files (1) + +Info 52 [00:02:19.000] ----------------------------------------------- +Info 52 [00:02:20.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) +Info 52 [00:02:21.000] Files (1) + +Info 52 [00:02:22.000] ----------------------------------------------- +Info 52 [00:02:23.000] Open files: +Info 52 [00:02:24.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 52 [00:02:25.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 52 [00:02:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 53 [00:02:27.000] Search path: /user/username/projects/myproject/dummy +Info 54 [00:02:28.000] For info: /user/username/projects/myproject/dummy/dummy.ts :: Config file name: /user/username/projects/myproject/dummy/tsconfig.json +Info 55 [00:02:29.000] `remove Project:: +Info 56 [00:02:30.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 57 [00:02:31.000] Files (1) /user/username/projects/myproject/b/b.ts b.ts Part of 'files' list in tsconfig.json -Info 61 [00:02:35.000] ----------------------------------------------- -Info 62 [00:02:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file -Info 63 [00:02:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file -Info 64 [00:02:38.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 65 [00:02:39.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 66 [00:02:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 67 [00:02:41.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 68 [00:02:42.000] FileWatcher:: Close:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 69 [00:02:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b/b.ts 500 undefined WatchType: Closed Script info -Info 70 [00:02:44.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 70 [00:02:45.000] Files (1) - -Info 70 [00:02:46.000] ----------------------------------------------- -Info 70 [00:02:47.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) -Info 70 [00:02:48.000] Files (1) - -Info 70 [00:02:49.000] ----------------------------------------------- -Info 70 [00:02:50.000] Open files: -Info 70 [00:02:51.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 70 [00:02:52.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 70 [00:02:53.000] FileName: /user/username/projects/myproject/dummy/dummy.ts ProjectRootPath: undefined -Info 70 [00:02:54.000] Projects: /user/username/projects/myproject/dummy/tsconfig.json -Info 70 [00:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/a.ts 500 undefined WatchType: Closed Script info -Info 71 [00:02:56.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 71 [00:02:57.000] Files (1) - -Info 71 [00:02:58.000] ----------------------------------------------- -Info 71 [00:02:59.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) -Info 71 [00:03:00.000] Files (1) - -Info 71 [00:03:01.000] ----------------------------------------------- -Info 71 [00:03:02.000] Open files: -Info 71 [00:03:03.000] FileName: /user/username/projects/myproject/dummy/dummy.ts ProjectRootPath: undefined -Info 71 [00:03:04.000] Projects: /user/username/projects/myproject/dummy/tsconfig.json -Info 71 [00:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 72 [00:03:06.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 72 [00:03:07.000] Files (1) - -Info 72 [00:03:08.000] ----------------------------------------------- -Info 72 [00:03:09.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) -Info 72 [00:03:10.000] Files (1) - -Info 72 [00:03:11.000] ----------------------------------------------- -Info 72 [00:03:12.000] Open files: -Info 72 [00:03:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 73 [00:03:14.000] Search path: /user/username/projects/myproject/dummy -Info 74 [00:03:15.000] For info: /user/username/projects/myproject/dummy/dummy.ts :: Config file name: /user/username/projects/myproject/dummy/tsconfig.json -Info 75 [00:03:16.000] `remove Project:: -Info 76 [00:03:17.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 77 [00:03:18.000] Files (1) +Info 58 [00:02:32.000] ----------------------------------------------- +Info 59 [00:02:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file +Info 60 [00:02:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file +Info 61 [00:02:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 62 [00:02:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 63 [00:02:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 64 [00:02:38.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 65 [00:02:39.000] FileWatcher:: Close:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 66 [00:02:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b/b.ts 500 undefined WatchType: Closed Script info +Info 67 [00:02:41.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 67 [00:02:42.000] Files (1) + +Info 67 [00:02:43.000] ----------------------------------------------- +Info 67 [00:02:44.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) +Info 67 [00:02:45.000] Files (1) + +Info 67 [00:02:46.000] ----------------------------------------------- +Info 67 [00:02:47.000] Open files: +Info 67 [00:02:48.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 67 [00:02:49.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 67 [00:02:50.000] FileName: /user/username/projects/myproject/dummy/dummy.ts ProjectRootPath: undefined +Info 67 [00:02:51.000] Projects: /user/username/projects/myproject/dummy/tsconfig.json +Info 67 [00:02:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/a.ts 500 undefined WatchType: Closed Script info +Info 68 [00:02:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 68 [00:02:54.000] Files (1) + +Info 68 [00:02:55.000] ----------------------------------------------- +Info 68 [00:02:56.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) +Info 68 [00:02:57.000] Files (1) + +Info 68 [00:02:58.000] ----------------------------------------------- +Info 68 [00:02:59.000] Open files: +Info 68 [00:03:00.000] FileName: /user/username/projects/myproject/dummy/dummy.ts ProjectRootPath: undefined +Info 68 [00:03:01.000] Projects: /user/username/projects/myproject/dummy/tsconfig.json +Info 68 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 69 [00:03:03.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 69 [00:03:04.000] Files (1) + +Info 69 [00:03:05.000] ----------------------------------------------- +Info 69 [00:03:06.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) +Info 69 [00:03:07.000] Files (1) + +Info 69 [00:03:08.000] ----------------------------------------------- +Info 69 [00:03:09.000] Open files: +Info 69 [00:03:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 70 [00:03:11.000] Search path: /user/username/projects/myproject/dummy +Info 71 [00:03:12.000] For info: /user/username/projects/myproject/dummy/dummy.ts :: Config file name: /user/username/projects/myproject/dummy/tsconfig.json +Info 72 [00:03:13.000] `remove Project:: +Info 73 [00:03:14.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 74 [00:03:15.000] Files (1) /user/username/projects/myproject/a/a.ts a.ts Part of 'files' list in tsconfig.json -Info 78 [00:03:19.000] ----------------------------------------------- -Info 79 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file -Info 80 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 81 [00:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 82 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 83 [00:03:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 84 [00:03:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 85 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 86 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a/a.ts 500 undefined WatchType: Closed Script info -Info 87 [00:03:28.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) -Info 87 [00:03:29.000] Files (1) - -Info 87 [00:03:30.000] ----------------------------------------------- -Info 87 [00:03:31.000] Open files: -Info 87 [00:03:32.000] FileName: /user/username/projects/myproject/dummy/dummy.ts ProjectRootPath: undefined -Info 87 [00:03:33.000] Projects: /user/username/projects/myproject/dummy/tsconfig.json \ No newline at end of file +Info 75 [00:03:16.000] ----------------------------------------------- +Info 76 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file +Info 77 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 78 [00:03:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 79 [00:03:20.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 80 [00:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 81 [00:03:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 82 [00:03:23.000] FileWatcher:: Close:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 83 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a/a.ts 500 undefined WatchType: Closed Script info +Info 84 [00:03:25.000] Project '/user/username/projects/myproject/dummy/tsconfig.json' (Configured) +Info 84 [00:03:26.000] Files (1) + +Info 84 [00:03:27.000] ----------------------------------------------- +Info 84 [00:03:28.000] Open files: +Info 84 [00:03:29.000] FileName: /user/username/projects/myproject/dummy/dummy.ts ProjectRootPath: undefined +Info 84 [00:03:30.000] Projects: /user/username/projects/myproject/dummy/tsconfig.json \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/configuredProjects/should-watch-the-extended-configs-of-multiple-projects.js b/tests/baselines/reference/tsserver/configuredProjects/should-watch-the-extended-configs-of-multiple-projects.js index 0f9d98f88c7e8..2ea5cc58cac77 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 @@ -38,35 +38,34 @@ Info 5 [00:00:34.000] Config: /user/username/projects/myproject/a/tsconfig.js } } Info 6 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file -Info 7 [00:00:36.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [00:00:37.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 9 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 10 [00:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 11 [00:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 14 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [00:00:44.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 16 [00:00:45.000] Files (1) +Info 7 [00:00:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 8 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 9 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 10 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 11 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 12 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 13 [00:00:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 14 [00:00:43.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 15 [00:00:44.000] Files (1) /user/username/projects/myproject/a/a.ts a.ts Part of 'files' list in tsconfig.json -Info 17 [00:00:46.000] ----------------------------------------------- -Info 18 [00:00:47.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 18 [00:00:48.000] Files (1) - -Info 18 [00:00:49.000] ----------------------------------------------- -Info 18 [00:00:50.000] Open files: -Info 18 [00:00:51.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 18 [00:00:52.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 18 [00:00:53.000] Search path: /user/username/projects/myproject/b -Info 19 [00:00:54.000] For info: /user/username/projects/myproject/b/b.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 20 [00:00:55.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 21 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file -Info 22 [00:00:57.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 16 [00:00:45.000] ----------------------------------------------- +Info 17 [00:00:46.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 17 [00:00:47.000] Files (1) + +Info 17 [00:00:48.000] ----------------------------------------------- +Info 17 [00:00:49.000] Open files: +Info 17 [00:00:50.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 17 [00:00:51.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 17 [00:00:52.000] Search path: /user/username/projects/myproject/b +Info 18 [00:00:53.000] For info: /user/username/projects/myproject/b/b.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 19 [00:00:54.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json +Info 20 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file +Info 21 [00:00:56.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/b.ts" ], @@ -74,42 +73,41 @@ Info 22 [00:00:57.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 23 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file -Info 24 [00:00:59.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 25 [00:01:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 26 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 27 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 28 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 29 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 30 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 31 [00:01:06.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 32 [00:01:07.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 33 [00:01:08.000] Files (1) +Info 22 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file +Info 23 [00:00:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 24 [00:00:59.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 25 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 26 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 27 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 28 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 29 [00:01:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 30 [00:01:05.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 31 [00:01:06.000] Files (1) /user/username/projects/myproject/b/b.ts b.ts Part of 'files' list in tsconfig.json -Info 34 [00:01:09.000] ----------------------------------------------- -Info 35 [00:01:10.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 35 [00:01:11.000] Files (1) - -Info 35 [00:01:12.000] ----------------------------------------------- -Info 35 [00:01:13.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 35 [00:01:14.000] Files (1) - -Info 35 [00:01:15.000] ----------------------------------------------- -Info 35 [00:01:16.000] Open files: -Info 35 [00:01:17.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 35 [00:01:18.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 35 [00:01:19.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 35 [00:01:20.000] Projects: /user/username/projects/myproject/b/tsconfig.json -Info 35 [00:01:24.000] FileWatcher:: Triggered with /user/username/projects/myproject/extended/alpha.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file -Info 36 [00:01:25.000] Scheduled: /user/username/projects/myproject/a/tsconfig.json -Info 37 [00:01:26.000] Scheduled: /user/username/projects/myproject/b/tsconfig.json -Info 38 [00:01:27.000] Scheduled: *ensureProjectForOpenFiles* -Info 39 [00:01:28.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/extended/alpha.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file +Info 32 [00:01:07.000] ----------------------------------------------- +Info 33 [00:01:08.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 33 [00:01:09.000] Files (1) + +Info 33 [00:01:10.000] ----------------------------------------------- +Info 33 [00:01:11.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 33 [00:01:12.000] Files (1) + +Info 33 [00:01:13.000] ----------------------------------------------- +Info 33 [00:01:14.000] Open files: +Info 33 [00:01:15.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 33 [00:01:16.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 33 [00:01:17.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined +Info 33 [00:01:18.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 33 [00:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/extended/alpha.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file +Info 34 [00:01:23.000] Scheduled: /user/username/projects/myproject/a/tsconfig.json +Info 35 [00:01:24.000] Scheduled: /user/username/projects/myproject/b/tsconfig.json +Info 36 [00:01:25.000] Scheduled: *ensureProjectForOpenFiles* +Info 37 [00:01:26.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/extended/alpha.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/extended/alpha.tsconfig.json] {"compilerOptions":{"strict":true}} @@ -137,9 +135,9 @@ FsWatches:: FsWatchesRecursive:: -Info 40 [00:01:29.000] Running: /user/username/projects/myproject/a/tsconfig.json -Info 41 [00:01:30.000] Reloading configured project /user/username/projects/myproject/a/tsconfig.json -Info 42 [00:01:31.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +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 : { "rootNames": [ "/user/username/projects/myproject/a/a.ts" ], @@ -148,13 +146,12 @@ Info 42 [00:01:31.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 43 [00:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 44 [00:01:33.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 45 [00:01:34.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 46 [00:01:35.000] Different program with same set of files -Info 47 [00:01:36.000] Running: /user/username/projects/myproject/b/tsconfig.json -Info 48 [00:01:37.000] Reloading configured project /user/username/projects/myproject/b/tsconfig.json -Info 49 [00:01:38.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 41 [00:01:30.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 42 [00:01:31.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 43 [00:01:32.000] Different program with same set of files +Info 44 [00:01:33.000] Running: /user/username/projects/myproject/b/tsconfig.json +Info 45 [00:01:34.000] Reloading configured project /user/username/projects/myproject/b/tsconfig.json +Info 46 [00:01:35.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/b.ts" ], @@ -163,39 +160,38 @@ Info 49 [00:01:38.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 50 [00:01:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 51 [00:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 52 [00:01:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 53 [00:01:42.000] Different program with same set of files -Info 54 [00:01:43.000] Running: *ensureProjectForOpenFiles* -Info 55 [00:01:44.000] Before ensureProjectForOpenFiles: -Info 56 [00:01:45.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 56 [00:01:46.000] Files (1) - -Info 56 [00:01:47.000] ----------------------------------------------- -Info 56 [00:01:48.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 56 [00:01:49.000] Files (1) - -Info 56 [00:01:50.000] ----------------------------------------------- -Info 56 [00:01:51.000] Open files: -Info 56 [00:01:52.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 56 [00:01:53.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 56 [00:01:54.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 56 [00:01:55.000] Projects: /user/username/projects/myproject/b/tsconfig.json -Info 56 [00:01:56.000] After ensureProjectForOpenFiles: -Info 57 [00:01:57.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 57 [00:01:58.000] Files (1) - -Info 57 [00:01:59.000] ----------------------------------------------- -Info 57 [00:02:00.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 57 [00:02:01.000] Files (1) - -Info 57 [00:02:02.000] ----------------------------------------------- -Info 57 [00:02:03.000] Open files: -Info 57 [00:02:04.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 57 [00:02:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 57 [00:02:06.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 57 [00:02:07.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 47 [00:01:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 48 [00:01:37.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 49 [00:01:38.000] Different program with same set of files +Info 50 [00:01:39.000] Running: *ensureProjectForOpenFiles* +Info 51 [00:01:40.000] Before ensureProjectForOpenFiles: +Info 52 [00:01:41.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 52 [00:01:42.000] Files (1) + +Info 52 [00:01:43.000] ----------------------------------------------- +Info 52 [00:01:44.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 52 [00:01:45.000] Files (1) + +Info 52 [00:01:46.000] ----------------------------------------------- +Info 52 [00:01:47.000] Open files: +Info 52 [00:01:48.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 52 [00:01:49.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 52 [00:01:50.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined +Info 52 [00:01:51.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 52 [00:01:52.000] After ensureProjectForOpenFiles: +Info 53 [00:01:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 53 [00:01:54.000] Files (1) + +Info 53 [00:01:55.000] ----------------------------------------------- +Info 53 [00:01:56.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 53 [00:01:57.000] Files (1) + +Info 53 [00:01:58.000] ----------------------------------------------- +Info 53 [00:01:59.000] Open files: +Info 53 [00:02:00.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 53 [00:02:01.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 53 [00:02:02.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined +Info 53 [00:02:03.000] Projects: /user/username/projects/myproject/b/tsconfig.json After checking timeout queue length (3) and running PolledWatches:: @@ -220,10 +216,10 @@ FsWatches:: FsWatchesRecursive:: -Info 57 [00:02:11.000] FileWatcher:: Triggered with /user/username/projects/myproject/extended/bravo.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file -Info 58 [00:02:12.000] Scheduled: /user/username/projects/myproject/b/tsconfig.json -Info 59 [00:02:13.000] Scheduled: *ensureProjectForOpenFiles* -Info 60 [00:02:14.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/extended/bravo.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file +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* +Info 56 [00:02:10.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/extended/bravo.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/extended/bravo.tsconfig.json] {"extends":"./alpha.tsconfig.json","compilerOptions":{"strict":false}} @@ -251,9 +247,9 @@ FsWatches:: FsWatchesRecursive:: -Info 61 [00:02:15.000] Running: /user/username/projects/myproject/b/tsconfig.json -Info 62 [00:02:16.000] Reloading configured project /user/username/projects/myproject/b/tsconfig.json -Info 63 [00:02:17.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +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 : { "rootNames": [ "/user/username/projects/myproject/b/b.ts" ], @@ -262,39 +258,38 @@ Info 63 [00:02:17.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 64 [00:02:18.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 65 [00:02:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 66 [00:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 67 [00:02:21.000] Different program with same set of files -Info 68 [00:02:22.000] Running: *ensureProjectForOpenFiles* -Info 69 [00:02:23.000] Before ensureProjectForOpenFiles: -Info 70 [00:02:24.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 70 [00:02:25.000] Files (1) - -Info 70 [00:02:26.000] ----------------------------------------------- -Info 70 [00:02:27.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 70 [00:02:28.000] Files (1) - -Info 70 [00:02:29.000] ----------------------------------------------- -Info 70 [00:02:30.000] Open files: -Info 70 [00:02:31.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 70 [00:02:32.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 70 [00:02:33.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 70 [00:02:34.000] Projects: /user/username/projects/myproject/b/tsconfig.json -Info 70 [00:02:35.000] After ensureProjectForOpenFiles: -Info 71 [00:02:36.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 71 [00:02:37.000] Files (1) - -Info 71 [00:02:38.000] ----------------------------------------------- -Info 71 [00:02:39.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 71 [00:02:40.000] Files (1) - -Info 71 [00:02:41.000] ----------------------------------------------- -Info 71 [00:02:42.000] Open files: -Info 71 [00:02:43.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 71 [00:02:44.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 71 [00:02:45.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 71 [00:02:46.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 60 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 61 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 62 [00:02:16.000] Different program with same set of files +Info 63 [00:02:17.000] Running: *ensureProjectForOpenFiles* +Info 64 [00:02:18.000] Before ensureProjectForOpenFiles: +Info 65 [00:02:19.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 65 [00:02:20.000] Files (1) + +Info 65 [00:02:21.000] ----------------------------------------------- +Info 65 [00:02:22.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 65 [00:02:23.000] Files (1) + +Info 65 [00:02:24.000] ----------------------------------------------- +Info 65 [00:02:25.000] Open files: +Info 65 [00:02:26.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 65 [00:02:27.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 65 [00:02:28.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined +Info 65 [00:02:29.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 65 [00:02:30.000] After ensureProjectForOpenFiles: +Info 66 [00:02:31.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 66 [00:02:32.000] Files (1) + +Info 66 [00:02:33.000] ----------------------------------------------- +Info 66 [00:02:34.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 66 [00:02:35.000] Files (1) + +Info 66 [00:02:36.000] ----------------------------------------------- +Info 66 [00:02:37.000] Open files: +Info 66 [00:02:38.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 66 [00:02:39.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 66 [00:02:40.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined +Info 66 [00:02:41.000] Projects: /user/username/projects/myproject/b/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -319,10 +314,10 @@ FsWatches:: FsWatchesRecursive:: -Info 71 [00:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file -Info 72 [00:02:51.000] Scheduled: /user/username/projects/myproject/b/tsconfig.json -Info 73 [00:02:52.000] Scheduled: *ensureProjectForOpenFiles* -Info 74 [00:02:53.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file +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* +Info 69 [00:02:48.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Config file Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/b/tsconfig.json] {"extends":"../extended/alpha.tsconfig.json"} @@ -350,9 +345,9 @@ FsWatches:: FsWatchesRecursive:: -Info 75 [00:02:54.000] Running: /user/username/projects/myproject/b/tsconfig.json -Info 76 [00:02:55.000] Reloading configured project /user/username/projects/myproject/b/tsconfig.json -Info 77 [00:02:56.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +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 : { "rootNames": [ "/user/username/projects/myproject/b/b.ts" ], @@ -361,42 +356,41 @@ Info 77 [00:02:56.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 78 [00:02:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file -Info 79 [00:02:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 80 [00:02:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 81 [00:03:00.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 82 [00:03:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 83 [00:03:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 4 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 84 [00:03:03.000] Different program with same set of files -Info 85 [00:03:04.000] Running: *ensureProjectForOpenFiles* -Info 86 [00:03:05.000] Before ensureProjectForOpenFiles: -Info 87 [00:03:06.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 87 [00:03:07.000] Files (1) - -Info 87 [00:03:08.000] ----------------------------------------------- -Info 87 [00:03:09.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 87 [00:03:10.000] Files (1) - -Info 87 [00:03:11.000] ----------------------------------------------- -Info 87 [00:03:12.000] Open files: -Info 87 [00:03:13.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 87 [00:03:14.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 87 [00:03:15.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 87 [00:03:16.000] Projects: /user/username/projects/myproject/b/tsconfig.json -Info 87 [00:03:17.000] After ensureProjectForOpenFiles: -Info 88 [00:03:18.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 88 [00:03:19.000] Files (1) - -Info 88 [00:03:20.000] ----------------------------------------------- -Info 88 [00:03:21.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 88 [00:03:22.000] Files (1) - -Info 88 [00:03:23.000] ----------------------------------------------- -Info 88 [00:03:24.000] Open files: -Info 88 [00:03:25.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 88 [00:03:26.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 88 [00:03:27.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 88 [00:03:28.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 73 [00:02:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/extended/bravo.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Extended config file +Info 74 [00:02:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 75 [00:02:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 76 [00:02:55.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 77 [00:02:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 4 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 78 [00:02:57.000] Different program with same set of files +Info 79 [00:02:58.000] Running: *ensureProjectForOpenFiles* +Info 80 [00:02:59.000] Before ensureProjectForOpenFiles: +Info 81 [00:03:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 81 [00:03:01.000] Files (1) + +Info 81 [00:03:02.000] ----------------------------------------------- +Info 81 [00:03:03.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 81 [00:03:04.000] Files (1) + +Info 81 [00:03:05.000] ----------------------------------------------- +Info 81 [00:03:06.000] Open files: +Info 81 [00:03:07.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 81 [00:03:08.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 81 [00:03:09.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined +Info 81 [00:03:10.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 81 [00:03:11.000] After ensureProjectForOpenFiles: +Info 82 [00:03:12.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 82 [00:03:13.000] Files (1) + +Info 82 [00:03:14.000] ----------------------------------------------- +Info 82 [00:03:15.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 82 [00:03:16.000] Files (1) + +Info 82 [00:03:17.000] ----------------------------------------------- +Info 82 [00:03:18.000] Open files: +Info 82 [00:03:19.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 82 [00:03:20.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 82 [00:03:21.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined +Info 82 [00:03:22.000] Projects: /user/username/projects/myproject/b/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -421,11 +415,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 88 [00:03:32.000] FileWatcher:: Triggered with /user/username/projects/myproject/extended/alpha.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file -Info 89 [00:03:33.000] Scheduled: /user/username/projects/myproject/a/tsconfig.json -Info 90 [00:03:34.000] Scheduled: /user/username/projects/myproject/b/tsconfig.json -Info 91 [00:03:35.000] Scheduled: *ensureProjectForOpenFiles* -Info 92 [00:03:36.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/extended/alpha.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file +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 +Info 83 [00:03:27.000] Scheduled: /user/username/projects/myproject/a/tsconfig.json +Info 84 [00:03:28.000] Scheduled: /user/username/projects/myproject/b/tsconfig.json +Info 85 [00:03:29.000] Scheduled: *ensureProjectForOpenFiles* +Info 86 [00:03:30.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/extended/alpha.tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/extended/alpha.tsconfig.json 2000 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Extended config file Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/extended/alpha.tsconfig.json] {} @@ -453,9 +447,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 93 [00:03:37.000] Running: /user/username/projects/myproject/a/tsconfig.json -Info 94 [00:03:38.000] Reloading configured project /user/username/projects/myproject/a/tsconfig.json -Info 95 [00:03:39.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +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 : { "rootNames": [ "/user/username/projects/myproject/a/a.ts" ], @@ -463,13 +457,12 @@ Info 95 [00:03:39.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 96 [00:03:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 97 [00:03:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 98 [00:03:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 99 [00:03:43.000] Different program with same set of files -Info 100 [00:03:44.000] Running: /user/username/projects/myproject/b/tsconfig.json -Info 101 [00:03:45.000] Reloading configured project /user/username/projects/myproject/b/tsconfig.json -Info 102 [00:03:46.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 90 [00:03:34.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 91 [00:03:35.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 92 [00:03:36.000] Different program with same set of files +Info 93 [00:03:37.000] Running: /user/username/projects/myproject/b/tsconfig.json +Info 94 [00:03:38.000] Reloading configured project /user/username/projects/myproject/b/tsconfig.json +Info 95 [00:03:39.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/b.ts" ], @@ -477,39 +470,38 @@ Info 102 [00:03:46.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 103 [00:03:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 104 [00:03:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 105 [00:03:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 5 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 106 [00:03:50.000] Different program with same set of files -Info 107 [00:03:51.000] Running: *ensureProjectForOpenFiles* -Info 108 [00:03:52.000] Before ensureProjectForOpenFiles: -Info 109 [00:03:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 109 [00:03:54.000] Files (1) - -Info 109 [00:03:55.000] ----------------------------------------------- -Info 109 [00:03:56.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 109 [00:03:57.000] Files (1) - -Info 109 [00:03:58.000] ----------------------------------------------- -Info 109 [00:03:59.000] Open files: -Info 109 [00:04:00.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 109 [00:04:01.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 109 [00:04:02.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 109 [00:04:03.000] Projects: /user/username/projects/myproject/b/tsconfig.json -Info 109 [00:04:04.000] After ensureProjectForOpenFiles: -Info 110 [00:04:05.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 110 [00:04:06.000] Files (1) - -Info 110 [00:04:07.000] ----------------------------------------------- -Info 110 [00:04:08.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 110 [00:04:09.000] Files (1) - -Info 110 [00:04:10.000] ----------------------------------------------- -Info 110 [00:04:11.000] Open files: -Info 110 [00:04:12.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined -Info 110 [00:04:13.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 110 [00:04:14.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined -Info 110 [00:04:15.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 96 [00:03:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 97 [00:03:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 5 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 98 [00:03:42.000] Different program with same set of files +Info 99 [00:03:43.000] Running: *ensureProjectForOpenFiles* +Info 100 [00:03:44.000] Before ensureProjectForOpenFiles: +Info 101 [00:03:45.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 101 [00:03:46.000] Files (1) + +Info 101 [00:03:47.000] ----------------------------------------------- +Info 101 [00:03:48.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 101 [00:03:49.000] Files (1) + +Info 101 [00:03:50.000] ----------------------------------------------- +Info 101 [00:03:51.000] Open files: +Info 101 [00:03:52.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 101 [00:03:53.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 101 [00:03:54.000] FileName: /user/username/projects/myproject/b/b.ts ProjectRootPath: undefined +Info 101 [00:03:55.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 101 [00:03:56.000] After ensureProjectForOpenFiles: +Info 102 [00:03:57.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 102 [00:03:58.000] Files (1) + +Info 102 [00:03:59.000] ----------------------------------------------- +Info 102 [00:04:00.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 102 [00:04:01.000] Files (1) + +Info 102 [00:04:02.000] ----------------------------------------------- +Info 102 [00:04:03.000] Open files: +Info 102 [00:04:04.000] FileName: /user/username/projects/myproject/a/a.ts ProjectRootPath: undefined +Info 102 [00:04:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json +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:: 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 e2f7cf847adc3..c8d3287641cb0 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 @@ -70,19 +70,18 @@ Info 7 [00:00:42.000] Config: /user/username/projects/myproject/foo/tsconfig. "configFilePath": "/user/username/projects/myproject/foo/tsconfig.json" } } -Info 8 [00:00:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/foo/tsconfig.json -Info 10 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/bar/index.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2017.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo/node_modules 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo/node_modules 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Type roots -Info 15 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Type roots -Info 16 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Type roots -Info 17 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Type roots -Info 18 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/foo/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [00:00:54.000] Project '/user/username/projects/myproject/foo/tsconfig.json' (Configured) -Info 20 [00:00:55.000] Files (3) +Info 8 [00:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/foo/tsconfig.json +Info 9 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/bar/index.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2017.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo/node_modules 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo/node_modules 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Type roots +Info 14 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/foo/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Type roots +Info 15 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Type roots +Info 16 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/foo/tsconfig.json WatchType: Type roots +Info 17 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/foo/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 18 [00:00:53.000] Project '/user/username/projects/myproject/foo/tsconfig.json' (Configured) +Info 19 [00:00:54.000] Files (3) /a/lib/lib.es2017.d.ts /user/username/projects/myproject/bar/index.ts /user/username/projects/myproject/foo/index.ts @@ -95,20 +94,20 @@ Info 20 [00:00:55.000] Files (3) index.ts Matched by include pattern 'index.ts' in 'tsconfig.json' -Info 21 [00:00:56.000] ----------------------------------------------- -Info 22 [00:00:57.000] event: +Info 20 [00:00:55.000] ----------------------------------------------- +Info 21 [00:00:56.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/foo/tsconfig.json"}} -Info 23 [00:00:58.000] event: +Info 22 [00:00:57.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"36730603d9c37d63f14b455060fadde05a7a93dcbc44aecd507b60e066616be6","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":90,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"lib":["es2017"]},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 24 [00:00:59.000] event: +Info 23 [00:00:58.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/foo/index.ts","configFile":"/user/username/projects/myproject/foo/tsconfig.json","diagnostics":[]}} -Info 25 [00:01:00.000] Project '/user/username/projects/myproject/foo/tsconfig.json' (Configured) -Info 25 [00:01:01.000] Files (3) +Info 24 [00:00:59.000] Project '/user/username/projects/myproject/foo/tsconfig.json' (Configured) +Info 24 [00:01:00.000] Files (3) -Info 25 [00:01:02.000] ----------------------------------------------- -Info 25 [00:01:03.000] Open files: -Info 25 [00:01:04.000] FileName: /user/username/projects/myproject/foo/index.ts ProjectRootPath: undefined -Info 25 [00:01:05.000] Projects: /user/username/projects/myproject/foo/tsconfig.json +Info 24 [00:01:01.000] ----------------------------------------------- +Info 24 [00:01:02.000] Open files: +Info 24 [00:01:03.000] FileName: /user/username/projects/myproject/foo/index.ts ProjectRootPath: undefined +Info 24 [00:01:04.000] Projects: /user/username/projects/myproject/foo/tsconfig.json After request PolledWatches:: @@ -129,11 +128,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/foo/node_modules: {} -Info 25 [00:01:06.000] response: +Info 24 [00:01:05.000] response: { "responseRequired": false } -Info 26 [00:01:07.000] request: +Info 25 [00:01:06.000] request: { "seq": 0, "type": "request", @@ -162,14 +161,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/foo/node_modules: {} -Info 27 [00:01:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/bar/index.ts 500 undefined WatchType: Closed Script info -Info 28 [00:01:09.000] Search path: /user/username/projects/myproject/bar -Info 29 [00:01:10.000] For info: /user/username/projects/myproject/bar/index.ts :: Config file name: /user/username/projects/myproject/bar/tsconfig.json -Info 30 [00:01:11.000] Creating configuration project /user/username/projects/myproject/bar/tsconfig.json -Info 31 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/bar/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Config file -Info 32 [00:01:13.000] event: +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 +Info 29 [00:01:10.000] Creating configuration project /user/username/projects/myproject/bar/tsconfig.json +Info 30 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/bar/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Config file +Info 31 [00:01:12.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/bar/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/bar/index.ts to open"}} -Info 33 [00:01:14.000] Config: /user/username/projects/myproject/bar/tsconfig.json : { +Info 32 [00:01:13.000] Config: /user/username/projects/myproject/bar/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/bar/index.ts" ], @@ -181,16 +180,15 @@ Info 33 [00:01:14.000] Config: /user/username/projects/myproject/bar/tsconfig. "configFilePath": "/user/username/projects/myproject/bar/tsconfig.json" } } -Info 34 [00:01:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/bar/tsconfig.json -Info 36 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.dom.d.ts 500 undefined WatchType: Closed Script info -Info 37 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/bar/node_modules/@types 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Type roots -Info 38 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/bar/node_modules/@types 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Type roots -Info 39 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Type roots -Info 40 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Type roots -Info 41 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/bar/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:23.000] Project '/user/username/projects/myproject/bar/tsconfig.json' (Configured) -Info 43 [00:01:24.000] Files (3) +Info 33 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/bar/tsconfig.json +Info 34 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.dom.d.ts 500 undefined WatchType: Closed Script info +Info 35 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/bar/node_modules/@types 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Type roots +Info 36 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/bar/node_modules/@types 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Type roots +Info 37 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Type roots +Info 38 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/bar/tsconfig.json WatchType: Type roots +Info 39 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/bar/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:21.000] Project '/user/username/projects/myproject/bar/tsconfig.json' (Configured) +Info 41 [00:01:22.000] Files (3) /a/lib/lib.es2017.d.ts /a/lib/lib.dom.d.ts /user/username/projects/myproject/bar/index.ts @@ -203,26 +201,26 @@ Info 43 [00:01:24.000] Files (3) index.ts Matched by include pattern 'index.ts' in 'tsconfig.json' -Info 44 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] event: +Info 42 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/bar/tsconfig.json"}} -Info 46 [00:01:27.000] event: +Info 44 [00:01:25.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"5370ca7ca3faf398ecd694700ec7a0793b5e111125c5b8f56f69d3de23ff19ae","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":56,"tsx":0,"tsxSize":0,"dts":2,"dtsSize":391,"deferred":0,"deferredSize":0},"compilerOptions":{"lib":["dom","es2017"]},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 47 [00:01:28.000] event: +Info 45 [00:01:26.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/bar/index.ts","configFile":"/user/username/projects/myproject/bar/tsconfig.json","diagnostics":[]}} -Info 48 [00:01:29.000] Project '/user/username/projects/myproject/foo/tsconfig.json' (Configured) -Info 48 [00:01:30.000] Files (3) - -Info 48 [00:01:31.000] ----------------------------------------------- -Info 48 [00:01:32.000] Project '/user/username/projects/myproject/bar/tsconfig.json' (Configured) -Info 48 [00:01:33.000] Files (3) - -Info 48 [00:01:34.000] ----------------------------------------------- -Info 48 [00:01:35.000] Open files: -Info 48 [00:01:36.000] FileName: /user/username/projects/myproject/foo/index.ts ProjectRootPath: undefined -Info 48 [00:01:37.000] Projects: /user/username/projects/myproject/foo/tsconfig.json -Info 48 [00:01:38.000] FileName: /user/username/projects/myproject/bar/index.ts ProjectRootPath: undefined -Info 48 [00:01:39.000] Projects: /user/username/projects/myproject/foo/tsconfig.json,/user/username/projects/myproject/bar/tsconfig.json +Info 46 [00:01:27.000] Project '/user/username/projects/myproject/foo/tsconfig.json' (Configured) +Info 46 [00:01:28.000] Files (3) + +Info 46 [00:01:29.000] ----------------------------------------------- +Info 46 [00:01:30.000] Project '/user/username/projects/myproject/bar/tsconfig.json' (Configured) +Info 46 [00:01:31.000] Files (3) + +Info 46 [00:01:32.000] ----------------------------------------------- +Info 46 [00:01:33.000] Open files: +Info 46 [00:01:34.000] FileName: /user/username/projects/myproject/foo/index.ts ProjectRootPath: undefined +Info 46 [00:01:35.000] Projects: /user/username/projects/myproject/foo/tsconfig.json +Info 46 [00:01:36.000] FileName: /user/username/projects/myproject/bar/index.ts ProjectRootPath: undefined +Info 46 [00:01:37.000] Projects: /user/username/projects/myproject/foo/tsconfig.json,/user/username/projects/myproject/bar/tsconfig.json After request PolledWatches:: @@ -247,11 +245,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/foo/node_modules: {} -Info 48 [00:01:40.000] response: +Info 46 [00:01:38.000] response: { "responseRequired": false } -Info 49 [00:01:41.000] request: +Info 47 [00:01:39.000] request: { "command": "geterr", "arguments": { @@ -312,7 +310,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/foo/node_modules: {} -Info 50 [00:01:42.000] response: +Info 48 [00:01:40.000] response: { "responseRequired": false } @@ -340,7 +338,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/foo/node_modules: {} -Info 51 [00:01:43.000] event: +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 @@ -390,7 +388,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/foo/node_modules: {} -Info 52 [00:01:44.000] event: +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) @@ -440,7 +438,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/foo/node_modules: {} -Info 53 [00:01:45.000] event: +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) @@ -490,7 +488,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/foo/node_modules: {} -Info 54 [00:01:46.000] event: +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 @@ -540,7 +538,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/foo/node_modules: {} -Info 55 [00:01:47.000] event: +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) @@ -590,9 +588,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/foo/node_modules: {} -Info 56 [00:01:48.000] event: +Info 54 [00:01:46.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/foo/index.ts","diagnostics":[]}} -Info 57 [00:01:49.000] event: +Info 55 [00:01:47.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/when-changing-module-name-with-different-casing.js b/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/when-changing-module-name-with-different-casing.js index dd8a58caf101c..53e8b7c034a95 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 @@ -57,15 +57,14 @@ Info 7 [00:00:31.000] Config: /user/username/projects/myproject/tsconfig.json } Info 8 [00:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 9 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:34.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/Logger.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 16 [00:00:40.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:00:41.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [00:00:42.000] Files (3) +Info 10 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/Logger.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:35.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 12 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 14 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:39.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:40.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 17 [00:00:41.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/Logger.ts /user/username/projects/myproject/another.ts @@ -79,20 +78,20 @@ Info 18 [00:00:42.000] Files (3) another.ts Matched by default include pattern '**/*' -Info 19 [00:00:43.000] ----------------------------------------------- -Info 20 [00:00:44.000] event: +Info 18 [00:00:42.000] ----------------------------------------------- +Info 19 [00:00:43.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 21 [00:00:45.000] event: +Info 20 [00:00:44.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":71,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"forceConsistentCasingInFileNames":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [00:00:46.000] event: +Info 21 [00:00:45.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/another.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 23 [00:00:47.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [00:00:48.000] Files (3) +Info 22 [00:00:46.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 22 [00:00:47.000] Files (3) -Info 23 [00:00:49.000] ----------------------------------------------- -Info 23 [00:00:50.000] Open files: -Info 23 [00:00:51.000] FileName: /user/username/projects/myproject/another.ts ProjectRootPath: /user/username/projects/myproject -Info 23 [00:00:52.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 22 [00:00:48.000] ----------------------------------------------- +Info 22 [00:00:49.000] Open files: +Info 22 [00:00:50.000] FileName: /user/username/projects/myproject/another.ts ProjectRootPath: /user/username/projects/myproject +Info 22 [00:00:51.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -111,11 +110,11 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 23 [00:00:53.000] response: +Info 22 [00:00:52.000] response: { "responseRequired": false } -Info 24 [00:00:54.000] request: +Info 23 [00:00:53.000] request: { "command": "geterr", "arguments": { @@ -163,7 +162,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 25 [00:00:55.000] response: +Info 24 [00:00:54.000] response: { "responseRequired": false } @@ -185,7 +184,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 26 [00:00:56.000] event: +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 @@ -223,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 27 [00:00:57.000] event: +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) @@ -261,9 +260,9 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 28 [00:00:58.000] event: +Info 27 [00:00:57.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/another.ts","diagnostics":[]}} -Info 29 [00:00:59.000] event: +Info 28 [00:00:58.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -283,7 +282,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 30 [00:01:00.000] request: +Info 29 [00:00:59.000] request: { "command": "updateOpen", "arguments": { @@ -345,12 +344,12 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 31 [00:01:01.000] response: +Info 30 [00:01:00.000] response: { "response": true, "responseRequired": true } -Info 32 [00:01:02.000] request: +Info 31 [00:01:01.000] request: { "command": "geterr", "arguments": { @@ -398,7 +397,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 33 [00:01:03.000] response: +Info 32 [00:01:02.000] response: { "responseRequired": false } @@ -420,10 +419,10 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 34 [00:01:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 35 [00:01:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 36 [00:01:06.000] Different program with same set of files -Info 37 [00:01:07.000] event: +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 +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 @@ -461,7 +460,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 38 [00:01:08.000] event: +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) @@ -499,9 +498,9 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 39 [00:01:09.000] event: +Info 38 [00:01:08.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/another.ts","diagnostics":[]}} -Info 40 [00:01:10.000] event: +Info 39 [00:01:09.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/works-when-renaming-file-with-different-casing.js b/tests/baselines/reference/tsserver/forceConsistentCasingInFileNames/works-when-renaming-file-with-different-casing.js index afe81cfa7972a..3844e02abcde6 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 @@ -57,15 +57,14 @@ Info 7 [00:00:31.000] Config: /user/username/projects/myproject/tsconfig.json } Info 8 [00:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 9 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:34.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/another.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 16 [00:00:40.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:00:41.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [00:00:42.000] Files (3) +Info 10 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/another.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:35.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 12 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 14 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:39.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:40.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 17 [00:00:41.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/Logger.ts /user/username/projects/myproject/another.ts @@ -79,20 +78,20 @@ Info 18 [00:00:42.000] Files (3) another.ts Matched by default include pattern '**/*' -Info 19 [00:00:43.000] ----------------------------------------------- -Info 20 [00:00:44.000] event: +Info 18 [00:00:42.000] ----------------------------------------------- +Info 19 [00:00:43.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 21 [00:00:45.000] event: +Info 20 [00:00:44.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":71,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"forceConsistentCasingInFileNames":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [00:00:46.000] event: +Info 21 [00:00:45.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/Logger.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 23 [00:00:47.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [00:00:48.000] Files (3) +Info 22 [00:00:46.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 22 [00:00:47.000] Files (3) -Info 23 [00:00:49.000] ----------------------------------------------- -Info 23 [00:00:50.000] Open files: -Info 23 [00:00:51.000] FileName: /user/username/projects/myproject/Logger.ts ProjectRootPath: /user/username/projects/myproject -Info 23 [00:00:52.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 22 [00:00:48.000] ----------------------------------------------- +Info 22 [00:00:49.000] Open files: +Info 22 [00:00:50.000] FileName: /user/username/projects/myproject/Logger.ts ProjectRootPath: /user/username/projects/myproject +Info 22 [00:00:51.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -111,11 +110,11 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 23 [00:00:53.000] response: +Info 22 [00:00:52.000] response: { "responseRequired": false } -Info 24 [00:00:54.000] request: +Info 23 [00:00:53.000] request: { "command": "geterr", "arguments": { @@ -163,7 +162,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 25 [00:00:55.000] response: +Info 24 [00:00:54.000] response: { "responseRequired": false } @@ -185,7 +184,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 26 [00:00:56.000] event: +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 @@ -223,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 27 [00:00:57.000] event: +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) @@ -261,9 +260,9 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 28 [00:00:58.000] event: +Info 27 [00:00:57.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/Logger.ts","diagnostics":[]}} -Info 29 [00:00:59.000] event: +Info 28 [00:00:58.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -283,11 +282,11 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 30 [00:01:01.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/Logger.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/Logger.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 32 [00:01:05.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/logger.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/logger.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:07.000] request: +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 +Info 32 [00:01:05.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 33 [00:01:06.000] request: { "seq": 0, "type": "request", @@ -315,12 +314,12 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 35 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/Logger.ts 500 undefined WatchType: Closed Script info -Info 36 [00:01:09.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 36 [00:01:10.000] Files (3) +Info 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) -Info 36 [00:01:11.000] ----------------------------------------------- -Info 36 [00:01:12.000] Open files: +Info 35 [00:01:10.000] ----------------------------------------------- +Info 35 [00:01:11.000] Open files: After request PolledWatches:: @@ -341,11 +340,11 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 36 [00:01:13.000] response: +Info 35 [00:01:12.000] response: { "responseRequired": false } -Info 37 [00:01:14.000] request: +Info 36 [00:01:13.000] request: { "seq": 0, "type": "request", @@ -375,19 +374,19 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 38 [00:01:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/Logger.ts 500 undefined WatchType: Closed Script info -Info 39 [00:01:16.000] Search path: /user/username/projects/myproject -Info 40 [00:01:17.000] For info: /user/username/projects/myproject/Logger.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 41 [00:01:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 42 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 43 [00:01:20.000] Different program with same set of files -Info 44 [00:01:21.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 44 [00:01:22.000] Files (3) +Info 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 +Info 40 [00:01:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 41 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:19.000] Different program with same set of files +Info 43 [00:01:20.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 43 [00:01:21.000] Files (3) -Info 44 [00:01:23.000] ----------------------------------------------- -Info 44 [00:01:24.000] Open files: -Info 44 [00:01:25.000] FileName: /user/username/projects/myproject/Logger.ts ProjectRootPath: /user/username/projects/myproject -Info 44 [00:01:26.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 43 [00:01:22.000] ----------------------------------------------- +Info 43 [00:01:23.000] Open files: +Info 43 [00:01:24.000] FileName: /user/username/projects/myproject/Logger.ts ProjectRootPath: /user/username/projects/myproject +Info 43 [00:01:25.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -406,11 +405,11 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 44 [00:01:27.000] response: +Info 43 [00:01:26.000] response: { "responseRequired": false } -Info 45 [00:01:28.000] request: +Info 44 [00:01:27.000] request: { "seq": 0, "type": "request", @@ -438,18 +437,18 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 46 [00:01:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/another.ts 500 undefined WatchType: Closed Script info -Info 47 [00:01:30.000] Search path: /user/username/projects/myproject -Info 48 [00:01:31.000] For info: /user/username/projects/myproject/another.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 49 [00:01:32.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 49 [00:01:33.000] Files (3) +Info 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 +Info 48 [00:01:31.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 48 [00:01:32.000] Files (3) -Info 49 [00:01:34.000] ----------------------------------------------- -Info 49 [00:01:35.000] Open files: -Info 49 [00:01:36.000] FileName: /user/username/projects/myproject/Logger.ts ProjectRootPath: /user/username/projects/myproject -Info 49 [00:01:37.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 49 [00:01:38.000] FileName: /user/username/projects/myproject/another.ts ProjectRootPath: /user/username/projects/myproject -Info 49 [00:01:39.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 48 [00:01:33.000] ----------------------------------------------- +Info 48 [00:01:34.000] Open files: +Info 48 [00:01:35.000] FileName: /user/username/projects/myproject/Logger.ts ProjectRootPath: /user/username/projects/myproject +Info 48 [00:01:36.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 48 [00:01:37.000] FileName: /user/username/projects/myproject/another.ts ProjectRootPath: /user/username/projects/myproject +Info 48 [00:01:38.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -466,11 +465,11 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 49 [00:01:40.000] response: +Info 48 [00:01:39.000] response: { "responseRequired": false } -Info 50 [00:01:41.000] request: +Info 49 [00:01:40.000] request: { "command": "updateOpen", "arguments": { @@ -528,12 +527,12 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 51 [00:01:42.000] response: +Info 50 [00:01:41.000] response: { "response": true, "responseRequired": true } -Info 52 [00:01:43.000] request: +Info 51 [00:01:42.000] request: { "command": "geterr", "arguments": { @@ -578,7 +577,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 53 [00:01:44.000] response: +Info 52 [00:01:43.000] response: { "responseRequired": false } @@ -598,10 +597,10 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 54 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 55 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 56 [00:01:47.000] Different program with same set of files -Info 57 [00:01:48.000] event: +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 +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 @@ -635,7 +634,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 58 [00:01:49.000] event: +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) @@ -669,7 +668,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 59 [00:01:50.000] event: +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) @@ -703,7 +702,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 60 [00:01:51.000] event: +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 @@ -737,7 +736,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 61 [00:01:52.000] event: +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) @@ -771,9 +770,9 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 62 [00:01:53.000] event: +Info 61 [00:01:52.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/another.ts","diagnostics":[]}} -Info 63 [00:01:54.000] event: +Info 62 [00:01:53.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/inferredProjects/create-inferred-project.js b/tests/baselines/reference/tsserver/inferredProjects/create-inferred-project.js index 83eded5048dce..9a3203654dc8a 100644 --- a/tests/baselines/reference/tsserver/inferredProjects/create-inferred-project.js +++ b/tests/baselines/reference/tsserver/inferredProjects/create-inferred-project.js @@ -31,19 +31,18 @@ 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] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 4 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 5 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 6 [00:00:27.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 7 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 8 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 9 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/module.d.ts 500 undefined WatchType: Closed Script info -Info 10 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 12 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 13 [00:00:34.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 14 [00:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 15 [00:00:36.000] Files (3) +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 +Info 4 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 5 [00:00:26.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 6 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 7 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 8 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/module.d.ts 500 undefined WatchType: Closed Script info +Info 9 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 11 [00:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 12 [00:00:33.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 13 [00:00:34.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 14 [00:00:35.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/module.d.ts /user/username/projects/myproject/app.ts @@ -56,11 +55,11 @@ Info 15 [00:00:36.000] Files (3) app.ts Root file specified for compilation -Info 16 [00:00:37.000] ----------------------------------------------- -Info 17 [00:00:38.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 17 [00:00:39.000] Files (3) +Info 15 [00:00:36.000] ----------------------------------------------- +Info 16 [00:00:37.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 16 [00:00:38.000] Files (3) -Info 17 [00:00:40.000] ----------------------------------------------- -Info 17 [00:00:41.000] Open files: -Info 17 [00:00:42.000] FileName: /user/username/projects/myproject/app.ts ProjectRootPath: undefined -Info 17 [00:00:43.000] Projects: /dev/null/inferredProject1* \ No newline at end of file +Info 16 [00:00:39.000] ----------------------------------------------- +Info 16 [00:00:40.000] Open files: +Info 16 [00:00:41.000] FileName: /user/username/projects/myproject/app.ts ProjectRootPath: undefined +Info 16 [00:00:42.000] Projects: /dev/null/inferredProject1* \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/moduleResolution/package-json-file-is-edited-when-package-json-with-type-module-exists.js b/tests/baselines/reference/tsserver/moduleResolution/package-json-file-is-edited-when-package-json-with-type-module-exists.js index 9df87c4ece409..e52562ddae34b 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 @@ -66,31 +66,30 @@ Info 7 [00:00:34.000] Config: /user/username/projects/myproject/src/tsconfig. } Info 8 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/src/tsconfig.json WatchType: Wild card directory Info 9 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/src/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/fileB.mts 500 undefined WatchType: Closed Script info -Info 12 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 13 [00:00:40.000] File '/user/username/projects/myproject/src/package.json' does not exist. -Info 14 [00:00:41.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. -Info 15 [00:00:42.000] 'package.json' does not have a 'typesVersions' field. -Info 16 [00:00:43.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== -Info 17 [00:00:44.000] Module resolution kind is not specified, using 'Node16'. -Info 18 [00:00:45.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. -Info 19 [00:00:46.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. -Info 20 [00:00:47.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. -Info 21 [00:00:48.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== -Info 22 [00:00:49.000] File '/a/lib/package.json' does not exist. -Info 23 [00:00:50.000] File '/a/package.json' does not exist. -Info 24 [00:00:51.000] File '/package.json' does not exist. -Info 25 [00:00:52.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info -Info 26 [00:00:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 27 [00:00:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 28 [00:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots -Info 29 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots -Info 30 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots -Info 31 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots -Info 32 [00:00:59.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 33 [00:01:00.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 34 [00:01:01.000] Files (3) +Info 10 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/fileB.mts 500 undefined WatchType: Closed Script info +Info 11 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 12 [00:00:39.000] File '/user/username/projects/myproject/src/package.json' does not exist. +Info 13 [00:00:40.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. +Info 14 [00:00:41.000] 'package.json' does not have a 'typesVersions' field. +Info 15 [00:00:42.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== +Info 16 [00:00:43.000] Module resolution kind is not specified, using 'Node16'. +Info 17 [00:00:44.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. +Info 18 [00:00:45.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. +Info 19 [00:00:46.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. +Info 20 [00:00:47.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== +Info 21 [00:00:48.000] File '/a/lib/package.json' does not exist. +Info 22 [00:00:49.000] File '/a/package.json' does not exist. +Info 23 [00:00:50.000] File '/package.json' does not exist. +Info 24 [00:00:51.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info +Info 25 [00:00:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 26 [00:00:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 27 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots +Info 28 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots +Info 29 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots +Info 30 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots +Info 31 [00:00:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 32 [00:00:59.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 33 [00:01:00.000] Files (3) /a/lib/lib.es2016.full.d.ts /user/username/projects/myproject/src/fileB.mts /user/username/projects/myproject/src/fileA.ts @@ -105,21 +104,21 @@ Info 34 [00:01:01.000] Files (3) Matched by default include pattern '**/*' File is ECMAScript module because '../package.json' has field "type" with value "module" -Info 35 [00:01:02.000] ----------------------------------------------- -Info 36 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 37 [00:01:04.000] event: +Info 34 [00:01:01.000] ----------------------------------------------- +Info 35 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 36 [00:01:03.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/src/tsconfig.json"}} -Info 38 [00:01:05.000] event: +Info 37 [00:01:04.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"f026568af42c61ce0537de8ee0fa07c9359a76dcfb046248ed49dc76c91e4a37","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":68,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"target":"es2016","module":"node16","outDir":"","traceResolution":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 39 [00:01:06.000] event: +Info 38 [00:01:05.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/fileA.ts","configFile":"/user/username/projects/myproject/src/tsconfig.json","diagnostics":[]}} -Info 40 [00:01:07.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 40 [00:01:08.000] Files (3) +Info 39 [00:01:06.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 39 [00:01:07.000] Files (3) -Info 40 [00:01:09.000] ----------------------------------------------- -Info 40 [00:01:10.000] Open files: -Info 40 [00:01:11.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 40 [00:01:12.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 39 [00:01:08.000] ----------------------------------------------- +Info 39 [00:01:09.000] Open files: +Info 39 [00:01:10.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 39 [00:01:11.000] Projects: /user/username/projects/myproject/src/tsconfig.json After request PolledWatches:: @@ -144,16 +143,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 40 [00:01:13.000] response: +Info 39 [00:01:12.000] response: { "responseRequired": false } -Info 41 [00:01:14.000] Modify package json file to remove type module -Info 42 [00:01:18.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 43 [00:01:19.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 44 [00:01:20.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 45 [00:01:21.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 46 [00:01:22.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 40 [00:01:13.000] Modify package json file to remove type module +Info 41 [00:01:17.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 42 [00:01:18.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 43 [00:01:19.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 44 [00:01:20.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 45 [00:01:21.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file Before running timeout callbacks //// [/user/username/projects/myproject/package.json] {"name":"app","version":"1.0.0"} @@ -181,9 +180,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 47 [00:01:23.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 48 [00:01:24.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 49 [00:01:25.000] Scheduled: *ensureProjectForOpenFiles* +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:: @@ -232,51 +231,51 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 50 [00:01:26.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 51 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 52 [00:01:28.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 53 [00:01:29.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 54 [00:01:30.000] File '/package.json' does not exist according to earlier cached lookups. -Info 55 [00:01:31.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 56 [00:01:32.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. -Info 57 [00:01:33.000] 'package.json' does not have a 'typesVersions' field. -Info 58 [00:01:34.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 59 [00:01:35.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. -Info 60 [00:01:36.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== -Info 61 [00:01:37.000] Module resolution kind is not specified, using 'Node16'. -Info 62 [00:01:38.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. -Info 63 [00:01:39.000] File '/user/username/projects/myproject/src/fileB.mjs.ts' does not exist. -Info 64 [00:01:40.000] File '/user/username/projects/myproject/src/fileB.mjs.tsx' does not exist. -Info 65 [00:01:41.000] File '/user/username/projects/myproject/src/fileB.mjs.d.ts' does not exist. -Info 66 [00:01:42.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. -Info 67 [00:01:43.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. -Info 68 [00:01:44.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== -Info 69 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 71 [00:01:47.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 72 [00:01:48.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 73 [00:01:49.000] File '/package.json' does not exist according to earlier cached lookups. -Info 74 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 75 [00:01:51.000] Different program with same set of files -Info 76 [00:01:52.000] Running: *ensureProjectForOpenFiles* -Info 77 [00:01:53.000] Before ensureProjectForOpenFiles: -Info 78 [00:01:54.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 78 [00:01:55.000] Files (3) - -Info 78 [00:01:56.000] ----------------------------------------------- -Info 78 [00:01:57.000] Open files: -Info 78 [00:01:58.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 78 [00:01:59.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 78 [00:02:00.000] After ensureProjectForOpenFiles: -Info 79 [00:02:01.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 79 [00:02:02.000] Files (3) - -Info 79 [00:02:03.000] ----------------------------------------------- -Info 79 [00:02:04.000] Open files: -Info 79 [00:02:05.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 79 [00:02:06.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 79 [00:02:07.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 80 [00:02:08.000] event: +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. +Info 52 [00:01:28.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 53 [00:01:29.000] File '/package.json' does not exist according to earlier cached lookups. +Info 54 [00:01:30.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 55 [00:01:31.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. +Info 56 [00:01:32.000] 'package.json' does not have a 'typesVersions' field. +Info 57 [00:01:33.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 58 [00:01:34.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. +Info 59 [00:01:35.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== +Info 60 [00:01:36.000] Module resolution kind is not specified, using 'Node16'. +Info 61 [00:01:37.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. +Info 62 [00:01:38.000] File '/user/username/projects/myproject/src/fileB.mjs.ts' does not exist. +Info 63 [00:01:39.000] File '/user/username/projects/myproject/src/fileB.mjs.tsx' does not exist. +Info 64 [00:01:40.000] File '/user/username/projects/myproject/src/fileB.mjs.d.ts' does not exist. +Info 65 [00:01:41.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. +Info 66 [00:01:42.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. +Info 67 [00:01:43.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== +Info 68 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 69 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 70 [00:01:46.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 71 [00:01:47.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 72 [00:01:48.000] File '/package.json' does not exist according to earlier cached lookups. +Info 73 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 74 [00:01:50.000] Different program with same set of files +Info 75 [00:01:51.000] Running: *ensureProjectForOpenFiles* +Info 76 [00:01:52.000] Before ensureProjectForOpenFiles: +Info 77 [00:01:53.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 77 [00:01:54.000] Files (3) + +Info 77 [00:01:55.000] ----------------------------------------------- +Info 77 [00:01:56.000] Open files: +Info 77 [00:01:57.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 77 [00:01:58.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 77 [00:01:59.000] After ensureProjectForOpenFiles: +Info 78 [00:02:00.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 78 [00:02:01.000] Files (3) + +Info 78 [00:02:02.000] ----------------------------------------------- +Info 78 [00:02:03.000] Open files: +Info 78 [00:02:04.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 78 [00:02:05.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 78 [00:02:06.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 79 [00:02:07.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks @@ -304,7 +303,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 81 [00:02:09.000] request: +Info 80 [00:02:08.000] request: { "command": "geterr", "arguments": { @@ -368,7 +367,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 82 [00:02:10.000] response: +Info 81 [00:02:09.000] response: { "responseRequired": false } @@ -398,7 +397,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 83 [00:02:11.000] event: +Info 82 [00:02:10.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -452,7 +451,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 84 [00:02:12.000] event: +Info 83 [00:02:11.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.\n To convert this file to an ECMAScript module, change its file extension to '.mts', or add the field `\"type\": \"module\"` to '/user/username/projects/myproject/package.json'.","code":1479,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -506,9 +505,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 85 [00:02:13.000] event: +Info 84 [00:02:12.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 86 [00:02:14.000] event: +Info 85 [00:02:13.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -536,12 +535,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 87 [00:02:15.000] Modify package json file to add type module -Info 88 [00:02:19.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 89 [00:02:20.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 90 [00:02:21.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 91 [00:02:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 92 [00:02:23.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 86 [00:02:14.000] Modify package json file to add type module +Info 87 [00:02:18.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 88 [00:02:19.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 89 [00:02:20.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 90 [00:02:21.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 91 [00:02:22.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file Before running timeout callbacks //// [/user/username/projects/myproject/package.json] {"name":"app","version":"1.0.0","type":"module"} @@ -571,9 +570,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 93 [00:02:24.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 94 [00:02:25.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 95 [00:02:26.000] Scheduled: *ensureProjectForOpenFiles* +Info 92 [00:02:23.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 93 [00:02:24.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 94 [00:02:25.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -626,48 +625,48 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 96 [00:02:27.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 97 [00:02:28.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 98 [00:02:29.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 99 [00:02:30.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 100 [00:02:31.000] File '/package.json' does not exist according to earlier cached lookups. -Info 101 [00:02:32.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 102 [00:02:33.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. -Info 103 [00:02:34.000] 'package.json' does not have a 'typesVersions' field. -Info 104 [00:02:35.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 105 [00:02:36.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. -Info 106 [00:02:37.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== -Info 107 [00:02:38.000] Module resolution kind is not specified, using 'Node16'. -Info 108 [00:02:39.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. -Info 109 [00:02:40.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. -Info 110 [00:02:41.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. -Info 111 [00:02:42.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== -Info 112 [00:02:43.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 113 [00:02:44.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 114 [00:02:45.000] File '/package.json' does not exist according to earlier cached lookups. -Info 115 [00:02:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 116 [00:02:47.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 117 [00:02:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 118 [00:02:49.000] Different program with same set of files -Info 119 [00:02:50.000] Running: *ensureProjectForOpenFiles* -Info 120 [00:02:51.000] Before ensureProjectForOpenFiles: -Info 121 [00:02:52.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 121 [00:02:53.000] Files (3) - -Info 121 [00:02:54.000] ----------------------------------------------- -Info 121 [00:02:55.000] Open files: -Info 121 [00:02:56.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 121 [00:02:57.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 121 [00:02:58.000] After ensureProjectForOpenFiles: -Info 122 [00:02:59.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 122 [00:03:00.000] Files (3) - -Info 122 [00:03:01.000] ----------------------------------------------- -Info 122 [00:03:02.000] Open files: -Info 122 [00:03:03.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 122 [00:03:04.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 122 [00:03:05.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 123 [00:03:06.000] event: +Info 95 [00:02:26.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 96 [00:02:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 97 [00:02:28.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 98 [00:02:29.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 99 [00:02:30.000] File '/package.json' does not exist according to earlier cached lookups. +Info 100 [00:02:31.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 101 [00:02:32.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. +Info 102 [00:02:33.000] 'package.json' does not have a 'typesVersions' field. +Info 103 [00:02:34.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 104 [00:02:35.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. +Info 105 [00:02:36.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== +Info 106 [00:02:37.000] Module resolution kind is not specified, using 'Node16'. +Info 107 [00:02:38.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. +Info 108 [00:02:39.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. +Info 109 [00:02:40.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. +Info 110 [00:02:41.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== +Info 111 [00:02:42.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 112 [00:02:43.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 113 [00:02:44.000] File '/package.json' does not exist according to earlier cached lookups. +Info 114 [00:02:45.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 115 [00:02:46.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 116 [00:02:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 117 [00:02:48.000] Different program with same set of files +Info 118 [00:02:49.000] Running: *ensureProjectForOpenFiles* +Info 119 [00:02:50.000] Before ensureProjectForOpenFiles: +Info 120 [00:02:51.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 120 [00:02:52.000] Files (3) + +Info 120 [00:02:53.000] ----------------------------------------------- +Info 120 [00:02:54.000] Open files: +Info 120 [00:02:55.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 120 [00:02:56.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 120 [00:02:57.000] After ensureProjectForOpenFiles: +Info 121 [00:02:58.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 121 [00:02:59.000] Files (3) + +Info 121 [00:03:00.000] ----------------------------------------------- +Info 121 [00:03:01.000] Open files: +Info 121 [00:03:02.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 121 [00:03:03.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 121 [00:03:04.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 122 [00:03:05.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks @@ -693,7 +692,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 124 [00:03:07.000] request: +Info 123 [00:03:06.000] request: { "command": "geterr", "arguments": { @@ -753,7 +752,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 125 [00:03:08.000] response: +Info 124 [00:03:07.000] response: { "responseRequired": false } @@ -781,7 +780,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 126 [00:03:09.000] event: +Info 125 [00:03:08.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -831,7 +830,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 127 [00:03:10.000] event: +Info 126 [00:03:09.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -881,9 +880,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 128 [00:03:11.000] event: +Info 127 [00:03:10.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 129 [00:03:12.000] event: +Info 128 [00:03:11.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) @@ -909,13 +908,13 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 130 [00:03:13.000] Delete package.json -Info 131 [00:03:15.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 132 [00:03:16.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 133 [00:03:17.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 134 [00:03:18.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 135 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 136 [00:03:20.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 129 [00:03:12.000] Delete package.json +Info 130 [00:03:14.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 131 [00:03:15.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 132 [00:03:16.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 133 [00:03:17.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 134 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 135 [00:03:19.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file Before running timeout callbacks //// [/user/username/projects/myproject/package.json] deleted @@ -941,9 +940,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 137 [00:03:21.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 138 [00:03:22.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 139 [00:03:23.000] Scheduled: *ensureProjectForOpenFiles* +Info 136 [00:03:20.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 137 [00:03:21.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 138 [00:03:22.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -992,48 +991,48 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 140 [00:03:24.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 141 [00:03:25.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 142 [00:03:26.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 143 [00:03:27.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 144 [00:03:28.000] File '/package.json' does not exist according to earlier cached lookups. -Info 145 [00:03:29.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 146 [00:03:30.000] File '/user/username/projects/myproject/package.json' does not exist. -Info 147 [00:03:31.000] File '/user/username/projects/package.json' does not exist. -Info 148 [00:03:32.000] File '/user/username/package.json' does not exist. -Info 149 [00:03:33.000] File '/user/package.json' does not exist. -Info 150 [00:03:34.000] File '/package.json' does not exist according to earlier cached lookups. -Info 151 [00:03:35.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 152 [00:03:36.000] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. -Info 153 [00:03:37.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. -Info 154 [00:03:38.000] File '/user/username/package.json' does not exist according to earlier cached lookups. -Info 155 [00:03:39.000] File '/user/package.json' does not exist according to earlier cached lookups. -Info 156 [00:03:40.000] File '/package.json' does not exist according to earlier cached lookups. -Info 157 [00:03:41.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 158 [00:03:42.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 159 [00:03:43.000] File '/package.json' does not exist according to earlier cached lookups. -Info 160 [00:03:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 161 [00:03:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 162 [00:03:46.000] Different program with same set of files -Info 163 [00:03:47.000] Running: *ensureProjectForOpenFiles* -Info 164 [00:03:48.000] Before ensureProjectForOpenFiles: -Info 165 [00:03:49.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 165 [00:03:50.000] Files (3) - -Info 165 [00:03:51.000] ----------------------------------------------- -Info 165 [00:03:52.000] Open files: -Info 165 [00:03:53.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 165 [00:03:54.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 165 [00:03:55.000] After ensureProjectForOpenFiles: -Info 166 [00:03:56.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 166 [00:03:57.000] Files (3) - -Info 166 [00:03:58.000] ----------------------------------------------- -Info 166 [00:03:59.000] Open files: -Info 166 [00:04:00.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 166 [00:04:01.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 166 [00:04:02.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 167 [00:04:03.000] event: +Info 139 [00:03:23.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 140 [00:03:24.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 141 [00:03:25.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 142 [00:03:26.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 143 [00:03:27.000] File '/package.json' does not exist according to earlier cached lookups. +Info 144 [00:03:28.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 145 [00:03:29.000] File '/user/username/projects/myproject/package.json' does not exist. +Info 146 [00:03:30.000] File '/user/username/projects/package.json' does not exist. +Info 147 [00:03:31.000] File '/user/username/package.json' does not exist. +Info 148 [00:03:32.000] File '/user/package.json' does not exist. +Info 149 [00:03:33.000] File '/package.json' does not exist according to earlier cached lookups. +Info 150 [00:03:34.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 151 [00:03:35.000] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. +Info 152 [00:03:36.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. +Info 153 [00:03:37.000] File '/user/username/package.json' does not exist according to earlier cached lookups. +Info 154 [00:03:38.000] File '/user/package.json' does not exist according to earlier cached lookups. +Info 155 [00:03:39.000] File '/package.json' does not exist according to earlier cached lookups. +Info 156 [00:03:40.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 157 [00:03:41.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 158 [00:03:42.000] File '/package.json' does not exist according to earlier cached lookups. +Info 159 [00:03:43.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 160 [00:03:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 161 [00:03:45.000] Different program with same set of files +Info 162 [00:03:46.000] Running: *ensureProjectForOpenFiles* +Info 163 [00:03:47.000] Before ensureProjectForOpenFiles: +Info 164 [00:03:48.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 164 [00:03:49.000] Files (3) + +Info 164 [00:03:50.000] ----------------------------------------------- +Info 164 [00:03:51.000] Open files: +Info 164 [00:03:52.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 164 [00:03:53.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 164 [00:03:54.000] After ensureProjectForOpenFiles: +Info 165 [00:03:55.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 165 [00:03:56.000] Files (3) + +Info 165 [00:03:57.000] ----------------------------------------------- +Info 165 [00:03:58.000] Open files: +Info 165 [00:03:59.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 165 [00:04:00.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 165 [00:04:01.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 166 [00:04:02.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks @@ -1061,7 +1060,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 168 [00:04:04.000] request: +Info 167 [00:04:03.000] request: { "command": "geterr", "arguments": { @@ -1125,7 +1124,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 169 [00:04:05.000] response: +Info 168 [00:04:04.000] response: { "responseRequired": false } @@ -1155,7 +1154,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 170 [00:04:06.000] event: +Info 169 [00:04: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 @@ -1209,7 +1208,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 171 [00:04:07.000] event: +Info 170 [00:04: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 create a local package.json file with `{ \"type\": \"module\" }`.","code":1479,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -1263,9 +1262,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 172 [00:04:08.000] event: +Info 171 [00:04:07.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 173 [00:04:09.000] event: +Info 172 [00:04:08.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) @@ -1293,10 +1292,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 174 [00:04:10.000] Modify package json file to without type module -Info 175 [00:04:13.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 176 [00:04:14.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 177 [00:04:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 173 [00:04:09.000] Modify package json file to without type module +Info 174 [00:04:12.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 175 [00:04:13.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 176 [00:04:14.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution Before running timeout callbacks //// [/user/username/projects/myproject/package.json] {"name":"app","version":"1.0.0"} @@ -1326,9 +1325,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 178 [00:04:16.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 179 [00:04:17.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 180 [00:04:18.000] Scheduled: *ensureProjectForOpenFiles* +Info 177 [00:04:15.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 178 [00:04:16.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 179 [00:04:17.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -1381,52 +1380,52 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 181 [00:04:19.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 182 [00:04:20.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 183 [00:04:21.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 184 [00:04:22.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 185 [00:04:23.000] File '/package.json' does not exist according to earlier cached lookups. -Info 186 [00:04:24.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 187 [00:04:25.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. -Info 188 [00:04:26.000] 'package.json' does not have a 'typesVersions' field. -Info 189 [00:04:27.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 190 [00:04:28.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. -Info 191 [00:04:29.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== -Info 192 [00:04:30.000] Module resolution kind is not specified, using 'Node16'. -Info 193 [00:04:31.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. -Info 194 [00:04:32.000] File '/user/username/projects/myproject/src/fileB.mjs.ts' does not exist. -Info 195 [00:04:33.000] File '/user/username/projects/myproject/src/fileB.mjs.tsx' does not exist. -Info 196 [00:04:34.000] File '/user/username/projects/myproject/src/fileB.mjs.d.ts' does not exist. -Info 197 [00:04:35.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. -Info 198 [00:04:36.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. -Info 199 [00:04:37.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== -Info 200 [00:04:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 201 [00:04:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 202 [00:04:40.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 203 [00:04:41.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 204 [00:04:42.000] File '/package.json' does not exist according to earlier cached lookups. -Info 205 [00:04:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 206 [00:04:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 5 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 207 [00:04:45.000] Different program with same set of files -Info 208 [00:04:46.000] Running: *ensureProjectForOpenFiles* -Info 209 [00:04:47.000] Before ensureProjectForOpenFiles: -Info 210 [00:04:48.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 210 [00:04:49.000] Files (3) - -Info 210 [00:04:50.000] ----------------------------------------------- -Info 210 [00:04:51.000] Open files: -Info 210 [00:04:52.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 210 [00:04:53.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 210 [00:04:54.000] After ensureProjectForOpenFiles: -Info 211 [00:04:55.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 211 [00:04:56.000] Files (3) - -Info 211 [00:04:57.000] ----------------------------------------------- -Info 211 [00:04:58.000] Open files: -Info 211 [00:04:59.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 211 [00:05:00.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 211 [00:05:01.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 212 [00:05:02.000] event: +Info 180 [00:04:18.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 181 [00:04:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 182 [00:04:20.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 183 [00:04:21.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 184 [00:04:22.000] File '/package.json' does not exist according to earlier cached lookups. +Info 185 [00:04:23.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 186 [00:04:24.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. +Info 187 [00:04:25.000] 'package.json' does not have a 'typesVersions' field. +Info 188 [00:04:26.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 189 [00:04:27.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. +Info 190 [00:04:28.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== +Info 191 [00:04:29.000] Module resolution kind is not specified, using 'Node16'. +Info 192 [00:04:30.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. +Info 193 [00:04:31.000] File '/user/username/projects/myproject/src/fileB.mjs.ts' does not exist. +Info 194 [00:04:32.000] File '/user/username/projects/myproject/src/fileB.mjs.tsx' does not exist. +Info 195 [00:04:33.000] File '/user/username/projects/myproject/src/fileB.mjs.d.ts' does not exist. +Info 196 [00:04:34.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. +Info 197 [00:04:35.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. +Info 198 [00:04:36.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== +Info 199 [00:04:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 200 [00:04:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 201 [00:04:39.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 202 [00:04:40.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 203 [00:04:41.000] File '/package.json' does not exist according to earlier cached lookups. +Info 204 [00:04:42.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 205 [00:04:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 5 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 206 [00:04:44.000] Different program with same set of files +Info 207 [00:04:45.000] Running: *ensureProjectForOpenFiles* +Info 208 [00:04:46.000] Before ensureProjectForOpenFiles: +Info 209 [00:04:47.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 209 [00:04:48.000] Files (3) + +Info 209 [00:04:49.000] ----------------------------------------------- +Info 209 [00:04:50.000] Open files: +Info 209 [00:04:51.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 209 [00:04:52.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 209 [00:04:53.000] After ensureProjectForOpenFiles: +Info 210 [00:04:54.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 210 [00:04:55.000] Files (3) + +Info 210 [00:04:56.000] ----------------------------------------------- +Info 210 [00:04:57.000] Open files: +Info 210 [00:04:58.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 210 [00:04:59.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 210 [00:05:00.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 211 [00:05:01.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks @@ -1454,7 +1453,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 213 [00:05:03.000] request: +Info 212 [00:05:02.000] request: { "command": "geterr", "arguments": { @@ -1518,7 +1517,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 214 [00:05:04.000] response: +Info 213 [00:05:03.000] response: { "responseRequired": false } @@ -1548,7 +1547,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 215 [00:05:05.000] event: +Info 214 [00:05:04.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -1602,7 +1601,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 216 [00:05:06.000] event: +Info 215 [00:05:05.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.\n To convert this file to an ECMAScript module, change its file extension to '.mts', or add the field `\"type\": \"module\"` to '/user/username/projects/myproject/package.json'.","code":1479,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -1656,9 +1655,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 217 [00:05:07.000] event: +Info 216 [00:05:06.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 218 [00:05:08.000] event: +Info 217 [00:05:07.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) @@ -1686,10 +1685,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 219 [00:05:09.000] Delete package.json -Info 220 [00:05:11.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 221 [00:05:12.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 222 [00:05:13.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 218 [00:05:08.000] Delete package.json +Info 219 [00:05:10.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 220 [00:05:11.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 221 [00:05:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution Before running timeout callbacks //// [/user/username/projects/myproject/package.json] deleted @@ -1717,9 +1716,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 223 [00:05:14.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 224 [00:05:15.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 225 [00:05:16.000] Scheduled: *ensureProjectForOpenFiles* +Info 222 [00:05:13.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 223 [00:05:14.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 224 [00:05:15.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -1772,49 +1771,49 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 226 [00:05:17.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 227 [00:05:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 228 [00:05:19.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 229 [00:05:20.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 230 [00:05:21.000] File '/package.json' does not exist according to earlier cached lookups. -Info 231 [00:05:22.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 232 [00:05:23.000] File '/user/username/projects/myproject/package.json' does not exist. -Info 233 [00:05:24.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. -Info 234 [00:05:25.000] File '/user/username/package.json' does not exist according to earlier cached lookups. -Info 235 [00:05:26.000] File '/user/package.json' does not exist according to earlier cached lookups. -Info 236 [00:05:27.000] File '/package.json' does not exist according to earlier cached lookups. -Info 237 [00:05:28.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 238 [00:05:29.000] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. -Info 239 [00:05:30.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. -Info 240 [00:05:31.000] File '/user/username/package.json' does not exist according to earlier cached lookups. -Info 241 [00:05:32.000] File '/user/package.json' does not exist according to earlier cached lookups. -Info 242 [00:05:33.000] File '/package.json' does not exist according to earlier cached lookups. -Info 243 [00:05:34.000] Reusing resolution of module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. -Info 244 [00:05:35.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 245 [00:05:36.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 246 [00:05:37.000] File '/package.json' does not exist according to earlier cached lookups. -Info 247 [00:05:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 248 [00:05:39.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 6 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 249 [00:05:40.000] Different program with same set of files -Info 250 [00:05:41.000] Running: *ensureProjectForOpenFiles* -Info 251 [00:05:42.000] Before ensureProjectForOpenFiles: -Info 252 [00:05:43.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 252 [00:05:44.000] Files (3) - -Info 252 [00:05:45.000] ----------------------------------------------- -Info 252 [00:05:46.000] Open files: -Info 252 [00:05:47.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 252 [00:05:48.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 252 [00:05:49.000] After ensureProjectForOpenFiles: -Info 253 [00:05:50.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 253 [00:05:51.000] Files (3) - -Info 253 [00:05:52.000] ----------------------------------------------- -Info 253 [00:05:53.000] Open files: -Info 253 [00:05:54.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 253 [00:05:55.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 253 [00:05:56.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 254 [00:05:57.000] event: +Info 225 [00:05:16.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 226 [00:05:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 227 [00:05:18.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 228 [00:05:19.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 229 [00:05:20.000] File '/package.json' does not exist according to earlier cached lookups. +Info 230 [00:05:21.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 231 [00:05:22.000] File '/user/username/projects/myproject/package.json' does not exist. +Info 232 [00:05:23.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. +Info 233 [00:05:24.000] File '/user/username/package.json' does not exist according to earlier cached lookups. +Info 234 [00:05:25.000] File '/user/package.json' does not exist according to earlier cached lookups. +Info 235 [00:05:26.000] File '/package.json' does not exist according to earlier cached lookups. +Info 236 [00:05:27.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 237 [00:05:28.000] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. +Info 238 [00:05:29.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. +Info 239 [00:05:30.000] File '/user/username/package.json' does not exist according to earlier cached lookups. +Info 240 [00:05:31.000] File '/user/package.json' does not exist according to earlier cached lookups. +Info 241 [00:05:32.000] File '/package.json' does not exist according to earlier cached lookups. +Info 242 [00:05: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 243 [00:05:34.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 244 [00:05:35.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 245 [00:05:36.000] File '/package.json' does not exist according to earlier cached lookups. +Info 246 [00:05: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 247 [00:05:38.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 6 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 248 [00:05:39.000] Different program with same set of files +Info 249 [00:05:40.000] Running: *ensureProjectForOpenFiles* +Info 250 [00:05:41.000] Before ensureProjectForOpenFiles: +Info 251 [00:05:42.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 251 [00:05:43.000] Files (3) + +Info 251 [00:05:44.000] ----------------------------------------------- +Info 251 [00:05:45.000] Open files: +Info 251 [00:05:46.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 251 [00:05:47.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 251 [00:05:48.000] After ensureProjectForOpenFiles: +Info 252 [00:05:49.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 252 [00:05:50.000] Files (3) + +Info 252 [00:05:51.000] ----------------------------------------------- +Info 252 [00:05:52.000] Open files: +Info 252 [00:05:53.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 252 [00:05:54.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 252 [00:05:55.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 253 [00:05:56.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks @@ -1844,7 +1843,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 255 [00:05:58.000] request: +Info 254 [00:05:57.000] request: { "command": "geterr", "arguments": { @@ -1912,7 +1911,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 256 [00:05:59.000] response: +Info 255 [00:05:58.000] response: { "responseRequired": false } @@ -1944,7 +1943,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 257 [00:06:00.000] event: +Info 256 [00:05: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 @@ -2002,7 +2001,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 258 [00:06:01.000] event: +Info 257 [00:06: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) @@ -2060,9 +2059,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 259 [00:06:02.000] event: +Info 258 [00:06:01.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 260 [00:06:03.000] event: +Info 259 [00:06:02.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":5}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/moduleResolution/package-json-file-is-edited.js b/tests/baselines/reference/tsserver/moduleResolution/package-json-file-is-edited.js index bec6bc47b71a9..c35cf9853fbfe 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 @@ -66,36 +66,35 @@ Info 7 [00:00:34.000] Config: /user/username/projects/myproject/src/tsconfig. } Info 8 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/src/tsconfig.json WatchType: Wild card directory Info 9 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/src/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/fileB.mts 500 undefined WatchType: Closed Script info -Info 12 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 13 [00:00:40.000] File '/user/username/projects/myproject/src/package.json' does not exist. -Info 14 [00:00:41.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. -Info 15 [00:00:42.000] 'package.json' does not have a 'typesVersions' field. -Info 16 [00:00:43.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== -Info 17 [00:00:44.000] Module resolution kind is not specified, using 'Node16'. -Info 18 [00:00:45.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. -Info 19 [00:00:46.000] File '/user/username/projects/myproject/src/fileB.mjs.ts' does not exist. -Info 20 [00:00:47.000] File '/user/username/projects/myproject/src/fileB.mjs.tsx' does not exist. -Info 21 [00:00:48.000] File '/user/username/projects/myproject/src/fileB.mjs.d.ts' does not exist. -Info 22 [00:00:49.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. -Info 23 [00:00:50.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. -Info 24 [00:00:51.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== -Info 25 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:00:54.000] File '/a/lib/package.json' does not exist. -Info 28 [00:00:55.000] File '/a/package.json' does not exist. -Info 29 [00:00:56.000] File '/package.json' does not exist. -Info 30 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info -Info 31 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 32 [00:00:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 33 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots -Info 34 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots -Info 35 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots -Info 36 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots -Info 37 [00:01:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:05.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 39 [00:01:06.000] Files (3) +Info 10 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/fileB.mts 500 undefined WatchType: Closed Script info +Info 11 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 12 [00:00:39.000] File '/user/username/projects/myproject/src/package.json' does not exist. +Info 13 [00:00:40.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. +Info 14 [00:00:41.000] 'package.json' does not have a 'typesVersions' field. +Info 15 [00:00:42.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== +Info 16 [00:00:43.000] Module resolution kind is not specified, using 'Node16'. +Info 17 [00:00:44.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. +Info 18 [00:00:45.000] File '/user/username/projects/myproject/src/fileB.mjs.ts' does not exist. +Info 19 [00:00:46.000] File '/user/username/projects/myproject/src/fileB.mjs.tsx' does not exist. +Info 20 [00:00:47.000] File '/user/username/projects/myproject/src/fileB.mjs.d.ts' does not exist. +Info 21 [00:00:48.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. +Info 22 [00:00:49.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. +Info 23 [00:00:50.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== +Info 24 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:00:53.000] File '/a/lib/package.json' does not exist. +Info 27 [00:00:54.000] File '/a/package.json' does not exist. +Info 28 [00:00:55.000] File '/package.json' does not exist. +Info 29 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2016.full.d.ts 500 undefined WatchType: Closed Script info +Info 30 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 31 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 32 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots +Info 33 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots +Info 34 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots +Info 35 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots +Info 36 [00:01:03.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 37 [00:01:04.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 38 [00:01:05.000] Files (3) /a/lib/lib.es2016.full.d.ts /user/username/projects/myproject/src/fileB.mts /user/username/projects/myproject/src/fileA.ts @@ -110,21 +109,21 @@ Info 39 [00:01:06.000] Files (3) Matched by default include pattern '**/*' File is CommonJS module because '../package.json' does not have field "type" -Info 40 [00:01:07.000] ----------------------------------------------- -Info 41 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 42 [00:01:09.000] event: +Info 39 [00:01:06.000] ----------------------------------------------- +Info 40 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 41 [00:01:08.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/src/tsconfig.json"}} -Info 43 [00:01:10.000] event: +Info 42 [00:01:09.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"f026568af42c61ce0537de8ee0fa07c9359a76dcfb046248ed49dc76c91e4a37","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":68,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"target":"es2016","module":"node16","outDir":"","traceResolution":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 44 [00:01:11.000] event: +Info 43 [00:01:10.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/fileA.ts","configFile":"/user/username/projects/myproject/src/tsconfig.json","diagnostics":[]}} -Info 45 [00:01:12.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 45 [00:01:13.000] Files (3) +Info 44 [00:01:11.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 44 [00:01:12.000] Files (3) -Info 45 [00:01:14.000] ----------------------------------------------- -Info 45 [00:01:15.000] Open files: -Info 45 [00:01:16.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 45 [00:01:17.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 44 [00:01:13.000] ----------------------------------------------- +Info 44 [00:01:14.000] Open files: +Info 44 [00:01:15.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 44 [00:01:16.000] Projects: /user/username/projects/myproject/src/tsconfig.json After request PolledWatches:: @@ -151,16 +150,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 45 [00:01:18.000] response: +Info 44 [00:01:17.000] response: { "responseRequired": false } -Info 46 [00:01:19.000] Modify package json file to add type module -Info 47 [00:01:23.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 48 [00:01:24.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 49 [00:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 50 [00:01:26.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 51 [00:01:27.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 45 [00:01:18.000] Modify package json file to add type module +Info 46 [00:01:22.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 47 [00:01:23.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 48 [00:01:24.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 49 [00:01:25.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 50 [00:01:26.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file Before running timeout callbacks //// [/user/username/projects/myproject/package.json] {"name":"app","version":"1.0.0","type":"module"} @@ -190,9 +189,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 52 [00:01:28.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 53 [00:01:29.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 54 [00:01:30.000] Scheduled: *ensureProjectForOpenFiles* +Info 51 [00:01:27.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 52 [00:01:28.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 53 [00:01:29.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -245,48 +244,48 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 55 [00:01:31.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 56 [00:01:32.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 57 [00:01:33.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 58 [00:01:34.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 59 [00:01:35.000] File '/package.json' does not exist according to earlier cached lookups. -Info 60 [00:01:36.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 61 [00:01:37.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. -Info 62 [00:01:38.000] 'package.json' does not have a 'typesVersions' field. -Info 63 [00:01:39.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 64 [00:01:40.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. -Info 65 [00:01:41.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== -Info 66 [00:01:42.000] Module resolution kind is not specified, using 'Node16'. -Info 67 [00:01:43.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. -Info 68 [00:01:44.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. -Info 69 [00:01:45.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. -Info 70 [00:01:46.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== -Info 71 [00:01:47.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 72 [00:01:48.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 73 [00:01:49.000] File '/package.json' does not exist according to earlier cached lookups. -Info 74 [00:01:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 75 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 76 [00:01:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 77 [00:01:53.000] Different program with same set of files -Info 78 [00:01:54.000] Running: *ensureProjectForOpenFiles* -Info 79 [00:01:55.000] Before ensureProjectForOpenFiles: -Info 80 [00:01:56.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 80 [00:01:57.000] Files (3) - -Info 80 [00:01:58.000] ----------------------------------------------- -Info 80 [00:01:59.000] Open files: -Info 80 [00:02:00.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 80 [00:02:01.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 80 [00:02:02.000] After ensureProjectForOpenFiles: -Info 81 [00:02:03.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 81 [00:02:04.000] Files (3) - -Info 81 [00:02:05.000] ----------------------------------------------- -Info 81 [00:02:06.000] Open files: -Info 81 [00:02:07.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 81 [00:02:08.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 81 [00:02:09.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 82 [00:02:10.000] event: +Info 54 [00:01:30.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 55 [00:01:31.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 56 [00:01:32.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 57 [00:01:33.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 58 [00:01:34.000] File '/package.json' does not exist according to earlier cached lookups. +Info 59 [00:01:35.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 60 [00:01:36.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. +Info 61 [00:01:37.000] 'package.json' does not have a 'typesVersions' field. +Info 62 [00:01:38.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 63 [00:01:39.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. +Info 64 [00:01:40.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== +Info 65 [00:01:41.000] Module resolution kind is not specified, using 'Node16'. +Info 66 [00:01:42.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. +Info 67 [00:01:43.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. +Info 68 [00:01:44.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. +Info 69 [00:01:45.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== +Info 70 [00:01:46.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 71 [00:01:47.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 72 [00:01:48.000] File '/package.json' does not exist according to earlier cached lookups. +Info 73 [00:01:49.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 74 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 75 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 76 [00:01:52.000] Different program with same set of files +Info 77 [00:01:53.000] Running: *ensureProjectForOpenFiles* +Info 78 [00:01:54.000] Before ensureProjectForOpenFiles: +Info 79 [00:01:55.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 79 [00:01:56.000] Files (3) + +Info 79 [00:01:57.000] ----------------------------------------------- +Info 79 [00:01:58.000] Open files: +Info 79 [00:01:59.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 79 [00:02:00.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 79 [00:02:01.000] After ensureProjectForOpenFiles: +Info 80 [00:02:02.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 80 [00:02:03.000] Files (3) + +Info 80 [00:02:04.000] ----------------------------------------------- +Info 80 [00:02:05.000] Open files: +Info 80 [00:02:06.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 80 [00:02:07.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 80 [00:02:08.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 81 [00:02:09.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks @@ -312,7 +311,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 83 [00:02:11.000] request: +Info 82 [00:02:10.000] request: { "command": "geterr", "arguments": { @@ -372,7 +371,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 84 [00:02:12.000] response: +Info 83 [00:02:11.000] response: { "responseRequired": false } @@ -400,7 +399,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 85 [00:02:13.000] event: +Info 84 [00:02:12.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -450,7 +449,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 86 [00:02:14.000] event: +Info 85 [00:02:13.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -500,9 +499,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 87 [00:02:15.000] event: +Info 86 [00:02:14.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 88 [00:02:16.000] event: +Info 87 [00:02:15.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -528,12 +527,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 89 [00:02:17.000] Modify package json file to remove type module -Info 90 [00:02:21.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 91 [00:02:22.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 92 [00:02:23.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 93 [00:02:24.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 94 [00:02:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 88 [00:02:16.000] Modify package json file to remove type module +Info 89 [00:02:20.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 90 [00:02:21.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 91 [00:02:22.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 92 [00:02:23.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 93 [00:02:24.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 1:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file Before running timeout callbacks //// [/user/username/projects/myproject/package.json] {"name":"app","version":"1.0.0"} @@ -561,9 +560,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 95 [00:02:26.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 96 [00:02:27.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 97 [00:02:28.000] Scheduled: *ensureProjectForOpenFiles* +Info 94 [00:02:25.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 95 [00:02:26.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 96 [00:02:27.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -612,51 +611,51 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 98 [00:02:29.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 99 [00:02:30.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 100 [00:02:31.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 101 [00:02:32.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 102 [00:02:33.000] File '/package.json' does not exist according to earlier cached lookups. -Info 103 [00:02:34.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 104 [00:02:35.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. -Info 105 [00:02:36.000] 'package.json' does not have a 'typesVersions' field. -Info 106 [00:02:37.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 107 [00:02:38.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. -Info 108 [00:02:39.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== -Info 109 [00:02:40.000] Module resolution kind is not specified, using 'Node16'. -Info 110 [00:02:41.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. -Info 111 [00:02:42.000] File '/user/username/projects/myproject/src/fileB.mjs.ts' does not exist. -Info 112 [00:02:43.000] File '/user/username/projects/myproject/src/fileB.mjs.tsx' does not exist. -Info 113 [00:02:44.000] File '/user/username/projects/myproject/src/fileB.mjs.d.ts' does not exist. -Info 114 [00:02:45.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. -Info 115 [00:02:46.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. -Info 116 [00:02:47.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== -Info 117 [00:02:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 118 [00:02:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 119 [00:02:50.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 120 [00:02:51.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 121 [00:02:52.000] File '/package.json' does not exist according to earlier cached lookups. -Info 122 [00:02:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 123 [00:02:54.000] Different program with same set of files -Info 124 [00:02:55.000] Running: *ensureProjectForOpenFiles* -Info 125 [00:02:56.000] Before ensureProjectForOpenFiles: -Info 126 [00:02:57.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 126 [00:02:58.000] Files (3) - -Info 126 [00:02:59.000] ----------------------------------------------- -Info 126 [00:03:00.000] Open files: -Info 126 [00:03:01.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 126 [00:03:02.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 126 [00:03:03.000] After ensureProjectForOpenFiles: -Info 127 [00:03:04.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 127 [00:03:05.000] Files (3) - -Info 127 [00:03:06.000] ----------------------------------------------- -Info 127 [00:03:07.000] Open files: -Info 127 [00:03:08.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 127 [00:03:09.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 127 [00:03:10.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 128 [00:03:11.000] event: +Info 97 [00:02:28.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 98 [00:02:29.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 99 [00:02:30.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 100 [00:02:31.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 101 [00:02:32.000] File '/package.json' does not exist according to earlier cached lookups. +Info 102 [00:02:33.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 103 [00:02:34.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. +Info 104 [00:02:35.000] 'package.json' does not have a 'typesVersions' field. +Info 105 [00:02:36.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 106 [00:02:37.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. +Info 107 [00:02:38.000] ======== Resolving module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts'. ======== +Info 108 [00:02:39.000] Module resolution kind is not specified, using 'Node16'. +Info 109 [00:02:40.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/fileB.mjs', target file type 'TypeScript'. +Info 110 [00:02:41.000] File '/user/username/projects/myproject/src/fileB.mjs.ts' does not exist. +Info 111 [00:02:42.000] File '/user/username/projects/myproject/src/fileB.mjs.tsx' does not exist. +Info 112 [00:02:43.000] File '/user/username/projects/myproject/src/fileB.mjs.d.ts' does not exist. +Info 113 [00:02:44.000] File name '/user/username/projects/myproject/src/fileB.mjs' has a '.mjs' extension - stripping it. +Info 114 [00:02:45.000] File '/user/username/projects/myproject/src/fileB.mts' exist - use it as a name resolution result. +Info 115 [00:02:46.000] ======== Module name './fileB.mjs' was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. ======== +Info 116 [00:02:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 117 [00:02:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 118 [00:02:49.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 119 [00:02:50.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 120 [00:02:51.000] File '/package.json' does not exist according to earlier cached lookups. +Info 121 [00:02:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 122 [00:02:53.000] Different program with same set of files +Info 123 [00:02:54.000] Running: *ensureProjectForOpenFiles* +Info 124 [00:02:55.000] Before ensureProjectForOpenFiles: +Info 125 [00:02:56.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 125 [00:02:57.000] Files (3) + +Info 125 [00:02:58.000] ----------------------------------------------- +Info 125 [00:02:59.000] Open files: +Info 125 [00:03:00.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 125 [00:03:01.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 125 [00:03:02.000] After ensureProjectForOpenFiles: +Info 126 [00:03:03.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 126 [00:03:04.000] Files (3) + +Info 126 [00:03:05.000] ----------------------------------------------- +Info 126 [00:03:06.000] Open files: +Info 126 [00:03:07.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 126 [00:03:08.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 126 [00:03:09.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 127 [00:03:10.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks @@ -684,7 +683,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 129 [00:03:12.000] request: +Info 128 [00:03:11.000] request: { "command": "geterr", "arguments": { @@ -748,7 +747,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 130 [00:03:13.000] response: +Info 129 [00:03:12.000] response: { "responseRequired": false } @@ -778,7 +777,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 131 [00:03:14.000] event: +Info 130 [00:03:13.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -832,7 +831,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 132 [00:03:15.000] event: +Info 131 [00:03:14.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.\n To convert this file to an ECMAScript module, change its file extension to '.mts', or add the field `\"type\": \"module\"` to '/user/username/projects/myproject/package.json'.","code":1479,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -886,9 +885,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 133 [00:03:16.000] event: +Info 132 [00:03:15.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 134 [00:03:17.000] event: +Info 133 [00:03:16.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) @@ -916,13 +915,13 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 135 [00:03:18.000] Delete package.json -Info 136 [00:03:20.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 137 [00:03:21.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 138 [00:03:22.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 139 [00:03:23.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 140 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file -Info 141 [00:03:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 134 [00:03:17.000] Delete package.json +Info 135 [00:03:19.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 136 [00:03:20.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 137 [00:03:21.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 138 [00:03:22.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 139 [00:03:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file +Info 140 [00:03:24.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 250 undefined WatchType: package.json file Before running timeout callbacks //// [/user/username/projects/myproject/package.json] deleted @@ -950,9 +949,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 142 [00:03:26.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 143 [00:03:27.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 144 [00:03:28.000] Scheduled: *ensureProjectForOpenFiles* +Info 141 [00:03:25.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 142 [00:03:26.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 143 [00:03:27.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -1005,49 +1004,49 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 145 [00:03:29.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 146 [00:03:30.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 147 [00:03:31.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 148 [00:03:32.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 149 [00:03:33.000] File '/package.json' does not exist according to earlier cached lookups. -Info 150 [00:03:34.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 151 [00:03:35.000] File '/user/username/projects/myproject/package.json' does not exist. -Info 152 [00:03:36.000] File '/user/username/projects/package.json' does not exist. -Info 153 [00:03:37.000] File '/user/username/package.json' does not exist. -Info 154 [00:03:38.000] File '/user/package.json' does not exist. -Info 155 [00:03:39.000] File '/package.json' does not exist according to earlier cached lookups. -Info 156 [00:03:40.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 157 [00:03:41.000] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. -Info 158 [00:03:42.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. -Info 159 [00:03:43.000] File '/user/username/package.json' does not exist according to earlier cached lookups. -Info 160 [00:03:44.000] File '/user/package.json' does not exist according to earlier cached lookups. -Info 161 [00:03:45.000] File '/package.json' does not exist according to earlier cached lookups. -Info 162 [00:03:46.000] Reusing resolution of module './fileB.mjs' from '/user/username/projects/myproject/src/fileA.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/src/fileB.mts'. -Info 163 [00:03:47.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 164 [00:03:48.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 165 [00:03:49.000] File '/package.json' does not exist according to earlier cached lookups. -Info 166 [00:03:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 167 [00:03:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 168 [00:03:52.000] Different program with same set of files -Info 169 [00:03:53.000] Running: *ensureProjectForOpenFiles* -Info 170 [00:03:54.000] Before ensureProjectForOpenFiles: -Info 171 [00:03:55.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 171 [00:03:56.000] Files (3) - -Info 171 [00:03:57.000] ----------------------------------------------- -Info 171 [00:03:58.000] Open files: -Info 171 [00:03:59.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 171 [00:04:00.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 171 [00:04:01.000] After ensureProjectForOpenFiles: -Info 172 [00:04:02.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 172 [00:04:03.000] Files (3) - -Info 172 [00:04:04.000] ----------------------------------------------- -Info 172 [00:04:05.000] Open files: -Info 172 [00:04:06.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 172 [00:04:07.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 172 [00:04:08.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 173 [00:04:09.000] event: +Info 144 [00:03:28.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 145 [00:03:29.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 146 [00:03:30.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 147 [00:03:31.000] File '/a/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 '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 150 [00:03:34.000] File '/user/username/projects/myproject/package.json' does not exist. +Info 151 [00:03:35.000] File '/user/username/projects/package.json' does not exist. +Info 152 [00:03:36.000] File '/user/username/package.json' does not exist. +Info 153 [00:03:37.000] File '/user/package.json' does not exist. +Info 154 [00:03:38.000] File '/package.json' does not exist according to earlier cached lookups. +Info 155 [00:03:39.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 156 [00:03:40.000] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. +Info 157 [00:03:41.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. +Info 158 [00:03:42.000] File '/user/username/package.json' does not exist according to earlier cached lookups. +Info 159 [00:03:43.000] File '/user/package.json' does not exist according to earlier cached lookups. +Info 160 [00:03:44.000] File '/package.json' does not exist according to earlier cached lookups. +Info 161 [00:03:45.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 162 [00:03:46.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 163 [00:03:47.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 164 [00:03:48.000] File '/package.json' does not exist according to earlier cached lookups. +Info 165 [00:03:49.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 166 [00:03:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 167 [00:03:51.000] Different program with same set of files +Info 168 [00:03:52.000] Running: *ensureProjectForOpenFiles* +Info 169 [00:03:53.000] Before ensureProjectForOpenFiles: +Info 170 [00:03:54.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 170 [00:03:55.000] Files (3) + +Info 170 [00:03:56.000] ----------------------------------------------- +Info 170 [00:03:57.000] Open files: +Info 170 [00:03:58.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 170 [00:03:59.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 170 [00:04:00.000] After ensureProjectForOpenFiles: +Info 171 [00:04:01.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 171 [00:04:02.000] Files (3) + +Info 171 [00:04:03.000] ----------------------------------------------- +Info 171 [00:04:04.000] Open files: +Info 171 [00:04:05.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 171 [00:04:06.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 171 [00:04:07.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 172 [00:04:08.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks @@ -1077,7 +1076,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 174 [00:04:10.000] request: +Info 173 [00:04:09.000] request: { "command": "geterr", "arguments": { @@ -1145,7 +1144,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 175 [00:04:11.000] response: +Info 174 [00:04:10.000] response: { "responseRequired": false } @@ -1177,7 +1176,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 176 [00:04:12.000] event: +Info 175 [00:04:11.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -1235,7 +1234,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 177 [00:04:13.000] event: +Info 176 [00:04:12.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.\n To convert this file to an ECMAScript module, change its file extension to '.mts' or create a local package.json file with `{ \"type\": \"module\" }`.","code":1479,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -1293,9 +1292,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 178 [00:04:14.000] event: +Info 177 [00:04:13.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 179 [00:04:15.000] event: +Info 178 [00:04:14.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) @@ -1325,10 +1324,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 180 [00:04:16.000] Modify package json file to add type module -Info 181 [00:04:19.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 182 [00:04:20.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 183 [00:04:21.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 179 [00:04:15.000] Modify package json file to add type module +Info 180 [00:04:18.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 181 [00:04:19.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 182 [00:04:20.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 0:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution Before running timeout callbacks //// [/user/username/projects/myproject/package.json] {"name":"app","version":"1.0.0","type":"module"} @@ -1360,9 +1359,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 184 [00:04:22.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 185 [00:04:23.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 186 [00:04:24.000] Scheduled: *ensureProjectForOpenFiles* +Info 183 [00:04:21.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 184 [00:04:22.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 185 [00:04:23.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -1419,41 +1418,41 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 187 [00:04:25.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 188 [00:04:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 189 [00:04:27.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 190 [00:04:28.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 191 [00:04:29.000] File '/package.json' does not exist according to earlier cached lookups. -Info 192 [00:04:30.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 193 [00:04:31.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. -Info 194 [00:04:32.000] 'package.json' does not have a 'typesVersions' field. -Info 195 [00:04:33.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 196 [00:04:34.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. -Info 197 [00:04:35.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 198 [00:04:36.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 199 [00:04:37.000] File '/package.json' does not exist according to earlier cached lookups. -Info 200 [00:04:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 201 [00:04:39.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 5 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 202 [00:04:40.000] Different program with same set of files -Info 203 [00:04:41.000] Running: *ensureProjectForOpenFiles* -Info 204 [00:04:42.000] Before ensureProjectForOpenFiles: -Info 205 [00:04:43.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 205 [00:04:44.000] Files (3) - -Info 205 [00:04:45.000] ----------------------------------------------- -Info 205 [00:04:46.000] Open files: -Info 205 [00:04:47.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 205 [00:04:48.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 205 [00:04:49.000] After ensureProjectForOpenFiles: -Info 206 [00:04:50.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 206 [00:04:51.000] Files (3) - -Info 206 [00:04:52.000] ----------------------------------------------- -Info 206 [00:04:53.000] Open files: -Info 206 [00:04:54.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 206 [00:04:55.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 206 [00:04:56.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 207 [00:04:57.000] event: +Info 186 [00:04:24.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 187 [00:04:25.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 188 [00:04:26.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 189 [00:04:27.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 190 [00:04:28.000] File '/package.json' does not exist according to earlier cached lookups. +Info 191 [00:04:29.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 192 [00:04:30.000] Found 'package.json' at '/user/username/projects/myproject/package.json'. +Info 193 [00:04:31.000] 'package.json' does not have a 'typesVersions' field. +Info 194 [00:04:32.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 195 [00:04:33.000] File '/user/username/projects/myproject/package.json' exists according to earlier cached lookups. +Info 196 [00:04:34.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 197 [00:04:35.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 198 [00:04:36.000] File '/package.json' does not exist according to earlier cached lookups. +Info 199 [00:04:37.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 200 [00:04:38.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 5 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 201 [00:04:39.000] Different program with same set of files +Info 202 [00:04:40.000] Running: *ensureProjectForOpenFiles* +Info 203 [00:04:41.000] Before ensureProjectForOpenFiles: +Info 204 [00:04:42.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 204 [00:04:43.000] Files (3) + +Info 204 [00:04:44.000] ----------------------------------------------- +Info 204 [00:04:45.000] Open files: +Info 204 [00:04:46.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 204 [00:04:47.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 204 [00:04:48.000] After ensureProjectForOpenFiles: +Info 205 [00:04:49.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 205 [00:04:50.000] Files (3) + +Info 205 [00:04:51.000] ----------------------------------------------- +Info 205 [00:04:52.000] Open files: +Info 205 [00:04:53.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 205 [00:04:54.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 205 [00:04:55.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 206 [00:04:56.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks @@ -1481,7 +1480,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 208 [00:04:58.000] request: +Info 207 [00:04:57.000] request: { "command": "geterr", "arguments": { @@ -1545,7 +1544,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 209 [00:04:59.000] response: +Info 208 [00:04:58.000] response: { "responseRequired": false } @@ -1575,7 +1574,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 210 [00:05:00.000] event: +Info 209 [00:04: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 @@ -1629,7 +1628,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 211 [00:05:01.000] event: +Info 210 [00:05:00.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -1683,9 +1682,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 212 [00:05:02.000] event: +Info 211 [00:05:01.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 213 [00:05:03.000] event: +Info 212 [00:05:02.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) @@ -1713,10 +1712,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 214 [00:05:04.000] Delete package.json -Info 215 [00:05:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 216 [00:05:07.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 217 [00:05:08.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution +Info 213 [00:05:03.000] Delete package.json +Info 214 [00:05:05.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 215 [00:05:06.000] Scheduled: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 216 [00:05:07.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/package.json 2:: WatchInfo: /user/username/projects/myproject/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution Before running timeout callbacks //// [/user/username/projects/myproject/package.json] deleted @@ -1744,9 +1743,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 218 [00:05:09.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation -Info 219 [00:05:10.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json -Info 220 [00:05:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 217 [00:05:08.000] Running: /user/username/projects/myproject/src/tsconfig.jsonFailedLookupInvalidation +Info 218 [00:05:09.000] Scheduled: /user/username/projects/myproject/src/tsconfig.json +Info 219 [00:05:10.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -1799,48 +1798,48 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 221 [00:05:12.000] Running: /user/username/projects/myproject/src/tsconfig.json -Info 222 [00:05:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 223 [00:05:14.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 224 [00:05:15.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 225 [00:05:16.000] File '/package.json' does not exist according to earlier cached lookups. -Info 226 [00:05:17.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 227 [00:05:18.000] File '/user/username/projects/myproject/package.json' does not exist. -Info 228 [00:05:19.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. -Info 229 [00:05:20.000] File '/user/username/package.json' does not exist according to earlier cached lookups. -Info 230 [00:05:21.000] File '/user/package.json' does not exist according to earlier cached lookups. -Info 231 [00:05:22.000] File '/package.json' does not exist according to earlier cached lookups. -Info 232 [00:05:23.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. -Info 233 [00:05:24.000] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. -Info 234 [00:05:25.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. -Info 235 [00:05:26.000] File '/user/username/package.json' does not exist according to earlier cached lookups. -Info 236 [00:05:27.000] File '/user/package.json' does not exist according to earlier cached lookups. -Info 237 [00:05:28.000] File '/package.json' does not exist according to earlier cached lookups. -Info 238 [00:05:29.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. -Info 239 [00:05:30.000] File '/a/package.json' does not exist according to earlier cached lookups. -Info 240 [00:05:31.000] File '/package.json' does not exist according to earlier cached lookups. -Info 241 [00:05:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/package.json 2000 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: File location affecting resolution -Info 242 [00:05:33.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 6 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 243 [00:05:34.000] Different program with same set of files -Info 244 [00:05:35.000] Running: *ensureProjectForOpenFiles* -Info 245 [00:05:36.000] Before ensureProjectForOpenFiles: -Info 246 [00:05:37.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 246 [00:05:38.000] Files (3) - -Info 246 [00:05:39.000] ----------------------------------------------- -Info 246 [00:05:40.000] Open files: -Info 246 [00:05:41.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 246 [00:05:42.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 246 [00:05:43.000] After ensureProjectForOpenFiles: -Info 247 [00:05:44.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 247 [00:05:45.000] Files (3) - -Info 247 [00:05:46.000] ----------------------------------------------- -Info 247 [00:05:47.000] Open files: -Info 247 [00:05:48.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined -Info 247 [00:05:49.000] Projects: /user/username/projects/myproject/src/tsconfig.json -Info 247 [00:05:50.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts -Info 248 [00:05:51.000] event: +Info 220 [00:05:11.000] Running: /user/username/projects/myproject/src/tsconfig.json +Info 221 [00:05:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 222 [00:05:13.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 223 [00:05:14.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 224 [00:05:15.000] File '/package.json' does not exist according to earlier cached lookups. +Info 225 [00:05:16.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 226 [00:05:17.000] File '/user/username/projects/myproject/package.json' does not exist. +Info 227 [00:05:18.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. +Info 228 [00:05:19.000] File '/user/username/package.json' does not exist according to earlier cached lookups. +Info 229 [00:05:20.000] File '/user/package.json' does not exist according to earlier cached lookups. +Info 230 [00:05:21.000] File '/package.json' does not exist according to earlier cached lookups. +Info 231 [00:05:22.000] File '/user/username/projects/myproject/src/package.json' does not exist according to earlier cached lookups. +Info 232 [00:05:23.000] File '/user/username/projects/myproject/package.json' does not exist according to earlier cached lookups. +Info 233 [00:05:24.000] File '/user/username/projects/package.json' does not exist according to earlier cached lookups. +Info 234 [00:05:25.000] File '/user/username/package.json' does not exist according to earlier cached lookups. +Info 235 [00:05:26.000] File '/user/package.json' does not exist according to earlier cached lookups. +Info 236 [00:05:27.000] File '/package.json' does not exist according to earlier cached lookups. +Info 237 [00:05:28.000] File '/a/lib/package.json' does not exist according to earlier cached lookups. +Info 238 [00:05:29.000] File '/a/package.json' does not exist according to earlier cached lookups. +Info 239 [00:05:30.000] File '/package.json' does not exist according to earlier cached lookups. +Info 240 [00:05:31.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 241 [00:05:32.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 6 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 242 [00:05:33.000] Different program with same set of files +Info 243 [00:05:34.000] Running: *ensureProjectForOpenFiles* +Info 244 [00:05:35.000] Before ensureProjectForOpenFiles: +Info 245 [00:05:36.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 245 [00:05:37.000] Files (3) + +Info 245 [00:05:38.000] ----------------------------------------------- +Info 245 [00:05:39.000] Open files: +Info 245 [00:05:40.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 245 [00:05:41.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 245 [00:05:42.000] After ensureProjectForOpenFiles: +Info 246 [00:05:43.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 246 [00:05:44.000] Files (3) + +Info 246 [00:05:45.000] ----------------------------------------------- +Info 246 [00:05:46.000] Open files: +Info 246 [00:05:47.000] FileName: /user/username/projects/myproject/src/fileA.ts ProjectRootPath: undefined +Info 246 [00:05:48.000] Projects: /user/username/projects/myproject/src/tsconfig.json +Info 246 [00:05:49.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/fileA.ts +Info 247 [00:05:50.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/projects/myproject/src/fileA.ts"]}} After running timeout callbacks @@ -1870,7 +1869,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 249 [00:05:52.000] request: +Info 248 [00:05:51.000] request: { "command": "geterr", "arguments": { @@ -1938,7 +1937,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 250 [00:05:53.000] response: +Info 249 [00:05:52.000] response: { "responseRequired": false } @@ -1970,7 +1969,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 251 [00:05:54.000] event: +Info 250 [00:05:53.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -2028,7 +2027,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 252 [00:05:55.000] event: +Info 251 [00:05:54.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[{"start":{"line":1,"offset":21},"end":{"line":1,"offset":34},"text":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.\n To convert this file to an ECMAScript module, change its file extension to '.mts' or create a local package.json file with `{ \"type\": \"module\" }`.","code":1479,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -2086,9 +2085,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 253 [00:05:56.000] event: +Info 252 [00:05:55.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/fileA.ts","diagnostics":[]}} -Info 254 [00:05:57.000] event: +Info 253 [00:05:56.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":5}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-module-specifiers-when-changes-happen-in-contained-node_modules-directories.js b/tests/baselines/reference/tsserver/moduleSpecifierCache/invalidates-module-specifiers-when-changes-happen-in-contained-node_modules-directories.js index 2ccedb951a5de..36da7d40977cd 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 @@ -59,16 +59,15 @@ Info 6 [00:00:33.000] Config: /tsconfig.json : { } Info 7 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /src 1 undefined Config: /tsconfig.json WatchType: Wild card directory Info 8 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /src 1 undefined Config: /tsconfig.json WatchType: Wild card directory -Info 9 [00:00:36.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /src/ambient.d.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /src/b-link.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /src/b.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /src/c.ts 500 undefined WatchType: Closed Script info -Info 14 [00:00:41.000] Starting updateGraphWorker: Project: /tsconfig.json -Info 15 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /tsconfig.json WatchType: Missing file -Info 16 [00:00:43.000] Finishing updateGraphWorker: Project: /tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:00:44.000] Project '/tsconfig.json' (Configured) -Info 18 [00:00:45.000] Files (5) +Info 9 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /src/ambient.d.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /src/b-link.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /src/b.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /src/c.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:40.000] Starting updateGraphWorker: Project: /tsconfig.json +Info 14 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /tsconfig.json WatchType: Missing file +Info 15 [00:00:42.000] Finishing updateGraphWorker: Project: /tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:43.000] Project '/tsconfig.json' (Configured) +Info 17 [00:00:44.000] Files (5) /src/a.ts /src/ambient.d.ts /src/b-link.ts @@ -87,33 +86,33 @@ Info 18 [00:00:45.000] Files (5) src/c.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 19 [00:00:46.000] ----------------------------------------------- -Info 20 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /package.json 250 undefined WatchType: package.json file -Info 21 [00:00:48.000] AutoImportProviderProject: found 1 root files in 1 dependencies in * ms -Info 22 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 23 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 24 [00:00:51.000] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* -Info 25 [00:00:52.000] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 26 [00:00:53.000] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) -Info 27 [00:00:54.000] Files (1) +Info 18 [00:00:45.000] ----------------------------------------------- +Info 19 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /package.json 250 undefined WatchType: package.json file +Info 20 [00:00:47.000] AutoImportProviderProject: found 1 root files in 1 dependencies in * ms +Info 21 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 22 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 23 [00:00:50.000] Starting updateGraphWorker: Project: /dev/null/autoImportProviderProject1* +Info 24 [00:00:51.000] Finishing updateGraphWorker: Project: /dev/null/autoImportProviderProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 25 [00:00:52.000] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) +Info 26 [00:00:53.000] Files (1) /node_modules/mobx/index.d.ts node_modules/mobx/index.d.ts Root file specified for compilation -Info 28 [00:00:55.000] ----------------------------------------------- -Info 29 [00:00:56.000] Project '/tsconfig.json' (Configured) -Info 29 [00:00:57.000] Files (5) +Info 27 [00:00:54.000] ----------------------------------------------- +Info 28 [00:00:55.000] Project '/tsconfig.json' (Configured) +Info 28 [00:00:56.000] Files (5) -Info 29 [00:00:58.000] ----------------------------------------------- -Info 29 [00:00:59.000] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) -Info 29 [00:01:00.000] Files (1) +Info 28 [00:00:57.000] ----------------------------------------------- +Info 28 [00:00:58.000] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) +Info 28 [00:00:59.000] Files (1) -Info 29 [00:01:01.000] ----------------------------------------------- -Info 29 [00:01:02.000] Open files: -Info 29 [00:01:03.000] FileName: /src/a.ts ProjectRootPath: undefined -Info 29 [00:01:04.000] Projects: /tsconfig.json +Info 28 [00:01:00.000] ----------------------------------------------- +Info 28 [00:01:01.000] Open files: +Info 28 [00:01:02.000] FileName: /src/a.ts ProjectRootPath: undefined +Info 28 [00:01:03.000] Projects: /tsconfig.json After request PolledWatches:: @@ -140,11 +139,11 @@ FsWatchesRecursive:: /node_modules: {} -Info 29 [00:01:05.000] response: +Info 28 [00:01:04.000] response: { "responseRequired": false } -Info 30 [00:01:06.000] request: +Info 29 [00:01:05.000] request: { "seq": 0, "type": "request", @@ -179,22 +178,22 @@ FsWatchesRecursive:: /node_modules: {} -Info 31 [00:01:07.000] FileWatcher:: Close:: WatchInfo: /src/b.ts 500 undefined WatchType: Closed Script info -Info 32 [00:01:08.000] Search path: /src -Info 33 [00:01:09.000] For info: /src/b.ts :: Config file name: /tsconfig.json -Info 34 [00:01:10.000] Project '/tsconfig.json' (Configured) -Info 34 [00:01:11.000] Files (5) +Info 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 +Info 33 [00:01:09.000] Project '/tsconfig.json' (Configured) +Info 33 [00:01:10.000] Files (5) -Info 34 [00:01:12.000] ----------------------------------------------- -Info 34 [00:01:13.000] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) -Info 34 [00:01:14.000] Files (1) +Info 33 [00:01:11.000] ----------------------------------------------- +Info 33 [00:01:12.000] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) +Info 33 [00:01:13.000] Files (1) -Info 34 [00:01:15.000] ----------------------------------------------- -Info 34 [00:01:16.000] Open files: -Info 34 [00:01:17.000] FileName: /src/a.ts ProjectRootPath: undefined -Info 34 [00:01:18.000] Projects: /tsconfig.json -Info 34 [00:01:19.000] FileName: /src/b.ts ProjectRootPath: undefined -Info 34 [00:01:20.000] Projects: /tsconfig.json +Info 33 [00:01:14.000] ----------------------------------------------- +Info 33 [00:01:15.000] Open files: +Info 33 [00:01:16.000] FileName: /src/a.ts ProjectRootPath: undefined +Info 33 [00:01:17.000] Projects: /tsconfig.json +Info 33 [00:01:18.000] FileName: /src/b.ts ProjectRootPath: undefined +Info 33 [00:01:19.000] Projects: /tsconfig.json After request PolledWatches:: @@ -219,11 +218,11 @@ FsWatchesRecursive:: /node_modules: {} -Info 34 [00:01:21.000] response: +Info 33 [00:01:20.000] response: { "responseRequired": false } -Info 35 [00:01:22.000] request: +Info 34 [00:01:21.000] request: { "seq": 0, "type": "request", @@ -256,24 +255,24 @@ FsWatchesRecursive:: /node_modules: {} -Info 36 [00:01:23.000] FileWatcher:: Close:: WatchInfo: /src/c.ts 500 undefined WatchType: Closed Script info -Info 37 [00:01:24.000] Search path: /src -Info 38 [00:01:25.000] For info: /src/c.ts :: Config file name: /tsconfig.json -Info 39 [00:01:26.000] Project '/tsconfig.json' (Configured) -Info 39 [00:01:27.000] Files (5) - -Info 39 [00:01:28.000] ----------------------------------------------- -Info 39 [00:01:29.000] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) -Info 39 [00:01:30.000] Files (1) - -Info 39 [00:01:31.000] ----------------------------------------------- -Info 39 [00:01:32.000] Open files: -Info 39 [00:01:33.000] FileName: /src/a.ts ProjectRootPath: undefined -Info 39 [00:01:34.000] Projects: /tsconfig.json -Info 39 [00:01:35.000] FileName: /src/b.ts ProjectRootPath: undefined -Info 39 [00:01:36.000] Projects: /tsconfig.json -Info 39 [00:01:37.000] FileName: /src/c.ts ProjectRootPath: undefined -Info 39 [00:01:38.000] Projects: /tsconfig.json +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 +Info 38 [00:01:25.000] Project '/tsconfig.json' (Configured) +Info 38 [00:01:26.000] Files (5) + +Info 38 [00:01:27.000] ----------------------------------------------- +Info 38 [00:01:28.000] Project '/dev/null/autoImportProviderProject1*' (AutoImportProvider) +Info 38 [00:01:29.000] Files (1) + +Info 38 [00:01:30.000] ----------------------------------------------- +Info 38 [00:01:31.000] Open files: +Info 38 [00:01:32.000] FileName: /src/a.ts ProjectRootPath: undefined +Info 38 [00:01:33.000] Projects: /tsconfig.json +Info 38 [00:01:34.000] FileName: /src/b.ts ProjectRootPath: undefined +Info 38 [00:01:35.000] Projects: /tsconfig.json +Info 38 [00:01:36.000] FileName: /src/c.ts ProjectRootPath: undefined +Info 38 [00:01:37.000] Projects: /tsconfig.json After request PolledWatches:: @@ -296,11 +295,11 @@ FsWatchesRecursive:: /node_modules: {} -Info 39 [00:01:39.000] response: +Info 38 [00:01:38.000] response: { "responseRequired": false } -Info 40 [00:01:40.000] request: +Info 39 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -336,7 +335,7 @@ FsWatchesRecursive:: /node_modules: {} -Info 41 [00:01:41.000] response: +Info 40 [00:01:40.000] response: {"seq":0,"type":"response","command":"configure","request_seq":0,"success":true,"performanceData":{"updateGraphDurationMs":*,"createAutoImportProviderProgramDurationMs":*}} After request @@ -360,11 +359,11 @@ FsWatchesRecursive:: /node_modules: {} -Info 42 [00:01:42.000] response: +Info 41 [00:01:41.000] response: { "responseRequired": false } -Info 43 [00:01:43.000] request: +Info 42 [00:01:42.000] request: { "seq": 0, "type": "request", @@ -397,17 +396,17 @@ FsWatchesRecursive:: /node_modules: {} -Info 44 [00:01:44.000] getCompletionData: Get current token: * -Info 45 [00:01:45.000] getCompletionData: Is inside comment: * -Info 46 [00:01:46.000] getCompletionData: Get previous token: * -Info 47 [00:01:47.000] getExportInfoMap: cache miss or empty; calculating new results -Info 48 [00:01:48.000] forEachExternalModuleToImportFrom autoImportProvider: * -Info 49 [00:01:49.000] getExportInfoMap: done in * ms -Info 50 [00:01:50.000] collectAutoImports: resolved 0 module specifiers, plus 0 ambient and 1 from cache -Info 51 [00:01:51.000] collectAutoImports: response is incomplete -Info 52 [00:01:52.000] collectAutoImports: * -Info 53 [00:01:53.000] getCompletionData: Semantic work: * -Info 54 [00:01:54.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * +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: * +Info 46 [00:01:46.000] getExportInfoMap: cache miss or empty; calculating new results +Info 47 [00:01:47.000] forEachExternalModuleToImportFrom autoImportProvider: * +Info 48 [00:01:48.000] getExportInfoMap: done in * ms +Info 49 [00:01:49.000] collectAutoImports: resolved 0 module specifiers, plus 0 ambient and 1 from cache +Info 50 [00:01:50.000] collectAutoImports: response is incomplete +Info 51 [00:01:51.000] collectAutoImports: * +Info 52 [00:01:52.000] getCompletionData: Semantic work: * +Info 53 [00:01:53.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request PolledWatches:: @@ -430,7 +429,7 @@ FsWatchesRecursive:: /node_modules: {} -Info 55 [00:01:55.000] response: +Info 54 [00:01:54.000] response: { "response": { "flags": 1, @@ -861,7 +860,7 @@ Info 55 [00:01:55.000] response: }, "responseRequired": true } -Info 56 [00:01:56.000] request: +Info 55 [00:01:55.000] request: { "seq": 0, "type": "request", @@ -894,17 +893,17 @@ FsWatchesRecursive:: /node_modules: {} -Info 57 [00:01:57.000] getCompletionData: Get current token: * -Info 58 [00:01:58.000] getCompletionData: Is inside comment: * -Info 59 [00:01:59.000] getCompletionData: Get previous token: * -Info 60 [00:02:00.000] getExportInfoMap: cache miss or empty; calculating new results -Info 61 [00:02:01.000] forEachExternalModuleToImportFrom autoImportProvider: * -Info 62 [00:02:02.000] getExportInfoMap: done in * ms -Info 63 [00:02:03.000] collectAutoImports: resolved 2 module specifiers, plus 0 ambient and 0 from cache -Info 64 [00:02:04.000] collectAutoImports: response is complete -Info 65 [00:02:05.000] collectAutoImports: * -Info 66 [00:02:06.000] getCompletionData: Semantic work: * -Info 67 [00:02:07.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * +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: * +Info 59 [00:01:59.000] getExportInfoMap: cache miss or empty; calculating new results +Info 60 [00:02:00.000] forEachExternalModuleToImportFrom autoImportProvider: * +Info 61 [00:02:01.000] getExportInfoMap: done in * ms +Info 62 [00:02:02.000] collectAutoImports: resolved 2 module specifiers, plus 0 ambient and 0 from cache +Info 63 [00:02:03.000] collectAutoImports: response is complete +Info 64 [00:02:04.000] collectAutoImports: * +Info 65 [00:02:05.000] getCompletionData: Semantic work: * +Info 66 [00:02:06.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request PolledWatches:: @@ -927,7 +926,7 @@ FsWatchesRecursive:: /node_modules: {} -Info 68 [00:02:08.000] response: +Info 67 [00:02:07.000] response: { "response": { "flags": 11, @@ -1009,12 +1008,12 @@ Info 68 [00:02:08.000] response: }, "responseRequired": true } -Info 69 [00:02:12.000] DirectoryWatcher:: Triggered with /node_modules/.staging :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 70 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /node_modules/.staging :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 71 [00:02:16.000] DirectoryWatcher:: Triggered with /node_modules/.staging/mobx-12345678 :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 72 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /node_modules/.staging/mobx-12345678 :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 73 [00:02:20.000] DirectoryWatcher:: Triggered with /node_modules/.staging/mobx-12345678/package.json :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 74 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /node_modules/.staging/mobx-12345678/package.json :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 68 [00:02:11.000] DirectoryWatcher:: Triggered with /node_modules/.staging :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 69 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /node_modules/.staging :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 70 [00:02:15.000] DirectoryWatcher:: Triggered with /node_modules/.staging/mobx-12345678 :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 71 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /node_modules/.staging/mobx-12345678 :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 72 [00:02:19.000] DirectoryWatcher:: Triggered with /node_modules/.staging/mobx-12345678/package.json :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 73 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /node_modules/.staging/mobx-12345678/package.json :: WatchInfo: /node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache Before running timeout callbacks //// [/node_modules/.staging/mobx-12345678/package.json] {} diff --git a/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols-when-searching-all-projects.js b/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols-when-searching-all-projects.js index 79473b9c13f96..53e8c4f9e93e4 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 @@ -58,38 +58,37 @@ Info 6 [00:00:23.000] Config: /a/tsconfig.json : { } Info 7 [00:00:24.000] DirectoryWatcher:: Added:: WatchInfo: /a 1 undefined Config: /a/tsconfig.json WatchType: Wild card directory Info 8 [00:00:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a 1 undefined Config: /a/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:27.000] Starting updateGraphWorker: Project: /a/tsconfig.json -Info 11 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/tsconfig.json WatchType: Missing file -Info 12 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /a/tsconfig.json WatchType: Type roots -Info 13 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /a/tsconfig.json WatchType: Type roots -Info 14 [00:00:31.000] Finishing updateGraphWorker: Project: /a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [00:00:32.000] Project '/a/tsconfig.json' (Configured) -Info 16 [00:00:33.000] Files (1) +Info 9 [00:00:26.000] Starting updateGraphWorker: Project: /a/tsconfig.json +Info 10 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/tsconfig.json WatchType: Missing file +Info 11 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /a/tsconfig.json WatchType: Type roots +Info 12 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /a/tsconfig.json WatchType: Type roots +Info 13 [00:00:30.000] Finishing updateGraphWorker: Project: /a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 14 [00:00:31.000] Project '/a/tsconfig.json' (Configured) +Info 15 [00:00:32.000] Files (1) /a/index.ts index.ts Matched by default include pattern '**/*' -Info 17 [00:00:34.000] ----------------------------------------------- -Info 18 [00:00:35.000] Search path: /a -Info 19 [00:00:36.000] For info: /a/tsconfig.json :: Config file name: /tsconfig.json -Info 20 [00:00:37.000] Creating configuration project /tsconfig.json -Info 21 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /tsconfig.json 2000 undefined Project: /tsconfig.json WatchType: Config file -Info 22 [00:00:39.000] Search path: / -Info 23 [00:00:40.000] For info: /tsconfig.json :: No config files found. -Info 24 [00:00:41.000] Project '/a/tsconfig.json' (Configured) -Info 24 [00:00:42.000] Files (1) - -Info 24 [00:00:43.000] ----------------------------------------------- -Info 24 [00:00:44.000] Project '/tsconfig.json' (Configured) -Info 24 [00:00:45.000] Files (0) InitialLoadPending - -Info 24 [00:00:46.000] ----------------------------------------------- -Info 24 [00:00:47.000] Open files: -Info 24 [00:00:48.000] FileName: /a/index.ts ProjectRootPath: undefined -Info 24 [00:00:49.000] Projects: /a/tsconfig.json +Info 16 [00:00:33.000] ----------------------------------------------- +Info 17 [00:00:34.000] Search path: /a +Info 18 [00:00:35.000] For info: /a/tsconfig.json :: Config file name: /tsconfig.json +Info 19 [00:00:36.000] Creating configuration project /tsconfig.json +Info 20 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /tsconfig.json 2000 undefined Project: /tsconfig.json WatchType: Config file +Info 21 [00:00:38.000] Search path: / +Info 22 [00:00:39.000] For info: /tsconfig.json :: No config files found. +Info 23 [00:00:40.000] Project '/a/tsconfig.json' (Configured) +Info 23 [00:00:41.000] Files (1) + +Info 23 [00:00:42.000] ----------------------------------------------- +Info 23 [00:00:43.000] Project '/tsconfig.json' (Configured) +Info 23 [00:00:44.000] Files (0) InitialLoadPending + +Info 23 [00:00:45.000] ----------------------------------------------- +Info 23 [00:00:46.000] Open files: +Info 23 [00:00:47.000] FileName: /a/index.ts ProjectRootPath: undefined +Info 23 [00:00:48.000] Projects: /a/tsconfig.json After request PolledWatches:: @@ -108,11 +107,11 @@ FsWatchesRecursive:: /a: {} -Info 24 [00:00:50.000] response: +Info 23 [00:00:49.000] response: { "responseRequired": false } -Info 25 [00:00:51.000] request: +Info 24 [00:00:50.000] request: { "seq": 0, "type": "request", @@ -139,8 +138,8 @@ FsWatchesRecursive:: /a: {} -Info 26 [00:00:52.000] Loading configured project /tsconfig.json -Info 27 [00:00:53.000] Config: /tsconfig.json : { +Info 25 [00:00:51.000] Loading configured project /tsconfig.json +Info 26 [00:00:52.000] Config: /tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/tsconfig.json" @@ -156,9 +155,8 @@ Info 27 [00:00:53.000] Config: /tsconfig.json : { } ] } -Info 28 [00:00:54.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 29 [00:00:55.000] Starting updateGraphWorker: Project: /tsconfig.json -Info 30 [00:00:56.000] Config: /b/tsconfig.json : { +Info 27 [00:00:53.000] Starting updateGraphWorker: Project: /tsconfig.json +Info 28 [00:00:54.000] Config: /b/tsconfig.json : { "rootNames": [ "/b/index.ts" ], @@ -173,21 +171,20 @@ Info 30 [00:00:56.000] Config: /b/tsconfig.json : { } ] } -Info 31 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /b/tsconfig.json 2000 undefined Project: /tsconfig.json WatchType: Config file -Info 32 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /b 1 undefined Config: /b/tsconfig.json WatchType: Wild card directory -Info 33 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /b 1 undefined Config: /b/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:00.000] Finishing updateGraphWorker: Project: /tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:01.000] Different program with same set of files -Info 36 [00:01:02.000] Creating configuration project /b/tsconfig.json -Info 37 [00:01:03.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 38 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /b/index.ts 500 undefined WatchType: Closed Script info -Info 39 [00:01:05.000] Starting updateGraphWorker: Project: /b/tsconfig.json -Info 40 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /b/tsconfig.json WatchType: Missing file -Info 41 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /b/node_modules/@types 1 undefined Project: /b/tsconfig.json WatchType: Type roots -Info 42 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /b/node_modules/@types 1 undefined Project: /b/tsconfig.json WatchType: Type roots -Info 43 [00:01:09.000] Finishing updateGraphWorker: Project: /b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [00:01:10.000] Project '/b/tsconfig.json' (Configured) -Info 45 [00:01:11.000] Files (2) +Info 29 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /b/tsconfig.json 2000 undefined Project: /tsconfig.json WatchType: Config file +Info 30 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /b 1 undefined Config: /b/tsconfig.json WatchType: Wild card directory +Info 31 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /b 1 undefined Config: /b/tsconfig.json WatchType: Wild card directory +Info 32 [00:00:58.000] Finishing updateGraphWorker: Project: /tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 33 [00:00:59.000] Different program with same set of files +Info 34 [00:01:00.000] Creating configuration project /b/tsconfig.json +Info 35 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /b/index.ts 500 undefined WatchType: Closed Script info +Info 36 [00:01:02.000] Starting updateGraphWorker: Project: /b/tsconfig.json +Info 37 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /b/tsconfig.json WatchType: Missing file +Info 38 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /b/node_modules/@types 1 undefined Project: /b/tsconfig.json WatchType: Type roots +Info 39 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /b/node_modules/@types 1 undefined Project: /b/tsconfig.json WatchType: Type roots +Info 40 [00:01:06.000] Finishing updateGraphWorker: Project: /b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:07.000] Project '/b/tsconfig.json' (Configured) +Info 42 [00:01:08.000] Files (2) /a/index.ts /b/index.ts @@ -197,7 +194,7 @@ Info 45 [00:01:11.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 46 [00:01:12.000] ----------------------------------------------- +Info 43 [00:01:09.000] ----------------------------------------------- After request PolledWatches:: @@ -224,7 +221,7 @@ FsWatchesRecursive:: /b: {} -Info 47 [00:01:13.000] response: +Info 44 [00:01:10.000] response: { "response": [ { diff --git a/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols.js b/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols.js index e7727ee2a8362..fa535b3e9165d 100644 --- a/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols.js +++ b/tests/baselines/reference/tsserver/navTo/should-de-duplicate-symbols.js @@ -55,30 +55,29 @@ Info 6 [00:00:21.000] Config: /a/tsconfig.json : { } Info 7 [00:00:22.000] DirectoryWatcher:: Added:: WatchInfo: /a 1 undefined Config: /a/tsconfig.json WatchType: Wild card directory Info 8 [00:00:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a 1 undefined Config: /a/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:24.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:25.000] Starting updateGraphWorker: Project: /a/tsconfig.json -Info 11 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/tsconfig.json WatchType: Missing file -Info 12 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /a/tsconfig.json WatchType: Type roots -Info 13 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /a/tsconfig.json WatchType: Type roots -Info 14 [00:00:29.000] Finishing updateGraphWorker: Project: /a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [00:00:30.000] Project '/a/tsconfig.json' (Configured) -Info 16 [00:00:31.000] Files (1) +Info 9 [00:00:24.000] Starting updateGraphWorker: Project: /a/tsconfig.json +Info 10 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/tsconfig.json WatchType: Missing file +Info 11 [00:00:26.000] DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /a/tsconfig.json WatchType: Type roots +Info 12 [00:00:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/node_modules/@types 1 undefined Project: /a/tsconfig.json WatchType: Type roots +Info 13 [00:00:28.000] Finishing updateGraphWorker: Project: /a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 14 [00:00:29.000] Project '/a/tsconfig.json' (Configured) +Info 15 [00:00:30.000] Files (1) /a/index.ts index.ts Matched by default include pattern '**/*' -Info 17 [00:00:32.000] ----------------------------------------------- -Info 18 [00:00:33.000] Search path: /a -Info 19 [00:00:34.000] For info: /a/tsconfig.json :: No config files found. -Info 20 [00:00:35.000] Project '/a/tsconfig.json' (Configured) -Info 20 [00:00:36.000] Files (1) +Info 16 [00:00:31.000] ----------------------------------------------- +Info 17 [00:00:32.000] Search path: /a +Info 18 [00:00:33.000] For info: /a/tsconfig.json :: No config files found. +Info 19 [00:00:34.000] Project '/a/tsconfig.json' (Configured) +Info 19 [00:00:35.000] Files (1) -Info 20 [00:00:37.000] ----------------------------------------------- -Info 20 [00:00:38.000] Open files: -Info 20 [00:00:39.000] FileName: /a/index.ts ProjectRootPath: undefined -Info 20 [00:00:40.000] Projects: /a/tsconfig.json +Info 19 [00:00:36.000] ----------------------------------------------- +Info 19 [00:00:37.000] Open files: +Info 19 [00:00:38.000] FileName: /a/index.ts ProjectRootPath: undefined +Info 19 [00:00:39.000] Projects: /a/tsconfig.json After request PolledWatches:: @@ -95,11 +94,11 @@ FsWatchesRecursive:: /a: {} -Info 20 [00:00:41.000] response: +Info 19 [00:00:40.000] response: { "responseRequired": false } -Info 21 [00:00:42.000] request: +Info 20 [00:00:41.000] request: { "seq": 0, "type": "request", @@ -124,11 +123,11 @@ FsWatchesRecursive:: /a: {} -Info 22 [00:00:43.000] Search path: /b -Info 23 [00:00:44.000] For info: /b/index.ts :: Config file name: /b/tsconfig.json -Info 24 [00:00:45.000] Creating configuration project /b/tsconfig.json -Info 25 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /b/tsconfig.json 2000 undefined Project: /b/tsconfig.json WatchType: Config file -Info 26 [00:00:47.000] Config: /b/tsconfig.json : { +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 +Info 24 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /b/tsconfig.json 2000 undefined Project: /b/tsconfig.json WatchType: Config file +Info 25 [00:00:46.000] Config: /b/tsconfig.json : { "rootNames": [ "/b/index.ts" ], @@ -143,16 +142,15 @@ Info 26 [00:00:47.000] Config: /b/tsconfig.json : { } ] } -Info 27 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /b 1 undefined Config: /b/tsconfig.json WatchType: Wild card directory -Info 28 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /b 1 undefined Config: /b/tsconfig.json WatchType: Wild card directory -Info 29 [00:00:50.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 30 [00:00:51.000] Starting updateGraphWorker: Project: /b/tsconfig.json -Info 31 [00:00:52.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /b/tsconfig.json WatchType: Missing file -Info 32 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /b/node_modules/@types 1 undefined Project: /b/tsconfig.json WatchType: Type roots -Info 33 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /b/node_modules/@types 1 undefined Project: /b/tsconfig.json WatchType: Type roots -Info 34 [00:00:55.000] Finishing updateGraphWorker: Project: /b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:00:56.000] Project '/b/tsconfig.json' (Configured) -Info 36 [00:00:57.000] Files (2) +Info 26 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /b 1 undefined Config: /b/tsconfig.json WatchType: Wild card directory +Info 27 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /b 1 undefined Config: /b/tsconfig.json WatchType: Wild card directory +Info 28 [00:00:49.000] Starting updateGraphWorker: Project: /b/tsconfig.json +Info 29 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /b/tsconfig.json WatchType: Missing file +Info 30 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /b/node_modules/@types 1 undefined Project: /b/tsconfig.json WatchType: Type roots +Info 31 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /b/node_modules/@types 1 undefined Project: /b/tsconfig.json WatchType: Type roots +Info 32 [00:00:53.000] Finishing updateGraphWorker: Project: /b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 33 [00:00:54.000] Project '/b/tsconfig.json' (Configured) +Info 34 [00:00:55.000] Files (2) /a/index.ts /b/index.ts @@ -162,22 +160,22 @@ Info 36 [00:00:57.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 37 [00:00:58.000] ----------------------------------------------- -Info 38 [00:00:59.000] Search path: /b -Info 39 [00:01:00.000] For info: /b/tsconfig.json :: No config files found. -Info 40 [00:01:01.000] Project '/a/tsconfig.json' (Configured) -Info 40 [00:01:02.000] Files (1) - -Info 40 [00:01:03.000] ----------------------------------------------- -Info 40 [00:01:04.000] Project '/b/tsconfig.json' (Configured) -Info 40 [00:01:05.000] Files (2) - -Info 40 [00:01:06.000] ----------------------------------------------- -Info 40 [00:01:07.000] Open files: -Info 40 [00:01:08.000] FileName: /a/index.ts ProjectRootPath: undefined -Info 40 [00:01:09.000] Projects: /a/tsconfig.json,/b/tsconfig.json -Info 40 [00:01:10.000] FileName: /b/index.ts ProjectRootPath: undefined -Info 40 [00:01:11.000] Projects: /b/tsconfig.json +Info 35 [00:00:56.000] ----------------------------------------------- +Info 36 [00:00:57.000] Search path: /b +Info 37 [00:00:58.000] For info: /b/tsconfig.json :: No config files found. +Info 38 [00:00:59.000] Project '/a/tsconfig.json' (Configured) +Info 38 [00:01:00.000] Files (1) + +Info 38 [00:01:01.000] ----------------------------------------------- +Info 38 [00:01:02.000] Project '/b/tsconfig.json' (Configured) +Info 38 [00:01:03.000] Files (2) + +Info 38 [00:01:04.000] ----------------------------------------------- +Info 38 [00:01:05.000] Open files: +Info 38 [00:01:06.000] FileName: /a/index.ts ProjectRootPath: undefined +Info 38 [00:01:07.000] Projects: /a/tsconfig.json,/b/tsconfig.json +Info 38 [00:01:08.000] FileName: /b/index.ts ProjectRootPath: undefined +Info 38 [00:01:09.000] Projects: /b/tsconfig.json After request PolledWatches:: @@ -200,11 +198,11 @@ FsWatchesRecursive:: /b: {} -Info 40 [00:01:12.000] response: +Info 38 [00:01:10.000] response: { "responseRequired": false } -Info 41 [00:01:13.000] request: +Info 39 [00:01:11.000] request: { "seq": 0, "type": "request", @@ -258,7 +256,7 @@ FsWatchesRecursive:: /b: {} -Info 42 [00:01:14.000] response: +Info 40 [00:01:12.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 b7291ccd32db0..660ca1192a31e 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 @@ -46,16 +46,15 @@ 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] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 5 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 6 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 7 [00:00:26.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 8 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 9 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 10 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 11 [00:00:30.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 12 [00:00:31.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 13 [00:00:32.000] Files (2) +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 +Info 5 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 6 [00:00:25.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 7 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 8 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 9 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 10 [00:00:29.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 11 [00:00:30.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 12 [00:00:31.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/file.ts @@ -65,14 +64,14 @@ Info 13 [00:00:32.000] Files (2) file.ts Root file specified for compilation -Info 14 [00:00:33.000] ----------------------------------------------- -Info 15 [00:00:34.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 15 [00:00:35.000] Files (2) +Info 13 [00:00:32.000] ----------------------------------------------- +Info 14 [00:00:33.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 14 [00:00:34.000] Files (2) -Info 15 [00:00:36.000] ----------------------------------------------- -Info 15 [00:00:37.000] Open files: -Info 15 [00:00:38.000] FileName: /user/username/projects/myproject/file.ts ProjectRootPath: undefined -Info 15 [00:00:39.000] Projects: /dev/null/inferredProject1* +Info 14 [00:00:35.000] ----------------------------------------------- +Info 14 [00:00:36.000] Open files: +Info 14 [00:00:37.000] FileName: /user/username/projects/myproject/file.ts ProjectRootPath: undefined +Info 14 [00:00:38.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -89,11 +88,11 @@ FsWatches:: FsWatchesRecursive:: -Info 15 [00:00:40.000] response: +Info 14 [00:00:39.000] response: { "responseRequired": false } -Info 16 [00:00:41.000] request: +Info 15 [00:00:40.000] request: { "command": "geterr", "arguments": { @@ -137,7 +136,7 @@ FsWatches:: FsWatchesRecursive:: -Info 17 [00:00:42.000] response: +Info 16 [00:00:41.000] response: { "responseRequired": false } @@ -157,7 +156,7 @@ FsWatches:: FsWatchesRecursive:: -Info 18 [00:00:43.000] event: +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 @@ -191,7 +190,7 @@ FsWatches:: FsWatchesRecursive:: -Info 19 [00:00:44.000] event: +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) @@ -225,9 +224,9 @@ FsWatches:: FsWatchesRecursive:: -Info 20 [00:00:45.000] event: +Info 19 [00:00:44.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/file.ts","diagnostics":[]}} -Info 21 [00:00:46.000] event: +Info 20 [00:00:45.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -245,7 +244,7 @@ FsWatches:: FsWatchesRecursive:: -Info 22 [00:00:47.000] request: +Info 21 [00:00:46.000] request: { "command": "updateOpen", "arguments": { @@ -303,12 +302,12 @@ FsWatches:: FsWatchesRecursive:: -Info 23 [00:00:48.000] response: +Info 22 [00:00:47.000] response: { "response": true, "responseRequired": true } -Info 24 [00:00:49.000] request: +Info 23 [00:00:48.000] request: { "command": "geterr", "arguments": { @@ -352,7 +351,7 @@ FsWatches:: FsWatchesRecursive:: -Info 25 [00:00:50.000] response: +Info 24 [00:00:49.000] response: { "responseRequired": false } @@ -372,10 +371,10 @@ FsWatches:: FsWatchesRecursive:: -Info 26 [00:00:51.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 27 [00:00:52.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 28 [00:00:53.000] Different program with same set of files -Info 29 [00:00:54.000] event: +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 +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 @@ -409,7 +408,7 @@ FsWatches:: FsWatchesRecursive:: -Info 30 [00:00:55.000] event: +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) @@ -443,9 +442,9 @@ FsWatches:: FsWatchesRecursive:: -Info 31 [00:00:56.000] event: +Info 30 [00:00:55.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/file.ts","diagnostics":[]}} -Info 32 [00:00:57.000] event: +Info 31 [00:00:56.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) @@ -463,7 +462,7 @@ FsWatches:: FsWatchesRecursive:: -Info 33 [00:00:58.000] request: +Info 32 [00:00:57.000] request: { "command": "updateOpen", "arguments": { @@ -521,12 +520,12 @@ FsWatches:: FsWatchesRecursive:: -Info 34 [00:00:59.000] response: +Info 33 [00:00:58.000] response: { "response": true, "responseRequired": true } -Info 35 [00:01:00.000] request: +Info 34 [00:00:59.000] request: { "command": "geterr", "arguments": { @@ -570,7 +569,7 @@ FsWatches:: FsWatchesRecursive:: -Info 36 [00:01:01.000] response: +Info 35 [00:01:00.000] response: { "responseRequired": false } @@ -590,10 +589,10 @@ FsWatches:: FsWatchesRecursive:: -Info 37 [00:01:02.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 38 [00:01:03.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 39 [00:01:04.000] Different program with same set of files -Info 40 [00:01:05.000] event: +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 +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 @@ -627,7 +626,7 @@ FsWatches:: FsWatchesRecursive:: -Info 41 [00:01:06.000] event: +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) @@ -661,9 +660,9 @@ FsWatches:: FsWatchesRecursive:: -Info 42 [00:01:07.000] event: +Info 41 [00:01:06.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/file.ts","diagnostics":[]}} -Info 43 [00:01:08.000] event: +Info 42 [00:01:07.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":5}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/partialSemanticServer/files-are-added-to-inferred-project.js b/tests/baselines/reference/tsserver/partialSemanticServer/files-are-added-to-inferred-project.js index 95aa3c4badb8e..f2842c3e68e1c 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 @@ -48,11 +48,10 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [00:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 3 [00:00:34.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 4 [00:00:35.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 5 [00:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 6 [00:00:37.000] Files (2) +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) +Info 5 [00:00:36.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/a.ts @@ -62,14 +61,14 @@ Info 6 [00:00:37.000] Files (2) user/username/projects/myproject/a.ts Root file specified for compilation -Info 7 [00:00:38.000] ----------------------------------------------- -Info 8 [00:00:39.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 8 [00:00:40.000] Files (2) +Info 6 [00:00:37.000] ----------------------------------------------- +Info 7 [00:00:38.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 7 [00:00:39.000] Files (2) -Info 8 [00:00:41.000] ----------------------------------------------- -Info 8 [00:00:42.000] Open files: -Info 8 [00:00:43.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 8 [00:00:44.000] Projects: /dev/null/inferredProject1* +Info 7 [00:00:40.000] ----------------------------------------------- +Info 7 [00:00:41.000] Open files: +Info 7 [00:00:42.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 7 [00:00:43.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -78,11 +77,11 @@ FsWatches:: FsWatchesRecursive:: -Info 8 [00:00:45.000] response: +Info 7 [00:00:44.000] response: { "responseRequired": false } -Info 9 [00:00:46.000] request: +Info 8 [00:00:45.000] request: { "command": "completions", "arguments": { @@ -101,12 +100,12 @@ FsWatches:: FsWatchesRecursive:: -Info 10 [00:00:47.000] getCompletionData: Get current token: * -Info 11 [00:00:48.000] getCompletionData: Is inside comment: * -Info 12 [00:00:49.000] getCompletionData: Get previous token: * -Info 13 [00:00:50.000] getCompletionsAtPosition: isCompletionListBlocker: * -Info 14 [00:00:51.000] getCompletionData: Semantic work: * -Info 15 [00:00:52.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * +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: * +Info 12 [00:00:49.000] getCompletionsAtPosition: isCompletionListBlocker: * +Info 13 [00:00:50.000] getCompletionData: Semantic work: * +Info 14 [00:00:51.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request PolledWatches:: @@ -115,7 +114,7 @@ FsWatches:: FsWatchesRecursive:: -Info 16 [00:00:53.000] response: +Info 15 [00:00:52.000] response: { "response": [ { @@ -133,7 +132,7 @@ Info 16 [00:00:53.000] response: ], "responseRequired": true } -Info 17 [00:00:54.000] request: +Info 16 [00:00:53.000] request: { "seq": 0, "type": "request", @@ -150,10 +149,10 @@ FsWatches:: FsWatchesRecursive:: -Info 18 [00:00:55.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 19 [00:00:56.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:00:57.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 21 [00:00:58.000] Files (3) +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) +Info 20 [00:00:57.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/a.ts /user/username/projects/myproject/b.ts @@ -166,16 +165,16 @@ Info 21 [00:00:58.000] Files (3) user/username/projects/myproject/b.ts Root file specified for compilation -Info 22 [00:00:59.000] ----------------------------------------------- -Info 23 [00:01:00.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 23 [00:01:01.000] Files (3) +Info 21 [00:00:58.000] ----------------------------------------------- +Info 22 [00:00:59.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 22 [00:01:00.000] Files (3) -Info 23 [00:01:02.000] ----------------------------------------------- -Info 23 [00:01:03.000] Open files: -Info 23 [00:01:04.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 23 [00:01:05.000] Projects: /dev/null/inferredProject1* -Info 23 [00:01:06.000] FileName: /user/username/projects/myproject/b.ts ProjectRootPath: undefined -Info 23 [00:01:07.000] Projects: /dev/null/inferredProject1* +Info 22 [00:01:01.000] ----------------------------------------------- +Info 22 [00:01:02.000] Open files: +Info 22 [00:01:03.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 22 [00:01:04.000] Projects: /dev/null/inferredProject1* +Info 22 [00:01:05.000] FileName: /user/username/projects/myproject/b.ts ProjectRootPath: undefined +Info 22 [00:01:06.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -184,11 +183,11 @@ FsWatches:: FsWatchesRecursive:: -Info 23 [00:01:08.000] response: +Info 22 [00:01:07.000] response: { "responseRequired": false } -Info 24 [00:01:09.000] request: +Info 23 [00:01:08.000] request: { "command": "completions", "arguments": { @@ -207,12 +206,12 @@ FsWatches:: FsWatchesRecursive:: -Info 25 [00:01:10.000] getCompletionData: Get current token: * -Info 26 [00:01:11.000] getCompletionData: Is inside comment: * -Info 27 [00:01:12.000] getCompletionData: Get previous token: * -Info 28 [00:01:13.000] getCompletionsAtPosition: isCompletionListBlocker: * -Info 29 [00:01:14.000] getCompletionData: Semantic work: * -Info 30 [00:01:15.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * +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: * +Info 27 [00:01:12.000] getCompletionsAtPosition: isCompletionListBlocker: * +Info 28 [00:01:13.000] getCompletionData: Semantic work: * +Info 29 [00:01:14.000] getCompletionsAtPosition: getCompletionEntriesFromSymbols: * After request PolledWatches:: @@ -221,7 +220,7 @@ FsWatches:: FsWatchesRecursive:: -Info 31 [00:01:16.000] response: +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 7f68d6fb64f53..4d9b60a4538db 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 @@ -48,11 +48,10 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [00:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 3 [00:00:34.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 4 [00:00:35.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 5 [00:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 6 [00:00:37.000] Files (2) +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) +Info 5 [00:00:36.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/a.ts @@ -62,14 +61,14 @@ Info 6 [00:00:37.000] Files (2) user/username/projects/myproject/a.ts Root file specified for compilation -Info 7 [00:00:38.000] ----------------------------------------------- -Info 8 [00:00:39.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 8 [00:00:40.000] Files (2) +Info 6 [00:00:37.000] ----------------------------------------------- +Info 7 [00:00:38.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 7 [00:00:39.000] Files (2) -Info 8 [00:00:41.000] ----------------------------------------------- -Info 8 [00:00:42.000] Open files: -Info 8 [00:00:43.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 8 [00:00:44.000] Projects: /dev/null/inferredProject1* +Info 7 [00:00:40.000] ----------------------------------------------- +Info 7 [00:00:41.000] Open files: +Info 7 [00:00:42.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 7 [00:00:43.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -78,11 +77,11 @@ FsWatches:: FsWatchesRecursive:: -Info 8 [00:00:45.000] response: +Info 7 [00:00:44.000] response: { "responseRequired": false } -Info 9 [00:00:46.000] request: +Info 8 [00:00:45.000] request: { "seq": 0, "type": "request", @@ -99,11 +98,11 @@ FsWatches:: FsWatchesRecursive:: -Info 10 [00:00:47.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 10 [00:00:48.000] Files (2) +Info 9 [00:00:46.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 9 [00:00:47.000] Files (2) -Info 10 [00:00:49.000] ----------------------------------------------- -Info 10 [00:00:50.000] Open files: +Info 9 [00:00:48.000] ----------------------------------------------- +Info 9 [00:00:49.000] Open files: After request PolledWatches:: @@ -112,11 +111,11 @@ FsWatches:: FsWatchesRecursive:: -Info 10 [00:00:51.000] response: +Info 9 [00:00:50.000] response: { "responseRequired": false } -Info 11 [00:00:52.000] request: +Info 10 [00:00:51.000] request: { "seq": 0, "type": "request", @@ -133,10 +132,10 @@ FsWatches:: FsWatchesRecursive:: -Info 12 [00:00:53.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 13 [00:00:54.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 14 [00:00:55.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 15 [00:00:56.000] Files (2) +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) +Info 14 [00:00:55.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/c.ts @@ -146,14 +145,14 @@ Info 15 [00:00:56.000] Files (2) user/username/projects/myproject/c.ts Root file specified for compilation -Info 16 [00:00:57.000] ----------------------------------------------- -Info 17 [00:00:58.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 17 [00:00:59.000] Files (2) +Info 15 [00:00:56.000] ----------------------------------------------- +Info 16 [00:00:57.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 16 [00:00:58.000] Files (2) -Info 17 [00:01:00.000] ----------------------------------------------- -Info 17 [00:01:01.000] Open files: -Info 17 [00:01:02.000] FileName: /user/username/projects/myproject/c.ts ProjectRootPath: undefined -Info 17 [00:01:03.000] Projects: /dev/null/inferredProject1* +Info 16 [00:00:59.000] ----------------------------------------------- +Info 16 [00:01:00.000] Open files: +Info 16 [00:01:01.000] FileName: /user/username/projects/myproject/c.ts ProjectRootPath: undefined +Info 16 [00:01:02.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -162,11 +161,11 @@ FsWatches:: FsWatchesRecursive:: -Info 17 [00:01:04.000] response: +Info 16 [00:01:03.000] response: { "responseRequired": false } -Info 18 [00:01:05.000] request: +Info 17 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -183,10 +182,10 @@ FsWatches:: FsWatchesRecursive:: -Info 19 [00:01:06.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 20 [00:01:07.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 21 [00:01:08.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 22 [00:01:09.000] Files (3) +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) +Info 21 [00:01:08.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/c.ts /user/username/projects/myproject/b.ts @@ -199,16 +198,16 @@ Info 22 [00:01:09.000] Files (3) user/username/projects/myproject/b.ts Root file specified for compilation -Info 23 [00:01:10.000] ----------------------------------------------- -Info 24 [00:01:11.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 24 [00:01:12.000] Files (3) +Info 22 [00:01:09.000] ----------------------------------------------- +Info 23 [00:01:10.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 23 [00:01:11.000] Files (3) -Info 24 [00:01:13.000] ----------------------------------------------- -Info 24 [00:01:14.000] Open files: -Info 24 [00:01:15.000] FileName: /user/username/projects/myproject/c.ts ProjectRootPath: undefined -Info 24 [00:01:16.000] Projects: /dev/null/inferredProject1* -Info 24 [00:01:17.000] FileName: /user/username/projects/myproject/b.ts ProjectRootPath: undefined -Info 24 [00:01:18.000] Projects: /dev/null/inferredProject1* +Info 23 [00:01:12.000] ----------------------------------------------- +Info 23 [00:01:13.000] Open files: +Info 23 [00:01:14.000] FileName: /user/username/projects/myproject/c.ts ProjectRootPath: undefined +Info 23 [00:01:15.000] Projects: /dev/null/inferredProject1* +Info 23 [00:01:16.000] FileName: /user/username/projects/myproject/b.ts ProjectRootPath: undefined +Info 23 [00:01:17.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -217,7 +216,7 @@ FsWatches:: FsWatchesRecursive:: -Info 24 [00:01:19.000] response: +Info 23 [00:01:18.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/partialSemanticServer/should-not-include-auto-type-reference-directives.js b/tests/baselines/reference/tsserver/partialSemanticServer/should-not-include-auto-type-reference-directives.js index 5c29b1311d624..0644fa064bc8d 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 @@ -51,11 +51,10 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [00:00:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 3 [00:00:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 4 [00:00:43.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 5 [00:00:44.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 6 [00:00:45.000] Files (2) +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) +Info 5 [00:00:44.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/a.ts @@ -65,14 +64,14 @@ Info 6 [00:00:45.000] Files (2) user/username/projects/myproject/a.ts Root file specified for compilation -Info 7 [00:00:46.000] ----------------------------------------------- -Info 8 [00:00:47.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 8 [00:00:48.000] Files (2) +Info 6 [00:00:45.000] ----------------------------------------------- +Info 7 [00:00:46.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 7 [00:00:47.000] Files (2) -Info 8 [00:00:49.000] ----------------------------------------------- -Info 8 [00:00:50.000] Open files: -Info 8 [00:00:51.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 8 [00:00:52.000] Projects: /dev/null/inferredProject1* +Info 7 [00:00:48.000] ----------------------------------------------- +Info 7 [00:00:49.000] Open files: +Info 7 [00:00:50.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 7 [00:00:51.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -81,7 +80,7 @@ FsWatches:: FsWatchesRecursive:: -Info 8 [00:00:53.000] response: +Info 7 [00:00:52.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/partialSemanticServer/should-not-include-referenced-files-from-unopened-files.js b/tests/baselines/reference/tsserver/partialSemanticServer/should-not-include-referenced-files-from-unopened-files.js index 33a18ae86e7ff..dd362f7b414b4 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 @@ -48,11 +48,10 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [00:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 3 [00:00:34.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 4 [00:00:35.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 5 [00:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 6 [00:00:37.000] Files (2) +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) +Info 5 [00:00:36.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/a.ts @@ -62,14 +61,14 @@ Info 6 [00:00:37.000] Files (2) user/username/projects/myproject/a.ts Root file specified for compilation -Info 7 [00:00:38.000] ----------------------------------------------- -Info 8 [00:00:39.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 8 [00:00:40.000] Files (2) +Info 6 [00:00:37.000] ----------------------------------------------- +Info 7 [00:00:38.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 7 [00:00:39.000] Files (2) -Info 8 [00:00:41.000] ----------------------------------------------- -Info 8 [00:00:42.000] Open files: -Info 8 [00:00:43.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 8 [00:00:44.000] Projects: /dev/null/inferredProject1* +Info 7 [00:00:40.000] ----------------------------------------------- +Info 7 [00:00:41.000] Open files: +Info 7 [00:00:42.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 7 [00:00:43.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -78,7 +77,7 @@ FsWatches:: FsWatchesRecursive:: -Info 8 [00:00:45.000] response: +Info 7 [00:00:44.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/partialSemanticServer/should-support-go-to-definition-on-module-specifiers.js b/tests/baselines/reference/tsserver/partialSemanticServer/should-support-go-to-definition-on-module-specifiers.js index 47528982a8187..90a2821c632b4 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 @@ -48,11 +48,10 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [00:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 3 [00:00:34.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 4 [00:00:35.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 5 [00:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 6 [00:00:37.000] Files (2) +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) +Info 5 [00:00:36.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/a.ts @@ -62,14 +61,14 @@ Info 6 [00:00:37.000] Files (2) user/username/projects/myproject/a.ts Root file specified for compilation -Info 7 [00:00:38.000] ----------------------------------------------- -Info 8 [00:00:39.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 8 [00:00:40.000] Files (2) +Info 6 [00:00:37.000] ----------------------------------------------- +Info 7 [00:00:38.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 7 [00:00:39.000] Files (2) -Info 8 [00:00:41.000] ----------------------------------------------- -Info 8 [00:00:42.000] Open files: -Info 8 [00:00:43.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 8 [00:00:44.000] Projects: /dev/null/inferredProject1* +Info 7 [00:00:40.000] ----------------------------------------------- +Info 7 [00:00:41.000] Open files: +Info 7 [00:00:42.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 7 [00:00:43.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -78,11 +77,11 @@ FsWatches:: FsWatchesRecursive:: -Info 8 [00:00:45.000] response: +Info 7 [00:00:44.000] response: { "responseRequired": false } -Info 9 [00:00:46.000] request: +Info 8 [00:00:45.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -109,7 +108,7 @@ FsWatches:: FsWatchesRecursive:: -Info 10 [00:00:47.000] response: +Info 9 [00:00:46.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/partialSemanticServer/syntactic-diagnostics-are-returned-with-no-error.js b/tests/baselines/reference/tsserver/partialSemanticServer/syntactic-diagnostics-are-returned-with-no-error.js index e086947bfa479..1ca1a65e5eeb8 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 @@ -35,11 +35,10 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [00:00:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 3 [00:00:24.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 4 [00:00:25.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 5 [00:00:26.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 6 [00:00:27.000] Files (2) +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) +Info 5 [00:00:26.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/a.ts @@ -49,14 +48,14 @@ Info 6 [00:00:27.000] Files (2) user/username/projects/myproject/a.ts Root file specified for compilation -Info 7 [00:00:28.000] ----------------------------------------------- -Info 8 [00:00:29.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 8 [00:00:30.000] Files (2) +Info 6 [00:00:27.000] ----------------------------------------------- +Info 7 [00:00:28.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 7 [00:00:29.000] Files (2) -Info 8 [00:00:31.000] ----------------------------------------------- -Info 8 [00:00:32.000] Open files: -Info 8 [00:00:33.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 8 [00:00:34.000] Projects: /dev/null/inferredProject1* +Info 7 [00:00:30.000] ----------------------------------------------- +Info 7 [00:00:31.000] Open files: +Info 7 [00:00:32.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 7 [00:00:33.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -65,11 +64,11 @@ FsWatches:: FsWatchesRecursive:: -Info 8 [00:00:35.000] response: +Info 7 [00:00:34.000] response: { "responseRequired": false } -Info 9 [00:00:36.000] request: +Info 8 [00:00:35.000] request: { "type": "request", "seq": 1, @@ -94,7 +93,7 @@ FsWatches:: FsWatchesRecursive:: -Info 10 [00:00:37.000] response: +Info 9 [00:00:36.000] response: { "response": [ { @@ -131,7 +130,7 @@ Info 10 [00:00:37.000] response: ], "responseRequired": true } -Info 11 [00:00:38.000] request: +Info 10 [00:00:37.000] request: { "command": "geterr", "arguments": { @@ -159,7 +158,7 @@ FsWatches:: FsWatchesRecursive:: -Info 12 [00:00:39.000] response: +Info 11 [00:00:38.000] response: { "responseRequired": false } @@ -171,8 +170,8 @@ FsWatches:: FsWatchesRecursive:: -Info 13 [00:00:40.000] Session does not support events: ignored event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/a.ts","diagnostics":[{"start":{"line":1,"offset":17},"end":{"line":1,"offset":18},"text":"')' expected.","code":1005,"category":"error","relatedInformation":[{"span":{"start":{"line":1,"offset":4},"end":{"line":1,"offset":5},"file":"/user/username/projects/myproject/a.ts"},"message":"The parser expected to find a ')' to match the '(' token here.","category":"error","code":1007}]}]}} -Info 14 [00:00:41.000] Session does not support events: ignored event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} +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":2}} After checking timeout queue length (1) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/partialSemanticServer/throws-unsupported-commands.js b/tests/baselines/reference/tsserver/partialSemanticServer/throws-unsupported-commands.js index ade92475dd878..2174e3b537e50 100644 --- a/tests/baselines/reference/tsserver/partialSemanticServer/throws-unsupported-commands.js +++ b/tests/baselines/reference/tsserver/partialSemanticServer/throws-unsupported-commands.js @@ -48,11 +48,10 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [00:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 3 [00:00:34.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 4 [00:00:35.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 5 [00:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 6 [00:00:37.000] Files (2) +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) +Info 5 [00:00:36.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/a.ts @@ -62,14 +61,14 @@ Info 6 [00:00:37.000] Files (2) user/username/projects/myproject/a.ts Root file specified for compilation -Info 7 [00:00:38.000] ----------------------------------------------- -Info 8 [00:00:39.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 8 [00:00:40.000] Files (2) +Info 6 [00:00:37.000] ----------------------------------------------- +Info 7 [00:00:38.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 7 [00:00:39.000] Files (2) -Info 8 [00:00:41.000] ----------------------------------------------- -Info 8 [00:00:42.000] Open files: -Info 8 [00:00:43.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 8 [00:00:44.000] Projects: /dev/null/inferredProject1* +Info 7 [00:00:40.000] ----------------------------------------------- +Info 7 [00:00:41.000] Open files: +Info 7 [00:00:42.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 7 [00:00:43.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -78,11 +77,11 @@ FsWatches:: FsWatchesRecursive:: -Info 8 [00:00:45.000] response: +Info 7 [00:00:44.000] response: { "responseRequired": false } -Info 9 [00:00:46.000] request: +Info 8 [00:00:45.000] request: { "type": "request", "seq": 1, @@ -99,5 +98,5 @@ FsWatches:: FsWatchesRecursive:: -Info 10 [00:00:47.000] Request: semanticDiagnosticsSync not allowed in LanguageServiceMode.PartialSemantic -Info 11 [00:00:48.000] LanguageService Operation: getSemanticDiagnostics not allowed in LanguageServiceMode.PartialSemantic \ No newline at end of file +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/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 60b16c4c82972..8dc9ac813f503 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 @@ -53,14 +53,13 @@ Info 7 [00:00:22.000] Config: /a/b/tsconfig.json : { } Info 8 [00:00:23.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory Info 9 [00:00:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:25.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:26.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 12 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 15 [00:00:30.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:00:31.000] Project '/a/b/tsconfig.json' (Configured) -Info 17 [00:00:32.000] Files (2) +Info 10 [00:00:25.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 11 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 13 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 14 [00:00:29.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:30.000] Project '/a/b/tsconfig.json' (Configured) +Info 16 [00:00:31.000] Files (2) /a/lib/lib.d.ts /a/b/app.ts @@ -70,20 +69,20 @@ Info 17 [00:00:32.000] Files (2) app.ts Matched by default include pattern '**/*' -Info 18 [00:00:33.000] ----------------------------------------------- -Info 19 [00:00:34.000] event: +Info 17 [00:00:32.000] ----------------------------------------------- +Info 18 [00:00:33.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/tsconfig.json"}} -Info 20 [00:00:35.000] event: +Info 19 [00:00:34.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"e10a1dc99ee63f16cb9b69bcee75540cdf41a1137371d3afbd4e7de507be5207","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":10,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 21 [00:00:36.000] event: +Info 20 [00:00:35.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/app.ts","configFile":"/a/b/tsconfig.json","diagnostics":[]}} -Info 22 [00:00:37.000] Project '/a/b/tsconfig.json' (Configured) -Info 22 [00:00:38.000] Files (2) +Info 21 [00:00:36.000] Project '/a/b/tsconfig.json' (Configured) +Info 21 [00:00:37.000] Files (2) -Info 22 [00:00:39.000] ----------------------------------------------- -Info 22 [00:00:40.000] Open files: -Info 22 [00:00:41.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 22 [00:00:42.000] Projects: /a/b/tsconfig.json +Info 21 [00:00:38.000] ----------------------------------------------- +Info 21 [00:00:39.000] Open files: +Info 21 [00:00:40.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 21 [00:00:41.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -100,14 +99,14 @@ FsWatchesRecursive:: /a/b: {} -Info 22 [00:00:43.000] response: +Info 21 [00:00:42.000] response: { "responseRequired": false } -Info 23 [00:00:47.000] FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 24 [00:00:48.000] Scheduled: /a/b/tsconfig.json -Info 25 [00:00:49.000] Scheduled: *ensureProjectForOpenFiles* -Info 26 [00:00:50.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 22 [00:00:46.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 23 [00:00:47.000] Scheduled: /a/b/tsconfig.json +Info 24 [00:00:48.000] Scheduled: *ensureProjectForOpenFiles* +Info 25 [00:00:49.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file Before running timeout callbacks //// [/a/b/tsconfig.json] { @@ -131,11 +130,11 @@ FsWatchesRecursive:: /a/b: {} -Info 27 [00:00:51.000] Running: /a/b/tsconfig.json -Info 28 [00:00:52.000] Reloading configured project /a/b/tsconfig.json -Info 29 [00:00:53.000] event: +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: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/a/b/tsconfig.json","reason":"Change in config file detected"}} -Info 30 [00:00:54.000] Config: /a/b/tsconfig.json : { +Info 29 [00:00:53.000] Config: /a/b/tsconfig.json : { "rootNames": [ "/a/b/app.ts" ], @@ -143,33 +142,32 @@ Info 30 [00:00:54.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 31 [00:00:55.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:00:56.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 33 [00:00:57.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 34 [00:00:58.000] Different program with same set of files -Info 35 [00:00:59.000] event: +Info 30 [00:00:54.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 31 [00:00:55.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 32 [00:00:56.000] Different program with same set of files +Info 33 [00:00:57.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/tsconfig.json"}} -Info 36 [00:01:00.000] event: +Info 34 [00:00:58.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/tsconfig.json","configFile":"/a/b/tsconfig.json","diagnostics":[{"start":{"line":3,"offset":21},"end":{"line":3,"offset":27},"text":"Unknown compiler option 'haha'.","code":5023,"category":"error","fileName":"/a/b/tsconfig.json"}]}} -Info 37 [00:01:01.000] Running: *ensureProjectForOpenFiles* -Info 38 [00:01:02.000] Before ensureProjectForOpenFiles: -Info 39 [00:01:03.000] Project '/a/b/tsconfig.json' (Configured) -Info 39 [00:01:04.000] Files (2) - -Info 39 [00:01:05.000] ----------------------------------------------- -Info 39 [00:01:06.000] Open files: -Info 39 [00:01:07.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 39 [00:01:08.000] Projects: /a/b/tsconfig.json -Info 39 [00:01:09.000] After ensureProjectForOpenFiles: -Info 40 [00:01:10.000] Project '/a/b/tsconfig.json' (Configured) -Info 40 [00:01:11.000] Files (2) - -Info 40 [00:01:12.000] ----------------------------------------------- -Info 40 [00:01:13.000] Open files: -Info 40 [00:01:14.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 40 [00:01:15.000] Projects: /a/b/tsconfig.json -Info 40 [00:01:16.000] got projects updated in background, updating diagnostics for /a/b/app.ts -Info 41 [00:01:17.000] event: +Info 35 [00:00:59.000] Running: *ensureProjectForOpenFiles* +Info 36 [00:01:00.000] Before ensureProjectForOpenFiles: +Info 37 [00:01:01.000] Project '/a/b/tsconfig.json' (Configured) +Info 37 [00:01:02.000] Files (2) + +Info 37 [00:01:03.000] ----------------------------------------------- +Info 37 [00:01:04.000] Open files: +Info 37 [00:01:05.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 37 [00:01:06.000] Projects: /a/b/tsconfig.json +Info 37 [00:01:07.000] After ensureProjectForOpenFiles: +Info 38 [00:01:08.000] Project '/a/b/tsconfig.json' (Configured) +Info 38 [00:01:09.000] Files (2) + +Info 38 [00:01:10.000] ----------------------------------------------- +Info 38 [00:01:11.000] Open files: +Info 38 [00:01:12.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 38 [00:01:13.000] Projects: /a/b/tsconfig.json +Info 38 [00:01:14.000] got projects updated in background, updating diagnostics for /a/b/app.ts +Info 39 [00:01:15.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/a/b/app.ts"]}} After running timeout callbacks @@ -187,10 +185,10 @@ FsWatchesRecursive:: /a/b: {} -Info 42 [00:01:21.000] FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 43 [00:01:22.000] Scheduled: /a/b/tsconfig.json -Info 44 [00:01:23.000] Scheduled: *ensureProjectForOpenFiles* -Info 45 [00:01:24.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +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* +Info 43 [00:01:22.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/tsconfig.json 1:: WatchInfo: /a/b/tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file Before running timeout callbacks //// [/a/b/tsconfig.json] { @@ -212,10 +210,10 @@ FsWatchesRecursive:: /a/b: {} -Info 46 [00:01:25.000] Reloading configured project /a/b/tsconfig.json -Info 47 [00:01:26.000] event: +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"}} -Info 48 [00:01:27.000] Config: /a/b/tsconfig.json : { +Info 46 [00:01:25.000] Config: /a/b/tsconfig.json : { "rootNames": [ "/a/b/app.ts" ], @@ -223,36 +221,35 @@ Info 48 [00:01:27.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 49 [00:01:28.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 50 [00:01:29.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 51 [00:01:30.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 52 [00:01:31.000] Different program with same set of files -Info 53 [00:01:32.000] event: +Info 47 [00:01:26.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 48 [00:01:27.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 49 [00:01:28.000] Different program with same set of files +Info 50 [00:01:29.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/tsconfig.json"}} -Info 54 [00:01:33.000] event: +Info 51 [00:01:30.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/tsconfig.json","configFile":"/a/b/tsconfig.json","diagnostics":[]}} -Info 55 [00:01:34.000] event: +Info 52 [00:01:31.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/a/b/app.ts","diagnostics":[]}} -Info 56 [00:01:35.000] Running: /a/b/tsconfig.json -Info 57 [00:01:36.000] Running: *ensureProjectForOpenFiles* -Info 58 [00:01:37.000] Before ensureProjectForOpenFiles: -Info 59 [00:01:38.000] Project '/a/b/tsconfig.json' (Configured) -Info 59 [00:01:39.000] Files (2) - -Info 59 [00:01:40.000] ----------------------------------------------- -Info 59 [00:01:41.000] Open files: -Info 59 [00:01:42.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 59 [00:01:43.000] Projects: /a/b/tsconfig.json -Info 59 [00:01:44.000] After ensureProjectForOpenFiles: -Info 60 [00:01:45.000] Project '/a/b/tsconfig.json' (Configured) -Info 60 [00:01:46.000] Files (2) - -Info 60 [00:01:47.000] ----------------------------------------------- -Info 60 [00:01:48.000] Open files: -Info 60 [00:01:49.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 60 [00:01:50.000] Projects: /a/b/tsconfig.json -Info 60 [00:01:51.000] got projects updated in background, updating diagnostics for /a/b/app.ts -Info 61 [00:01:52.000] event: +Info 53 [00:01:32.000] Running: /a/b/tsconfig.json +Info 54 [00:01:33.000] Running: *ensureProjectForOpenFiles* +Info 55 [00:01:34.000] Before ensureProjectForOpenFiles: +Info 56 [00:01:35.000] Project '/a/b/tsconfig.json' (Configured) +Info 56 [00:01:36.000] Files (2) + +Info 56 [00:01:37.000] ----------------------------------------------- +Info 56 [00:01:38.000] Open files: +Info 56 [00:01:39.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 56 [00:01:40.000] Projects: /a/b/tsconfig.json +Info 56 [00:01:41.000] After ensureProjectForOpenFiles: +Info 57 [00:01:42.000] Project '/a/b/tsconfig.json' (Configured) +Info 57 [00:01:43.000] Files (2) + +Info 57 [00:01:44.000] ----------------------------------------------- +Info 57 [00:01:45.000] Open files: +Info 57 [00:01:46.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 57 [00:01:47.000] Projects: /a/b/tsconfig.json +Info 57 [00:01:48.000] got projects updated in background, updating diagnostics for /a/b/app.ts +Info 58 [00:01:49.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/a/b/app.ts"]}} After running timeout callbacks diff --git a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-doesnt-have-errors.js b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-generated-when-the-config-file-doesnt-have-errors.js index d0e416cfc5a3b..590388d0667c1 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 @@ -53,14 +53,13 @@ Info 7 [00:00:22.000] Config: /a/b/tsconfig.json : { } Info 8 [00:00:23.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory Info 9 [00:00:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:25.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:26.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 12 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 15 [00:00:30.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:00:31.000] Project '/a/b/tsconfig.json' (Configured) -Info 17 [00:00:32.000] Files (2) +Info 10 [00:00:25.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 11 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 13 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 14 [00:00:29.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:30.000] Project '/a/b/tsconfig.json' (Configured) +Info 16 [00:00:31.000] Files (2) /a/lib/lib.d.ts /a/b/app.ts @@ -70,20 +69,20 @@ Info 17 [00:00:32.000] Files (2) app.ts Matched by default include pattern '**/*' -Info 18 [00:00:33.000] ----------------------------------------------- -Info 19 [00:00:34.000] event: +Info 17 [00:00:32.000] ----------------------------------------------- +Info 18 [00:00:33.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/tsconfig.json"}} -Info 20 [00:00:35.000] event: +Info 19 [00:00:34.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"e10a1dc99ee63f16cb9b69bcee75540cdf41a1137371d3afbd4e7de507be5207","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":10,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 21 [00:00:36.000] event: +Info 20 [00:00:35.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/app.ts","configFile":"/a/b/tsconfig.json","diagnostics":[]}} -Info 22 [00:00:37.000] Project '/a/b/tsconfig.json' (Configured) -Info 22 [00:00:38.000] Files (2) +Info 21 [00:00:36.000] Project '/a/b/tsconfig.json' (Configured) +Info 21 [00:00:37.000] Files (2) -Info 22 [00:00:39.000] ----------------------------------------------- -Info 22 [00:00:40.000] Open files: -Info 22 [00:00:41.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 22 [00:00:42.000] Projects: /a/b/tsconfig.json +Info 21 [00:00:38.000] ----------------------------------------------- +Info 21 [00:00:39.000] Open files: +Info 21 [00:00:40.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 21 [00:00:41.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -100,7 +99,7 @@ FsWatchesRecursive:: /a/b: {} -Info 22 [00:00:43.000] response: +Info 21 [00:00:42.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-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 90406475a75d0..482bccfb27670 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 @@ -56,14 +56,13 @@ Info 7 [00:00:22.000] Config: /a/b/tsconfig.json : { } Info 8 [00:00:23.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory Info 9 [00:00:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:25.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:26.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 12 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 15 [00:00:30.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:00:31.000] Project '/a/b/tsconfig.json' (Configured) -Info 17 [00:00:32.000] Files (2) +Info 10 [00:00:25.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 11 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 13 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 14 [00:00:29.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:30.000] Project '/a/b/tsconfig.json' (Configured) +Info 16 [00:00:31.000] Files (2) /a/lib/lib.d.ts /a/b/app.ts @@ -73,20 +72,20 @@ Info 17 [00:00:32.000] Files (2) app.ts Matched by default include pattern '**/*' -Info 18 [00:00:33.000] ----------------------------------------------- -Info 19 [00:00:34.000] event: +Info 17 [00:00:32.000] ----------------------------------------------- +Info 18 [00:00:33.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/tsconfig.json"}} -Info 20 [00:00:35.000] event: +Info 19 [00:00:34.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"e10a1dc99ee63f16cb9b69bcee75540cdf41a1137371d3afbd4e7de507be5207","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":10,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 21 [00:00:36.000] event: +Info 20 [00:00:35.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/app.ts","configFile":"/a/b/tsconfig.json","diagnostics":[{"start":{"line":3,"offset":25},"end":{"line":3,"offset":30},"text":"Unknown compiler option 'foo'.","code":5023,"category":"error","fileName":"/a/b/tsconfig.json"},{"start":{"line":4,"offset":25},"end":{"line":4,"offset":34},"text":"Unknown compiler option 'allowJS'. Did you mean 'allowJs'?","code":5025,"category":"error","fileName":"/a/b/tsconfig.json"}]}} -Info 22 [00:00:37.000] Project '/a/b/tsconfig.json' (Configured) -Info 22 [00:00:38.000] Files (2) +Info 21 [00:00:36.000] Project '/a/b/tsconfig.json' (Configured) +Info 21 [00:00:37.000] Files (2) -Info 22 [00:00:39.000] ----------------------------------------------- -Info 22 [00:00:40.000] Open files: -Info 22 [00:00:41.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 22 [00:00:42.000] Projects: /a/b/tsconfig.json +Info 21 [00:00:38.000] ----------------------------------------------- +Info 21 [00:00:39.000] Open files: +Info 21 [00:00:40.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 21 [00:00:41.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -103,7 +102,7 @@ FsWatchesRecursive:: /a/b: {} -Info 22 [00:00:43.000] response: +Info 21 [00:00:42.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-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 c2f8b2b299812..75ab65aa31fa5 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 @@ -55,15 +55,14 @@ Info 7 [00:00:22.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 8 [00:00:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /a/b/app.ts 500 undefined WatchType: Closed Script info -Info 10 [00:00:25.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 11 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 13 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [00:00:29.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [00:00:30.000] Project '/a/b/tsconfig.json' (Configured) -Info 16 [00:00:31.000] Files (2) +Info 8 [00:00:23.000] FileWatcher:: Added:: WatchInfo: /a/b/app.ts 500 undefined WatchType: Closed Script info +Info 9 [00:00:24.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 10 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:26.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 12 [00:00:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 13 [00:00:28.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 14 [00:00:29.000] Project '/a/b/tsconfig.json' (Configured) +Info 15 [00:00:30.000] Files (2) /a/lib/lib.d.ts /a/b/app.ts @@ -73,20 +72,19 @@ Info 16 [00:00:31.000] Files (2) app.ts Part of 'files' list in tsconfig.json -Info 17 [00:00:32.000] ----------------------------------------------- -Info 18 [00:00:33.000] event: +Info 16 [00:00:31.000] ----------------------------------------------- +Info 17 [00:00:32.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/tsconfig.json"}} -Info 19 [00:00:34.000] event: +Info 18 [00:00:33.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"e10a1dc99ee63f16cb9b69bcee75540cdf41a1137371d3afbd4e7de507be5207","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":10,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":true,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 20 [00:00:35.000] event: +Info 19 [00:00:34.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/test.ts","configFile":"/a/b/tsconfig.json","diagnostics":[{"start":{"line":3,"offset":25},"end":{"line":3,"offset":30},"text":"Unknown compiler option 'foo'.","code":5023,"category":"error","fileName":"/a/b/tsconfig.json"},{"start":{"line":4,"offset":25},"end":{"line":4,"offset":34},"text":"Unknown compiler option 'allowJS'. Did you mean 'allowJs'?","code":5025,"category":"error","fileName":"/a/b/tsconfig.json"}]}} -Info 21 [00:00:36.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 22 [00:00:37.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 23 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 24 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 25 [00:00:40.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 26 [00:00:41.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 27 [00:00:42.000] Files (2) +Info 20 [00:00:35.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 21 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 22 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 23 [00:00:38.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:39.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 25 [00:00:40.000] Files (2) /a/lib/lib.d.ts /a/b/test.ts @@ -96,18 +94,18 @@ Info 27 [00:00:42.000] Files (2) test.ts Root file specified for compilation -Info 28 [00:00:43.000] ----------------------------------------------- -Info 29 [00:00:44.000] Project '/a/b/tsconfig.json' (Configured) -Info 29 [00:00:45.000] Files (2) +Info 26 [00:00:41.000] ----------------------------------------------- +Info 27 [00:00:42.000] Project '/a/b/tsconfig.json' (Configured) +Info 27 [00:00:43.000] Files (2) -Info 29 [00:00:46.000] ----------------------------------------------- -Info 29 [00:00:47.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 29 [00:00:48.000] Files (2) +Info 27 [00:00:44.000] ----------------------------------------------- +Info 27 [00:00:45.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 27 [00:00:46.000] Files (2) -Info 29 [00:00:49.000] ----------------------------------------------- -Info 29 [00:00:50.000] Open files: -Info 29 [00:00:51.000] FileName: /a/b/test.ts ProjectRootPath: undefined -Info 29 [00:00:52.000] Projects: /dev/null/inferredProject1* +Info 27 [00:00:47.000] ----------------------------------------------- +Info 27 [00:00:48.000] Open files: +Info 27 [00:00:49.000] FileName: /a/b/test.ts ProjectRootPath: undefined +Info 27 [00:00:50.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -124,11 +122,11 @@ FsWatches:: FsWatchesRecursive:: -Info 29 [00:00:53.000] response: +Info 27 [00:00:51.000] response: { "responseRequired": false } -Info 30 [00:00:54.000] request: +Info 28 [00:00:52.000] request: { "seq": 0, "type": "request", @@ -153,22 +151,22 @@ FsWatches:: FsWatchesRecursive:: -Info 31 [00:00:55.000] FileWatcher:: Close:: WatchInfo: /a/b/app.ts 500 undefined WatchType: Closed Script info -Info 32 [00:00:56.000] Search path: /a/b -Info 33 [00:00:57.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json -Info 34 [00:00:58.000] Project '/a/b/tsconfig.json' (Configured) -Info 34 [00:00:59.000] Files (2) - -Info 34 [00:01:00.000] ----------------------------------------------- -Info 34 [00:01:01.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 34 [00:01:02.000] Files (2) - -Info 34 [00:01:03.000] ----------------------------------------------- -Info 34 [00:01:04.000] Open files: -Info 34 [00:01:05.000] FileName: /a/b/test.ts ProjectRootPath: undefined -Info 34 [00:01:06.000] Projects: /dev/null/inferredProject1* -Info 34 [00:01:07.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 34 [00:01:08.000] Projects: /a/b/tsconfig.json +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 +Info 32 [00:00:56.000] Project '/a/b/tsconfig.json' (Configured) +Info 32 [00:00:57.000] Files (2) + +Info 32 [00:00:58.000] ----------------------------------------------- +Info 32 [00:00:59.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 32 [00:01:00.000] Files (2) + +Info 32 [00:01:01.000] ----------------------------------------------- +Info 32 [00:01:02.000] Open files: +Info 32 [00:01:03.000] FileName: /a/b/test.ts ProjectRootPath: undefined +Info 32 [00:01:04.000] Projects: /dev/null/inferredProject1* +Info 32 [00:01:05.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 32 [00:01:06.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -183,11 +181,11 @@ FsWatches:: FsWatchesRecursive:: -Info 34 [00:01:09.000] response: +Info 32 [00:01:07.000] response: { "responseRequired": false } -Info 35 [00:01:10.000] request: +Info 33 [00:01:08.000] request: { "seq": 0, "type": "request", @@ -210,17 +208,16 @@ FsWatches:: FsWatchesRecursive:: -Info 36 [00:01:11.000] Search path: /a/b -Info 37 [00:01:12.000] For info: /a/b/test2.ts :: Config file name: /a/b/tsconfig.json -Info 38 [00:01:13.000] event: +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: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/test2.ts","configFile":"/a/b/tsconfig.json","diagnostics":[{"start":{"line":3,"offset":25},"end":{"line":3,"offset":30},"text":"Unknown compiler option 'foo'.","code":5023,"category":"error","fileName":"/a/b/tsconfig.json"},{"start":{"line":4,"offset":25},"end":{"line":4,"offset":34},"text":"Unknown compiler option 'allowJS'. Did you mean 'allowJs'?","code":5025,"category":"error","fileName":"/a/b/tsconfig.json"}]}} -Info 39 [00:01:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 40 [00:01:15.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info 41 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 42 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 43 [00:01:18.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [00:01:19.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 45 [00:01:20.000] Files (2) +Info 37 [00:01:12.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* +Info 38 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 39 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 40 [00:01:15.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:16.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 42 [00:01:17.000] Files (2) /a/lib/lib.d.ts /a/b/test2.ts @@ -230,26 +227,26 @@ Info 45 [00:01:20.000] Files (2) test2.ts Root file specified for compilation -Info 46 [00:01:21.000] ----------------------------------------------- -Info 47 [00:01:22.000] Project '/a/b/tsconfig.json' (Configured) -Info 47 [00:01:23.000] Files (2) - -Info 47 [00:01:24.000] ----------------------------------------------- -Info 47 [00:01:25.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 47 [00:01:26.000] Files (2) - -Info 47 [00:01:27.000] ----------------------------------------------- -Info 47 [00:01:28.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 47 [00:01:29.000] Files (2) - -Info 47 [00:01:30.000] ----------------------------------------------- -Info 47 [00:01:31.000] Open files: -Info 47 [00:01:32.000] FileName: /a/b/test.ts ProjectRootPath: undefined -Info 47 [00:01:33.000] Projects: /dev/null/inferredProject1* -Info 47 [00:01:34.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 47 [00:01:35.000] Projects: /a/b/tsconfig.json -Info 47 [00:01:36.000] FileName: /a/b/test2.ts ProjectRootPath: undefined -Info 47 [00:01:37.000] Projects: /dev/null/inferredProject2* +Info 43 [00:01:18.000] ----------------------------------------------- +Info 44 [00:01:19.000] Project '/a/b/tsconfig.json' (Configured) +Info 44 [00:01:20.000] Files (2) + +Info 44 [00:01:21.000] ----------------------------------------------- +Info 44 [00:01:22.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 44 [00:01:23.000] Files (2) + +Info 44 [00:01:24.000] ----------------------------------------------- +Info 44 [00:01:25.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 44 [00:01:26.000] Files (2) + +Info 44 [00:01:27.000] ----------------------------------------------- +Info 44 [00:01:28.000] Open files: +Info 44 [00:01:29.000] FileName: /a/b/test.ts ProjectRootPath: undefined +Info 44 [00:01:30.000] Projects: /dev/null/inferredProject1* +Info 44 [00:01:31.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 44 [00:01:32.000] Projects: /a/b/tsconfig.json +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:: @@ -264,7 +261,7 @@ FsWatches:: FsWatchesRecursive:: -Info 47 [00:01:38.000] response: +Info 44 [00:01:35.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-does-not-include-file-opened-and-doesnt-contain-any-errors.js b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-does-not-include-file-opened-and-doesnt-contain-any-errors.js index 1d0355c5f2e4b..1c4a8f8196348 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 @@ -57,15 +57,14 @@ Info 7 [00:00:26.000] Config: /a/b/tsconfig.json : { "configFilePath": "/a/b/tsconfig.json" } } -Info 8 [00:00:27.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /a/b/app.ts 500 undefined WatchType: Closed Script info -Info 10 [00:00:29.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 11 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 13 [00:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [00:00:33.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [00:00:34.000] Project '/a/b/tsconfig.json' (Configured) -Info 16 [00:00:35.000] Files (2) +Info 8 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/b/app.ts 500 undefined WatchType: Closed Script info +Info 9 [00:00:28.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 10 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:30.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 12 [00:00:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 13 [00:00:32.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 14 [00:00:33.000] Project '/a/b/tsconfig.json' (Configured) +Info 15 [00:00:34.000] Files (2) /a/lib/lib.d.ts /a/b/app.ts @@ -75,20 +74,19 @@ Info 16 [00:00:35.000] Files (2) app.ts Part of 'files' list in tsconfig.json -Info 17 [00:00:36.000] ----------------------------------------------- -Info 18 [00:00:37.000] event: +Info 16 [00:00:35.000] ----------------------------------------------- +Info 17 [00:00:36.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/tsconfig.json"}} -Info 19 [00:00:38.000] event: +Info 18 [00:00:37.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"e10a1dc99ee63f16cb9b69bcee75540cdf41a1137371d3afbd4e7de507be5207","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":10,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":true,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 20 [00:00:39.000] event: +Info 19 [00:00:38.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/test.ts","configFile":"/a/b/tsconfig.json","diagnostics":[]}} -Info 21 [00:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 22 [00:00:41.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 23 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 24 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 25 [00:00:44.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 26 [00:00:45.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 27 [00:00:46.000] Files (2) +Info 20 [00:00:39.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 21 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 22 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 23 [00:00:42.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:43.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 25 [00:00:44.000] Files (2) /a/lib/lib.d.ts /a/b/test.ts @@ -98,18 +96,18 @@ Info 27 [00:00:46.000] Files (2) test.ts Root file specified for compilation -Info 28 [00:00:47.000] ----------------------------------------------- -Info 29 [00:00:48.000] Project '/a/b/tsconfig.json' (Configured) -Info 29 [00:00:49.000] Files (2) +Info 26 [00:00:45.000] ----------------------------------------------- +Info 27 [00:00:46.000] Project '/a/b/tsconfig.json' (Configured) +Info 27 [00:00:47.000] Files (2) -Info 29 [00:00:50.000] ----------------------------------------------- -Info 29 [00:00:51.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 29 [00:00:52.000] Files (2) +Info 27 [00:00:48.000] ----------------------------------------------- +Info 27 [00:00:49.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 27 [00:00:50.000] Files (2) -Info 29 [00:00:53.000] ----------------------------------------------- -Info 29 [00:00:54.000] Open files: -Info 29 [00:00:55.000] FileName: /a/b/test.ts ProjectRootPath: undefined -Info 29 [00:00:56.000] Projects: /dev/null/inferredProject1* +Info 27 [00:00:51.000] ----------------------------------------------- +Info 27 [00:00:52.000] Open files: +Info 27 [00:00:53.000] FileName: /a/b/test.ts ProjectRootPath: undefined +Info 27 [00:00:54.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -126,11 +124,11 @@ FsWatches:: FsWatchesRecursive:: -Info 29 [00:00:57.000] response: +Info 27 [00:00:55.000] response: { "responseRequired": false } -Info 30 [00:00:58.000] request: +Info 28 [00:00:56.000] request: { "seq": 0, "type": "request", @@ -155,22 +153,22 @@ FsWatches:: FsWatchesRecursive:: -Info 31 [00:00:59.000] FileWatcher:: Close:: WatchInfo: /a/b/app.ts 500 undefined WatchType: Closed Script info -Info 32 [00:01:00.000] Search path: /a/b -Info 33 [00:01:01.000] For info: /a/b/app.ts :: Config file name: /a/b/tsconfig.json -Info 34 [00:01:02.000] Project '/a/b/tsconfig.json' (Configured) -Info 34 [00:01:03.000] Files (2) - -Info 34 [00:01:04.000] ----------------------------------------------- -Info 34 [00:01:05.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 34 [00:01:06.000] Files (2) - -Info 34 [00:01:07.000] ----------------------------------------------- -Info 34 [00:01:08.000] Open files: -Info 34 [00:01:09.000] FileName: /a/b/test.ts ProjectRootPath: undefined -Info 34 [00:01:10.000] Projects: /dev/null/inferredProject1* -Info 34 [00:01:11.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 34 [00:01:12.000] Projects: /a/b/tsconfig.json +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 +Info 32 [00:01:00.000] Project '/a/b/tsconfig.json' (Configured) +Info 32 [00:01:01.000] Files (2) + +Info 32 [00:01:02.000] ----------------------------------------------- +Info 32 [00:01:03.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 32 [00:01:04.000] Files (2) + +Info 32 [00:01:05.000] ----------------------------------------------- +Info 32 [00:01:06.000] Open files: +Info 32 [00:01:07.000] FileName: /a/b/test.ts ProjectRootPath: undefined +Info 32 [00:01:08.000] Projects: /dev/null/inferredProject1* +Info 32 [00:01:09.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 32 [00:01:10.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -185,11 +183,11 @@ FsWatches:: FsWatchesRecursive:: -Info 34 [00:01:13.000] response: +Info 32 [00:01:11.000] response: { "responseRequired": false } -Info 35 [00:01:14.000] request: +Info 33 [00:01:12.000] request: { "seq": 0, "type": "request", @@ -212,17 +210,16 @@ FsWatches:: FsWatchesRecursive:: -Info 36 [00:01:15.000] Search path: /a/b -Info 37 [00:01:16.000] For info: /a/b/test2.ts :: Config file name: /a/b/tsconfig.json -Info 38 [00:01:17.000] event: +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: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/test2.ts","configFile":"/a/b/tsconfig.json","diagnostics":[]}} -Info 39 [00:01:18.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 40 [00:01:19.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info 41 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 42 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 43 [00:01:22.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [00:01:23.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 45 [00:01:24.000] Files (2) +Info 37 [00:01:16.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* +Info 38 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 39 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 40 [00:01:19.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:20.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 42 [00:01:21.000] Files (2) /a/lib/lib.d.ts /a/b/test2.ts @@ -232,26 +229,26 @@ Info 45 [00:01:24.000] Files (2) test2.ts Root file specified for compilation -Info 46 [00:01:25.000] ----------------------------------------------- -Info 47 [00:01:26.000] Project '/a/b/tsconfig.json' (Configured) -Info 47 [00:01:27.000] Files (2) - -Info 47 [00:01:28.000] ----------------------------------------------- -Info 47 [00:01:29.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 47 [00:01:30.000] Files (2) - -Info 47 [00:01:31.000] ----------------------------------------------- -Info 47 [00:01:32.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 47 [00:01:33.000] Files (2) - -Info 47 [00:01:34.000] ----------------------------------------------- -Info 47 [00:01:35.000] Open files: -Info 47 [00:01:36.000] FileName: /a/b/test.ts ProjectRootPath: undefined -Info 47 [00:01:37.000] Projects: /dev/null/inferredProject1* -Info 47 [00:01:38.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 47 [00:01:39.000] Projects: /a/b/tsconfig.json -Info 47 [00:01:40.000] FileName: /a/b/test2.ts ProjectRootPath: undefined -Info 47 [00:01:41.000] Projects: /dev/null/inferredProject2* +Info 43 [00:01:22.000] ----------------------------------------------- +Info 44 [00:01:23.000] Project '/a/b/tsconfig.json' (Configured) +Info 44 [00:01:24.000] Files (2) + +Info 44 [00:01:25.000] ----------------------------------------------- +Info 44 [00:01:26.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 44 [00:01:27.000] Files (2) + +Info 44 [00:01:28.000] ----------------------------------------------- +Info 44 [00:01:29.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 44 [00:01:30.000] Files (2) + +Info 44 [00:01:31.000] ----------------------------------------------- +Info 44 [00:01:32.000] Open files: +Info 44 [00:01:33.000] FileName: /a/b/test.ts ProjectRootPath: undefined +Info 44 [00:01:34.000] Projects: /dev/null/inferredProject1* +Info 44 [00:01:35.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 44 [00:01:36.000] Projects: /a/b/tsconfig.json +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:: @@ -266,7 +263,7 @@ FsWatches:: FsWatchesRecursive:: -Info 47 [00:01:42.000] response: +Info 44 [00:01:39.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-has-errors-but-suppressDiagnosticEvents-is-true.js b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-are-not-generated-when-the-config-file-has-errors-but-suppressDiagnosticEvents-is-true.js index 52a6ceef40a55..4e97b56f6a345 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 @@ -56,14 +56,13 @@ Info 7 [00:00:22.000] Config: /a/b/tsconfig.json : { } Info 8 [00:00:23.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory Info 9 [00:00:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:25.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:26.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 12 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 15 [00:00:30.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:00:31.000] Project '/a/b/tsconfig.json' (Configured) -Info 17 [00:00:32.000] Files (2) +Info 10 [00:00:25.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 11 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 13 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 14 [00:00:29.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:30.000] Project '/a/b/tsconfig.json' (Configured) +Info 16 [00:00:31.000] Files (2) /a/lib/lib.d.ts /a/b/app.ts @@ -73,18 +72,18 @@ Info 17 [00:00:32.000] Files (2) app.ts Matched by default include pattern '**/*' -Info 18 [00:00:33.000] ----------------------------------------------- -Info 19 [00:00:34.000] event: +Info 17 [00:00:32.000] ----------------------------------------------- +Info 18 [00:00:33.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/tsconfig.json"}} -Info 20 [00:00:35.000] event: +Info 19 [00:00:34.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"e10a1dc99ee63f16cb9b69bcee75540cdf41a1137371d3afbd4e7de507be5207","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":10,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 21 [00:00:36.000] Project '/a/b/tsconfig.json' (Configured) -Info 21 [00:00:37.000] Files (2) +Info 20 [00:00:35.000] Project '/a/b/tsconfig.json' (Configured) +Info 20 [00:00:36.000] Files (2) -Info 21 [00:00:38.000] ----------------------------------------------- -Info 21 [00:00:39.000] Open files: -Info 21 [00:00:40.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 21 [00:00:41.000] Projects: /a/b/tsconfig.json +Info 20 [00:00:37.000] ----------------------------------------------- +Info 20 [00:00:38.000] Open files: +Info 20 [00:00:39.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 20 [00:00:40.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -101,7 +100,7 @@ FsWatchesRecursive:: /a/b: {} -Info 21 [00:00:42.000] response: +Info 20 [00:00:41.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-contains-the-project-reference-errors.js b/tests/baselines/reference/tsserver/projectErrors/configFileDiagnostic-events-contains-the-project-reference-errors.js index 61dd0dc68326e..43052838fab99 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 @@ -58,9 +58,8 @@ Info 7 [00:00:22.000] Config: /a/b/tsconfig.json : { } ] } -Info 8 [00:00:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:24.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 10 [00:00:25.000] Config: /a/b/no-such-tsconfig.json : { +Info 8 [00:00:23.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 9 [00:00:24.000] Config: /a/b/no-such-tsconfig.json : { "rootNames": [ "/a/b/app.ts" ], @@ -68,13 +67,13 @@ Info 10 [00:00:25.000] Config: /a/b/no-such-tsconfig.json : { "configFilePath": "/a/b/no-such-tsconfig.json" } } -Info 11 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/b/no-such-tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file -Info 12 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 15 [00:00:30.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:00:31.000] Project '/a/b/tsconfig.json' (Configured) -Info 17 [00:00:32.000] Files (2) +Info 10 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/b/no-such-tsconfig.json 2000 undefined Project: /a/b/tsconfig.json WatchType: Config file +Info 11 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 13 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 14 [00:00:29.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:30.000] Project '/a/b/tsconfig.json' (Configured) +Info 16 [00:00:31.000] Files (2) /a/lib/lib.d.ts /a/b/app.ts @@ -84,20 +83,20 @@ Info 17 [00:00:32.000] Files (2) app.ts Part of 'files' list in tsconfig.json -Info 18 [00:00:33.000] ----------------------------------------------- -Info 19 [00:00:34.000] event: +Info 17 [00:00:32.000] ----------------------------------------------- +Info 18 [00:00:33.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/tsconfig.json"}} -Info 20 [00:00:35.000] event: +Info 19 [00:00:34.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"e10a1dc99ee63f16cb9b69bcee75540cdf41a1137371d3afbd4e7de507be5207","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":10,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":true,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 21 [00:00:36.000] event: +Info 20 [00:00:35.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/app.ts","configFile":"/a/b/tsconfig.json","diagnostics":[{"start":{"line":3,"offset":36},"end":{"line":3,"offset":70},"text":"File '/a/b/no-such-tsconfig.json' not found.","code":6053,"category":"error","fileName":"/a/b/tsconfig.json"}]}} -Info 22 [00:00:37.000] Project '/a/b/tsconfig.json' (Configured) -Info 22 [00:00:38.000] Files (2) +Info 21 [00:00:36.000] Project '/a/b/tsconfig.json' (Configured) +Info 21 [00:00:37.000] Files (2) -Info 22 [00:00:39.000] ----------------------------------------------- -Info 22 [00:00:40.000] Open files: -Info 22 [00:00:41.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 22 [00:00:42.000] Projects: /a/b/tsconfig.json +Info 21 [00:00:38.000] ----------------------------------------------- +Info 21 [00:00:39.000] Open files: +Info 21 [00:00:40.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 21 [00:00:41.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -114,7 +113,7 @@ FsWatches:: FsWatchesRecursive:: -Info 22 [00:00:43.000] response: +Info 21 [00:00:42.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectErrors/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 8e7ab74cd7961..3b24d0f682c98 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 @@ -65,18 +65,17 @@ Info 7 [00:00:40.000] Config: /users/username/projects/myproject/tsconfig.jso } Info 8 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/src 1 undefined Config: /users/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 9 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/src 1 undefined Config: /users/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:44.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/tsconfig.json -Info 12 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 13 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 14 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 18 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 19 [00:00:52.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:00:53.000] Project '/users/username/projects/myproject/tsconfig.json' (Configured) -Info 21 [00:00:54.000] Files (4) +Info 10 [00:00:43.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/tsconfig.json +Info 11 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 12 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 13 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 17 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 18 [00:00:51.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:52.000] Project '/users/username/projects/myproject/tsconfig.json' (Configured) +Info 20 [00:00:53.000] Files (4) /a/lib/lib.d.ts /users/username/projects/myproject/node_modules/@custom/plugin/proposed.d.ts /users/username/projects/myproject/node_modules/@custom/plugin/index.d.ts @@ -92,20 +91,20 @@ Info 21 [00:00:54.000] Files (4) src/a.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 22 [00:00:55.000] ----------------------------------------------- -Info 23 [00:00:56.000] event: +Info 21 [00:00:54.000] ----------------------------------------------- +Info 22 [00:00:55.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/users/username/projects/myproject/tsconfig.json"}} -Info 24 [00:00:57.000] event: +Info 23 [00:00:56.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"49814c247d0e4666719ac54e31c3f19091be4020c5ac046c86474826dc7e4ede","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":73,"tsx":0,"tsxSize":0,"dts":3,"dtsSize":486,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 25 [00:00:58.000] event: +Info 24 [00:00:57.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/users/username/projects/myproject/src/a.ts","configFile":"/users/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 26 [00:00:59.000] Project '/users/username/projects/myproject/tsconfig.json' (Configured) -Info 26 [00:01:00.000] Files (4) +Info 25 [00:00:58.000] Project '/users/username/projects/myproject/tsconfig.json' (Configured) +Info 25 [00:00:59.000] Files (4) -Info 26 [00:01:01.000] ----------------------------------------------- -Info 26 [00:01:02.000] Open files: -Info 26 [00:01:03.000] FileName: /users/username/projects/myproject/src/a.ts ProjectRootPath: undefined -Info 26 [00:01:04.000] Projects: /users/username/projects/myproject/tsconfig.json +Info 25 [00:01:00.000] ----------------------------------------------- +Info 25 [00:01:01.000] Open files: +Info 25 [00:01:02.000] FileName: /users/username/projects/myproject/src/a.ts ProjectRootPath: undefined +Info 25 [00:01:03.000] Projects: /users/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -124,7 +123,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 26 [00:01:05.000] response: +Info 25 [00:01:04.000] response: { "responseRequired": false } @@ -146,7 +145,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 27 [00:01:06.000] request: +Info 26 [00:01:05.000] request: { "command": "geterr", "arguments": { @@ -194,7 +193,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 28 [00:01:07.000] response: +Info 27 [00:01:06.000] response: { "responseRequired": false } @@ -216,7 +215,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 29 [00:01:08.000] event: +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 @@ -254,7 +253,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 30 [00:01:09.000] event: +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) @@ -292,9 +291,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 31 [00:01:10.000] event: +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 32 [00:01:11.000] event: +Info 31 [00:01:10.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -314,7 +313,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 33 [00:01:12.000] request: +Info 32 [00:01:11.000] request: { "command": "change", "arguments": { @@ -364,7 +363,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 34 [00:01:13.000] response: +Info 33 [00:01:12.000] response: { "responseRequired": false } @@ -386,7 +385,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 35 [00:01:14.000] request: +Info 34 [00:01:13.000] request: { "command": "geterr", "arguments": { @@ -434,7 +433,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 36 [00:01:15.000] response: +Info 35 [00:01:14.000] response: { "responseRequired": false } @@ -456,10 +455,10 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 37 [00:01:16.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/tsconfig.json -Info 38 [00:01:17.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 39 [00:01:18.000] Different program with same set of files -Info 40 [00:01:19.000] event: +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 +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 @@ -497,7 +496,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 41 [00:01:20.000] event: +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) @@ -535,9 +534,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/node_modules: {} -Info 42 [00:01:21.000] event: +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 43 [00:01:22.000] event: +Info 42 [00:01:21.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectErrors/folder-rename-updates-project-structure-and-reports-no-errors.js b/tests/baselines/reference/tsserver/projectErrors/folder-rename-updates-project-structure-and-reports-no-errors.js index a49a86cc7db52..179bc43aaaddf 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 @@ -43,15 +43,14 @@ Info 7 [00:00:28.000] Config: /a/b/projects/myproject/tsconfig.json : { } Info 8 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory Info 9 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:31.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/myproject/foo/foo.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:33.000] Starting updateGraphWorker: Project: /a/b/projects/myproject/tsconfig.json -Info 13 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/b/projects/myproject/tsconfig.json WatchType: Missing file -Info 14 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/myproject/node_modules/@types 1 undefined Project: /a/b/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/myproject/node_modules/@types 1 undefined Project: /a/b/projects/myproject/tsconfig.json WatchType: Type roots -Info 16 [00:00:37.000] Finishing updateGraphWorker: Project: /a/b/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:00:38.000] Project '/a/b/projects/myproject/tsconfig.json' (Configured) -Info 18 [00:00:39.000] Files (2) +Info 10 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/myproject/foo/foo.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:32.000] Starting updateGraphWorker: Project: /a/b/projects/myproject/tsconfig.json +Info 12 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/b/projects/myproject/tsconfig.json WatchType: Missing file +Info 13 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/myproject/node_modules/@types 1 undefined Project: /a/b/projects/myproject/tsconfig.json WatchType: Type roots +Info 14 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/myproject/node_modules/@types 1 undefined Project: /a/b/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:36.000] Finishing updateGraphWorker: Project: /a/b/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:37.000] Project '/a/b/projects/myproject/tsconfig.json' (Configured) +Info 17 [00:00:38.000] Files (2) /a/b/projects/myproject/bar/app.ts /a/b/projects/myproject/foo/foo.ts @@ -61,20 +60,20 @@ Info 18 [00:00:39.000] Files (2) foo/foo.ts Matched by default include pattern '**/*' -Info 19 [00:00:40.000] ----------------------------------------------- -Info 20 [00:00:41.000] event: +Info 18 [00:00:39.000] ----------------------------------------------- +Info 19 [00:00:40.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/projects/myproject/tsconfig.json"}} -Info 21 [00:00:42.000] event: +Info 20 [00:00:41.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"c56abb8c7c51bef5953613f05226da8e72cd9eafe09ab58ca2ccd81b65ba193a","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":154,"tsx":0,"tsxSize":0,"dts":0,"dtsSize":0,"deferred":0,"deferredSize":0},"compilerOptions":{"module":"none"},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":true,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [00:00:43.000] event: +Info 21 [00:00:42.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/projects/myproject/bar/app.ts","configFile":"/a/b/projects/myproject/tsconfig.json","diagnostics":[{"text":"File '/a/lib/lib.d.ts' not found.\n The file is in the program because:\n Default library for target 'es3'","code":6053,"category":"error"},{"text":"Cannot find global type 'Array'.","code":2318,"category":"error"},{"text":"Cannot find global type 'Boolean'.","code":2318,"category":"error"},{"text":"Cannot find global type 'Function'.","code":2318,"category":"error"},{"text":"Cannot find global type 'IArguments'.","code":2318,"category":"error"},{"text":"Cannot find global type 'Number'.","code":2318,"category":"error"},{"text":"Cannot find global type 'Object'.","code":2318,"category":"error"},{"text":"Cannot find global type 'RegExp'.","code":2318,"category":"error"},{"text":"Cannot find global type 'String'.","code":2318,"category":"error"},{"start":{"line":1,"offset":37},"end":{"line":1,"offset":45},"text":"Unknown compiler option 'targer'. Did you mean 'target'?","code":5025,"category":"error","fileName":"/a/b/projects/myproject/tsconfig.json"}]}} -Info 23 [00:00:44.000] Project '/a/b/projects/myproject/tsconfig.json' (Configured) -Info 23 [00:00:45.000] Files (2) +Info 22 [00:00:43.000] Project '/a/b/projects/myproject/tsconfig.json' (Configured) +Info 22 [00:00:44.000] Files (2) -Info 23 [00:00:46.000] ----------------------------------------------- -Info 23 [00:00:47.000] Open files: -Info 23 [00:00:48.000] FileName: /a/b/projects/myproject/bar/app.ts ProjectRootPath: undefined -Info 23 [00:00:49.000] Projects: /a/b/projects/myproject/tsconfig.json +Info 22 [00:00:45.000] ----------------------------------------------- +Info 22 [00:00:46.000] Open files: +Info 22 [00:00:47.000] FileName: /a/b/projects/myproject/bar/app.ts ProjectRootPath: undefined +Info 22 [00:00:48.000] Projects: /a/b/projects/myproject/tsconfig.json After request PolledWatches:: @@ -93,11 +92,11 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 23 [00:00:50.000] response: +Info 22 [00:00:49.000] response: { "responseRequired": false } -Info 24 [00:00:51.000] request: +Info 23 [00:00:50.000] request: { "command": "geterr", "arguments": { @@ -145,7 +144,7 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 25 [00:00:52.000] response: +Info 24 [00:00:51.000] response: { "responseRequired": false } @@ -167,7 +166,7 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 26 [00:00:53.000] event: +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 @@ -205,7 +204,7 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 27 [00:00:54.000] event: +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) @@ -243,9 +242,9 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 28 [00:00:55.000] event: +Info 27 [00:00:54.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/a/b/projects/myproject/bar/app.ts","diagnostics":[]}} -Info 29 [00:00:56.000] event: +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) @@ -265,27 +264,27 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 30 [00:00:58.000] DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 31 [00:00:59.000] Scheduled: /a/b/projects/myproject/tsconfig.json -Info 32 [00:01:00.000] Scheduled: *ensureProjectForOpenFiles* -Info 33 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:04.000] DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo2 :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 35 [00:01:05.000] Scheduled: /a/b/projects/myproject/tsconfig.json, Cancelled earlier one -Info 36 [00:01:06.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 37 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo2 :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:08.000] FileWatcher:: Triggered with /a/b/projects/myproject/foo/foo.ts 2:: WatchInfo: /a/b/projects/myproject/foo/foo.ts 500 undefined WatchType: Closed Script info -Info 39 [00:01:09.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/myproject/foo/foo.ts 500 undefined WatchType: Closed Script info -Info 40 [00:01:10.000] Scheduled: /a/b/projects/myproject/tsconfig.json, Cancelled earlier one -Info 41 [00:01:11.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 42 [00:01:12.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/myproject/foo/foo.ts 2:: WatchInfo: /a/b/projects/myproject/foo/foo.ts 500 undefined WatchType: Closed Script info -Info 43 [00:01:13.000] DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo/foo.ts :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 44 [00:01:14.000] Scheduled: /a/b/projects/myproject/tsconfig.json, Cancelled earlier one -Info 45 [00:01:15.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 46 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo/foo.ts :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 47 [00:01:17.000] DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo2/foo.ts :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 48 [00:01:18.000] Scheduled: /a/b/projects/myproject/tsconfig.json, Cancelled earlier one -Info 49 [00:01:19.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 50 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo2/foo.ts :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory +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* +Info 32 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:03.000] DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo2 :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:04.000] Scheduled: /a/b/projects/myproject/tsconfig.json, Cancelled earlier one +Info 35 [00:01:05.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 36 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo2 :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:07.000] FileWatcher:: Triggered with /a/b/projects/myproject/foo/foo.ts 2:: WatchInfo: /a/b/projects/myproject/foo/foo.ts 500 undefined WatchType: Closed Script info +Info 38 [00:01:08.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/myproject/foo/foo.ts 500 undefined WatchType: Closed Script info +Info 39 [00:01:09.000] Scheduled: /a/b/projects/myproject/tsconfig.json, Cancelled earlier one +Info 40 [00:01:10.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 41 [00:01:11.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/projects/myproject/foo/foo.ts 2:: WatchInfo: /a/b/projects/myproject/foo/foo.ts 500 undefined WatchType: Closed Script info +Info 42 [00:01:12.000] DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo/foo.ts :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 43 [00:01:13.000] Scheduled: /a/b/projects/myproject/tsconfig.json, Cancelled earlier one +Info 44 [00:01:14.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 45 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo/foo.ts :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 46 [00:01:16.000] DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo2/foo.ts :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 47 [00:01:17.000] Scheduled: /a/b/projects/myproject/tsconfig.json, Cancelled earlier one +Info 48 [00:01:18.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 49 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/myproject/foo2/foo.ts :: WatchInfo: /a/b/projects/myproject 1 undefined Config: /a/b/projects/myproject/tsconfig.json WatchType: Wild card directory Before running timeout callbacks //// [/a/b/projects/myproject/foo2/foo.ts] declare namespace foo { interface Foo { get2(): number; getFoo(): string; } } @@ -306,12 +305,12 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 51 [00:01:21.000] Running: /a/b/projects/myproject/tsconfig.json -Info 52 [00:01:22.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/myproject/foo2/foo.ts 500 undefined WatchType: Closed Script info -Info 53 [00:01:23.000] Starting updateGraphWorker: Project: /a/b/projects/myproject/tsconfig.json -Info 54 [00:01:24.000] Finishing updateGraphWorker: Project: /a/b/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 55 [00:01:25.000] Project '/a/b/projects/myproject/tsconfig.json' (Configured) -Info 56 [00:01:26.000] Files (2) +Info 50 [00:01:20.000] Running: /a/b/projects/myproject/tsconfig.json +Info 51 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/myproject/foo2/foo.ts 500 undefined WatchType: Closed Script info +Info 52 [00:01:22.000] Starting updateGraphWorker: Project: /a/b/projects/myproject/tsconfig.json +Info 53 [00:01:23.000] Finishing updateGraphWorker: Project: /a/b/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 54 [00:01:24.000] Project '/a/b/projects/myproject/tsconfig.json' (Configured) +Info 55 [00:01:25.000] Files (2) /a/b/projects/myproject/bar/app.ts /a/b/projects/myproject/foo2/foo.ts @@ -321,26 +320,26 @@ Info 56 [00:01:26.000] Files (2) foo2/foo.ts Matched by default include pattern '**/*' -Info 57 [00:01:27.000] ----------------------------------------------- -Info 58 [00:01:28.000] Running: *ensureProjectForOpenFiles* -Info 59 [00:01:29.000] Before ensureProjectForOpenFiles: -Info 60 [00:01:30.000] Project '/a/b/projects/myproject/tsconfig.json' (Configured) -Info 60 [00:01:31.000] Files (2) - -Info 60 [00:01:32.000] ----------------------------------------------- -Info 60 [00:01:33.000] Open files: -Info 60 [00:01:34.000] FileName: /a/b/projects/myproject/bar/app.ts ProjectRootPath: undefined -Info 60 [00:01:35.000] Projects: /a/b/projects/myproject/tsconfig.json -Info 60 [00:01:36.000] After ensureProjectForOpenFiles: -Info 61 [00:01:37.000] Project '/a/b/projects/myproject/tsconfig.json' (Configured) -Info 61 [00:01:38.000] Files (2) - -Info 61 [00:01:39.000] ----------------------------------------------- -Info 61 [00:01:40.000] Open files: -Info 61 [00:01:41.000] FileName: /a/b/projects/myproject/bar/app.ts ProjectRootPath: undefined -Info 61 [00:01:42.000] Projects: /a/b/projects/myproject/tsconfig.json -Info 61 [00:01:43.000] got projects updated in background, updating diagnostics for /a/b/projects/myproject/bar/app.ts -Info 62 [00:01:44.000] event: +Info 56 [00:01:26.000] ----------------------------------------------- +Info 57 [00:01:27.000] Running: *ensureProjectForOpenFiles* +Info 58 [00:01:28.000] Before ensureProjectForOpenFiles: +Info 59 [00:01:29.000] Project '/a/b/projects/myproject/tsconfig.json' (Configured) +Info 59 [00:01:30.000] Files (2) + +Info 59 [00:01:31.000] ----------------------------------------------- +Info 59 [00:01:32.000] Open files: +Info 59 [00:01:33.000] FileName: /a/b/projects/myproject/bar/app.ts ProjectRootPath: undefined +Info 59 [00:01:34.000] Projects: /a/b/projects/myproject/tsconfig.json +Info 59 [00:01:35.000] After ensureProjectForOpenFiles: +Info 60 [00:01:36.000] Project '/a/b/projects/myproject/tsconfig.json' (Configured) +Info 60 [00:01:37.000] Files (2) + +Info 60 [00:01:38.000] ----------------------------------------------- +Info 60 [00:01:39.000] Open files: +Info 60 [00:01:40.000] FileName: /a/b/projects/myproject/bar/app.ts ProjectRootPath: undefined +Info 60 [00:01:41.000] Projects: /a/b/projects/myproject/tsconfig.json +Info 60 [00:01:42.000] got projects updated in background, updating diagnostics for /a/b/projects/myproject/bar/app.ts +Info 61 [00:01:43.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/a/b/projects/myproject/bar/app.ts"]}} After running timeout callbacks @@ -378,7 +377,7 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 63 [00:01:45.000] event: +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 @@ -398,7 +397,7 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 64 [00:01:46.000] request: +Info 63 [00:01:45.000] request: { "command": "geterr", "arguments": { @@ -446,7 +445,7 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 65 [00:01:47.000] response: +Info 64 [00:01:46.000] response: { "responseRequired": false } @@ -468,7 +467,7 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 66 [00:01:48.000] event: +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 @@ -506,7 +505,7 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 67 [00:01:49.000] event: +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) @@ -544,9 +543,9 @@ FsWatchesRecursive:: /a/b/projects/myproject: {} -Info 68 [00:01:50.000] event: +Info 67 [00:01:49.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/a/b/projects/myproject/bar/app.ts","diagnostics":[]}} -Info 69 [00:01:51.000] event: +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) 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 5e32163dc1e41..421df5a933542 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 @@ -52,18 +52,17 @@ Info 7 [00:00:30.000] Config: /user/username/projects/myproject/tsconfig.json } Info 8 [00:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 9 [00:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:34.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 12 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 18 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 19 [00:00:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:00:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 21 [00:00:44.000] Files (2) +Info 10 [00:00:33.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 11 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 17 [00:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 18 [00:00:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:42.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 20 [00:00:43.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/main.ts @@ -73,20 +72,20 @@ Info 21 [00:00:44.000] Files (2) src/main.ts Matched by default include pattern '**/*' -Info 22 [00:00:45.000] ----------------------------------------------- -Info 23 [00:00:46.000] event: +Info 21 [00:00:44.000] ----------------------------------------------- +Info 22 [00:00:45.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 24 [00:00:47.000] event: +Info 23 [00:00:46.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":36,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 25 [00:00:48.000] event: +Info 24 [00:00:47.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 26 [00:00:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 26 [00:00:50.000] Files (2) +Info 25 [00:00:48.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 25 [00:00:49.000] Files (2) -Info 26 [00:00:51.000] ----------------------------------------------- -Info 26 [00:00:52.000] Open files: -Info 26 [00:00:53.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject -Info 26 [00:00:54.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 25 [00:00:50.000] ----------------------------------------------- +Info 25 [00:00:51.000] Open files: +Info 25 [00:00:52.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject +Info 25 [00:00:53.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -107,11 +106,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 26 [00:00:55.000] response: +Info 25 [00:00:54.000] response: { "responseRequired": false } -Info 27 [00:00:56.000] request: +Info 26 [00:00:55.000] request: { "command": "geterr", "arguments": { @@ -163,7 +162,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 28 [00:00:57.000] response: +Info 27 [00:00:56.000] response: { "responseRequired": false } @@ -187,7 +186,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 29 [00:00:58.000] event: +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 @@ -229,7 +228,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 30 [00:00:59.000] event: +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) @@ -271,9 +270,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 31 [00:01:00.000] event: +Info 30 [00:00:59.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 32 [00:01:01.000] event: +Info 31 [00:01:00.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -295,38 +294,38 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 33 [00:01:04.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 34 [00:01:05.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation -Info 35 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 36 [00:01:07.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 37 [00:01:08.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 38 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 39 [00:01:10.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 40 [00:01:11.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 41 [00:01:12.000] Scheduled: *ensureProjectForOpenFiles* -Info 42 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 43 [00:01:16.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 44 [00:01:17.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 45 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 46 [00:01:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 47 [00:01:20.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 48 [00:01:21.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 49 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 50 [00:01:25.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 51 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 52 [00:01:27.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 53 [00:01:28.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel -Info 54 [00:01:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 55 [00:01:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 56 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 57 [00:01:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 58 [00:01:35.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f -Info 59 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 60 [00:01:39.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 61 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 62 [00:01:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 63 [00:01:42.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/core-js-db53158d -Info 64 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +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 +Info 35 [00:01:06.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 36 [00:01:07.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 37 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 38 [00:01:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 39 [00:01:10.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 40 [00:01:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 41 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 42 [00:01:15.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 43 [00:01:16.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 44 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 45 [00:01:18.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 46 [00:01:19.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 47 [00:01:20.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 48 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 49 [00:01:24.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 50 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 51 [00:01:26.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 52 [00:01:27.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel +Info 53 [00:01:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 54 [00:01:31.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 55 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 56 [00:01:33.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 57 [00:01:34.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f +Info 58 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 59 [00:01:38.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 60 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 61 [00:01:40.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 62 [00:01:41.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/core-js-db53158d +Info 63 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Checking timeout queue length: 3 PolledWatches:: @@ -347,7 +346,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 65 [00:01:44.000] request: +Info 64 [00:01:43.000] request: { "command": "geterr", "arguments": { @@ -399,7 +398,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 66 [00:01:45.000] response: +Info 65 [00:01:44.000] response: { "responseRequired": false } @@ -443,11 +442,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 67 [00:01:46.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 68 [00:01:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 69 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 70 [00:01:49.000] Different program with same set of files -Info 71 [00:01:50.000] event: +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 +Info 69 [00:01:48.000] Different program with same set of files +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 @@ -489,7 +488,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 72 [00:01:51.000] event: +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) @@ -531,9 +530,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 73 [00:01:52.000] event: +Info 72 [00:01:51.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 74 [00:01:53.000] event: +Info 73 [00:01:52.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) @@ -555,41 +554,41 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 75 [00:01:56.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 76 [00:01:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 77 [00:01:58.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 78 [00:01:59.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular -Info 79 [00:02:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 80 [00:02:03.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [00:02:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 82 [00:02:05.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 83 [00:02:06.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a -Info 84 [00:02:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 85 [00:02:12.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 86 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 87 [00:02:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 88 [00:02:15.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 -Info 89 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 90 [00:02:18.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 91 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 92 [00:02:20.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 93 [00:02:21.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models -Info 94 [00:02:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 95 [00:02:24.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 96 [00:02:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 97 [00:02:26.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 98 [00:02:27.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts -Info 99 [00:02:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 100 [00:02:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 101 [00:02:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 102 [00:02:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 103 [00:02:35.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf -Info 104 [00:02:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 105 [00:02:38.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 106 [00:02:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 107 [00:02:40.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 108 [00:02:41.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts -Info 109 [00:02:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +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 +Info 77 [00:01:58.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular +Info 78 [00:01:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 79 [00:02:02.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 80 [00:02:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 81 [00:02:04.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 82 [00:02:05.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a +Info 83 [00:02:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 84 [00:02:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 85 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 86 [00:02:13.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 87 [00:02:14.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 +Info 88 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 89 [00:02:17.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 90 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 91 [00:02:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 92 [00:02:20.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models +Info 93 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 94 [00:02:23.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 95 [00:02:24.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 96 [00:02:25.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 97 [00:02:26.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts +Info 98 [00:02:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 99 [00:02:31.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 100 [00:02:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 101 [00:02:33.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 102 [00:02:34.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf +Info 103 [00:02:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 104 [00:02:37.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 105 [00:02:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 106 [00:02:39.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 107 [00:02:40.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts +Info 108 [00:02:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Checking timeout queue length: 2 //// [/user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts] export const x = 10; @@ -616,7 +615,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 110 [00:02:43.000] request: +Info 109 [00:02:42.000] request: { "command": "geterr", "arguments": { @@ -668,7 +667,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 111 [00:02:44.000] response: +Info 110 [00:02:43.000] response: { "responseRequired": false } @@ -712,7 +711,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 112 [00:02:45.000] event: +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 @@ -754,7 +753,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 113 [00:02:46.000] event: +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) @@ -796,9 +795,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 114 [00:02:47.000] event: +Info 113 [00:02:46.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 115 [00:02:48.000] event: +Info 114 [00:02:47.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) @@ -843,7 +842,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 116 [00:02:55.000] request: +Info 115 [00:02:54.000] request: { "command": "geterr", "arguments": { @@ -895,7 +894,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 117 [00:02:56.000] response: +Info 116 [00:02:55.000] response: { "responseRequired": false } @@ -939,7 +938,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 118 [00:02:57.000] event: +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 @@ -981,7 +980,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 119 [00:02:58.000] event: +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) @@ -1023,9 +1022,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 120 [00:02:59.000] event: +Info 119 [00:02:58.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 121 [00:03:00.000] event: +Info 120 [00:02:59.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) @@ -1047,63 +1046,63 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 122 [00:03:02.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 123 [00:03:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 124 [00:03:04.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 125 [00:03:05.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts -Info 126 [00:03:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 127 [00:03:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 128 [00:03:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 129 [00:03:10.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 130 [00:03:11.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models -Info 131 [00:03:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 132 [00:03:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 133 [00:03:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 134 [00:03:16.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 135 [00:03:17.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 -Info 136 [00:03:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 137 [00:03:20.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 138 [00:03:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 139 [00:03:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 140 [00:03:23.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts -Info 141 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 142 [00:03:26.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 143 [00:03:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 144 [00:03:28.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 145 [00:03:29.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf -Info 146 [00:03:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 147 [00:03:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 148 [00:03:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 149 [00:03:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 150 [00:03:35.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a -Info 151 [00:03:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 152 [00:03:38.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 153 [00:03:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 154 [00:03:40.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 155 [00:03:41.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular -Info 156 [00:03:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 157 [00:03:44.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 158 [00:03:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 159 [00:03:46.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 160 [00:03:47.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f -Info 161 [00:03:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 162 [00:03:50.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 163 [00:03:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 164 [00:03:52.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 165 [00:03:53.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel -Info 166 [00:03:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 167 [00:03:56.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 168 [00:03:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 169 [00:03:58.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 170 [00:03:59.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/core-js-db53158d -Info 171 [00:04:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 172 [00:04:02.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 173 [00:04:03.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation -Info 174 [00:04:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 175 [00:04:05.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 176 [00:04:06.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 177 [00:04:07.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 178 [00:04:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +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 +Info 124 [00:03:04.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts +Info 125 [00:03:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 126 [00:03:07.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 127 [00:03:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 128 [00:03:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 129 [00:03:10.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models +Info 130 [00:03:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 131 [00:03:13.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 132 [00:03:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 133 [00:03:15.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 134 [00:03:16.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 +Info 135 [00:03:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 136 [00:03:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 137 [00:03:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 138 [00:03:21.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 139 [00:03:22.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts +Info 140 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 141 [00:03:25.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 142 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 143 [00:03:27.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 144 [00:03:28.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf +Info 145 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 146 [00:03:31.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 147 [00:03:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 148 [00:03:33.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 149 [00:03:34.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a +Info 150 [00:03:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 151 [00:03:37.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 152 [00:03:38.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 153 [00:03:39.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 154 [00:03:40.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular +Info 155 [00:03:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 156 [00:03:43.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 157 [00:03:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 158 [00:03:45.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 159 [00:03:46.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f +Info 160 [00:03:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 161 [00:03:49.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 162 [00:03:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 163 [00:03:51.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 164 [00:03:52.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel +Info 165 [00:03:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 166 [00:03:55.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 167 [00:03:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 168 [00:03:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 169 [00:03:58.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/core-js-db53158d +Info 170 [00:03:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 171 [00:04:01.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 172 [00:04:02.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation +Info 173 [00:04:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 174 [00:04:04.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 175 [00:04:05.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 176 [00:04:06.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 177 [00:04:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts] deleted //// [/user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts] deleted @@ -1126,9 +1125,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 179 [00:04:09.000] Running: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation -Info 180 [00:04:10.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 181 [00:04:11.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +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:: @@ -1169,13 +1168,13 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 182 [00:04:12.000] Running: /user/username/projects/myproject/tsconfig.json -Info 183 [00:04:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 184 [00:04:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 185 [00:04:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 186 [00:04:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 187 [00:04:17.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 188 [00:04:18.000] Files (3) +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 +Info 184 [00:04:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 185 [00:04:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 186 [00:04:16.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 187 [00:04:17.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/node_modules/@angular/core/index.d.ts /user/username/projects/myproject/src/main.ts @@ -1188,26 +1187,26 @@ Info 188 [00:04:18.000] Files (3) src/main.ts Matched by default include pattern '**/*' -Info 189 [00:04:19.000] ----------------------------------------------- -Info 190 [00:04:20.000] Running: *ensureProjectForOpenFiles* -Info 191 [00:04:21.000] Before ensureProjectForOpenFiles: -Info 192 [00:04:22.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 192 [00:04:23.000] Files (3) - -Info 192 [00:04:24.000] ----------------------------------------------- -Info 192 [00:04:25.000] Open files: -Info 192 [00:04:26.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject -Info 192 [00:04:27.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 192 [00:04:28.000] After ensureProjectForOpenFiles: -Info 193 [00:04:29.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 193 [00:04:30.000] Files (3) - -Info 193 [00:04:31.000] ----------------------------------------------- -Info 193 [00:04:32.000] Open files: -Info 193 [00:04:33.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject -Info 193 [00:04:34.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 193 [00:04:35.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/main.ts -Info 194 [00:04:36.000] event: +Info 188 [00:04:18.000] ----------------------------------------------- +Info 189 [00:04:19.000] Running: *ensureProjectForOpenFiles* +Info 190 [00:04:20.000] Before ensureProjectForOpenFiles: +Info 191 [00:04:21.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 191 [00:04:22.000] Files (3) + +Info 191 [00:04:23.000] ----------------------------------------------- +Info 191 [00:04:24.000] Open files: +Info 191 [00:04:25.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject +Info 191 [00:04:26.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 191 [00:04:27.000] After ensureProjectForOpenFiles: +Info 192 [00:04:28.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 192 [00:04:29.000] Files (3) + +Info 192 [00:04:30.000] ----------------------------------------------- +Info 192 [00:04:31.000] Open files: +Info 192 [00:04:32.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject +Info 192 [00:04:33.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 192 [00:04:34.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/main.ts +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 @@ -1229,7 +1228,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 195 [00:04:37.000] request: +Info 194 [00:04:36.000] request: { "command": "geterr", "arguments": { @@ -1281,7 +1280,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 196 [00:04:38.000] response: +Info 195 [00:04:37.000] response: { "responseRequired": false } @@ -1305,7 +1304,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 197 [00:04:39.000] event: +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 @@ -1347,7 +1346,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 198 [00:04:40.000] event: +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) @@ -1389,9 +1388,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 199 [00:04:41.000] event: +Info 198 [00:04:40.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 200 [00:04:42.000] event: +Info 199 [00:04:41.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":5}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectErrors/npm-install-when-timeout-occurs-inbetween-installation.js b/tests/baselines/reference/tsserver/projectErrors/npm-install-when-timeout-occurs-inbetween-installation.js index 2c70e1203c105..4fc42274b31d7 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 @@ -52,18 +52,17 @@ Info 7 [00:00:30.000] Config: /user/username/projects/myproject/tsconfig.json } Info 8 [00:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 9 [00:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:34.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 12 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 18 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 19 [00:00:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:00:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 21 [00:00:44.000] Files (2) +Info 10 [00:00:33.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 11 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 17 [00:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 18 [00:00:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:42.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 20 [00:00:43.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/main.ts @@ -73,20 +72,20 @@ Info 21 [00:00:44.000] Files (2) src/main.ts Matched by default include pattern '**/*' -Info 22 [00:00:45.000] ----------------------------------------------- -Info 23 [00:00:46.000] event: +Info 21 [00:00:44.000] ----------------------------------------------- +Info 22 [00:00:45.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 24 [00:00:47.000] event: +Info 23 [00:00:46.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":36,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 25 [00:00:48.000] event: +Info 24 [00:00:47.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 26 [00:00:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 26 [00:00:50.000] Files (2) +Info 25 [00:00:48.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 25 [00:00:49.000] Files (2) -Info 26 [00:00:51.000] ----------------------------------------------- -Info 26 [00:00:52.000] Open files: -Info 26 [00:00:53.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject -Info 26 [00:00:54.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 25 [00:00:50.000] ----------------------------------------------- +Info 25 [00:00:51.000] Open files: +Info 25 [00:00:52.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject +Info 25 [00:00:53.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -107,11 +106,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 26 [00:00:55.000] response: +Info 25 [00:00:54.000] response: { "responseRequired": false } -Info 27 [00:00:56.000] request: +Info 26 [00:00:55.000] request: { "command": "geterr", "arguments": { @@ -163,7 +162,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 28 [00:00:57.000] response: +Info 27 [00:00:56.000] response: { "responseRequired": false } @@ -187,7 +186,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 29 [00:00:58.000] event: +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 @@ -229,7 +228,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 30 [00:00:59.000] event: +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) @@ -271,9 +270,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 31 [00:01:00.000] event: +Info 30 [00:00:59.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 32 [00:01:01.000] event: +Info 31 [00:01:00.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -295,38 +294,38 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 33 [00:01:04.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 34 [00:01:05.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation -Info 35 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 36 [00:01:07.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 37 [00:01:08.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 38 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 39 [00:01:10.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 40 [00:01:11.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 41 [00:01:12.000] Scheduled: *ensureProjectForOpenFiles* -Info 42 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 43 [00:01:16.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 44 [00:01:17.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 45 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 46 [00:01:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 47 [00:01:20.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 48 [00:01:21.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 49 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 50 [00:01:25.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 51 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 52 [00:01:27.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 53 [00:01:28.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel -Info 54 [00:01:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 55 [00:01:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 56 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 57 [00:01:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 58 [00:01:35.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f -Info 59 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 60 [00:01:39.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 61 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 62 [00:01:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 63 [00:01:42.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/core-js-db53158d -Info 64 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +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 +Info 35 [00:01:06.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 36 [00:01:07.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 37 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 38 [00:01:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 39 [00:01:10.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 40 [00:01:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 41 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 42 [00:01:15.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 43 [00:01:16.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 44 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 45 [00:01:18.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 46 [00:01:19.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 47 [00:01:20.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 48 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 49 [00:01:24.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 50 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 51 [00:01:26.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 52 [00:01:27.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel +Info 53 [00:01:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 54 [00:01:31.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 55 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 56 [00:01:33.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 57 [00:01:34.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f +Info 58 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 59 [00:01:38.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 60 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 61 [00:01:40.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 62 [00:01:41.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/core-js-db53158d +Info 63 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (3) and running PolledWatches:: @@ -347,9 +346,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 65 [00:01:44.000] Running: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation -Info 66 [00:01:45.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 67 [00:01:46.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 64 [00:01:43.000] Running: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation +Info 65 [00:01:44.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 66 [00:01:45.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one After checking timeout queue length (3) and running PolledWatches:: @@ -390,29 +389,29 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 68 [00:01:47.000] Running: /user/username/projects/myproject/tsconfig.json -Info 69 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 70 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 71 [00:01:50.000] Different program with same set of files -Info 72 [00:01:51.000] Running: *ensureProjectForOpenFiles* -Info 73 [00:01:52.000] Before ensureProjectForOpenFiles: -Info 74 [00:01:53.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 74 [00:01:54.000] Files (2) - -Info 74 [00:01:55.000] ----------------------------------------------- -Info 74 [00:01:56.000] Open files: -Info 74 [00:01:57.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject -Info 74 [00:01:58.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 74 [00:01:59.000] After ensureProjectForOpenFiles: -Info 75 [00:02:00.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 75 [00:02:01.000] Files (2) - -Info 75 [00:02:02.000] ----------------------------------------------- -Info 75 [00:02:03.000] Open files: -Info 75 [00:02:04.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject -Info 75 [00:02:05.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 75 [00:02:06.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/main.ts -Info 76 [00:02:07.000] event: +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 +Info 70 [00:01:49.000] Different program with same set of files +Info 71 [00:01:50.000] Running: *ensureProjectForOpenFiles* +Info 72 [00:01:51.000] Before ensureProjectForOpenFiles: +Info 73 [00:01:52.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 73 [00:01:53.000] Files (2) + +Info 73 [00:01:54.000] ----------------------------------------------- +Info 73 [00:01:55.000] Open files: +Info 73 [00:01:56.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject +Info 73 [00:01:57.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 73 [00:01:58.000] After ensureProjectForOpenFiles: +Info 74 [00:01:59.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 74 [00:02:00.000] Files (2) + +Info 74 [00:02:01.000] ----------------------------------------------- +Info 74 [00:02:02.000] Open files: +Info 74 [00:02:03.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject +Info 74 [00:02:04.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 74 [00:02:05.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/main.ts +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 @@ -434,7 +433,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 77 [00:02:08.000] request: +Info 76 [00:02:07.000] request: { "command": "geterr", "arguments": { @@ -486,7 +485,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 78 [00:02:09.000] response: +Info 77 [00:02:08.000] response: { "responseRequired": false } @@ -510,7 +509,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 79 [00:02:10.000] event: +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 @@ -552,7 +551,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 80 [00:02:11.000] event: +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) @@ -594,9 +593,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 81 [00:02:12.000] event: +Info 80 [00:02:11.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 82 [00:02:13.000] event: +Info 81 [00:02:12.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) @@ -618,41 +617,41 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 83 [00:02:16.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 84 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 85 [00:02:18.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 86 [00:02:19.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular -Info 87 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 88 [00:02:23.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 89 [00:02:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 90 [00:02:25.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 91 [00:02:26.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a -Info 92 [00:02:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 93 [00:02:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 94 [00:02:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 95 [00:02:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 96 [00:02:35.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 -Info 97 [00:02:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 98 [00:02:38.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 99 [00:02:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 100 [00:02:40.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 101 [00:02:41.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models -Info 102 [00:02:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 103 [00:02:44.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 104 [00:02:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 105 [00:02:46.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 106 [00:02:47.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts -Info 107 [00:02:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 108 [00:02:52.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 109 [00:02:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 110 [00:02:54.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 111 [00:02:55.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf -Info 112 [00:02:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 113 [00:02:58.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 114 [00:02:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 115 [00:03:00.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 116 [00:03:01.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts -Info 117 [00:03:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +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 +Info 85 [00:02:18.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular +Info 86 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 87 [00:02:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 88 [00:02:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 89 [00:02:24.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 90 [00:02:25.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a +Info 91 [00:02:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 92 [00:02:31.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 93 [00:02:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 94 [00:02:33.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 95 [00:02:34.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 +Info 96 [00:02:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 97 [00:02:37.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 98 [00:02:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 99 [00:02:39.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 100 [00:02:40.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models +Info 101 [00:02:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 102 [00:02:43.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 103 [00:02:44.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 104 [00:02:45.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 105 [00:02:46.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts +Info 106 [00:02:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 107 [00:02:51.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 108 [00:02:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 109 [00:02:53.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 110 [00:02:54.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf +Info 111 [00:02:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 112 [00:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 113 [00:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 114 [00:02:59.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 115 [00:03:00.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts +Info 116 [00:03:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (0) and running //// [/user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts] export const x = 10; @@ -699,7 +698,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 118 [00:03:03.000] request: +Info 117 [00:03:02.000] request: { "command": "geterr", "arguments": { @@ -751,7 +750,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 119 [00:03:04.000] response: +Info 118 [00:03:03.000] response: { "responseRequired": false } @@ -775,7 +774,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 120 [00:03:05.000] event: +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 @@ -817,7 +816,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 121 [00:03:06.000] event: +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) @@ -859,9 +858,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 122 [00:03:07.000] event: +Info 121 [00:03:06.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 123 [00:03:08.000] event: +Info 122 [00:03:07.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) @@ -926,7 +925,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 124 [00:03:15.000] request: +Info 123 [00:03:14.000] request: { "command": "geterr", "arguments": { @@ -978,7 +977,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 125 [00:03:16.000] response: +Info 124 [00:03:15.000] response: { "responseRequired": false } @@ -1002,7 +1001,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 126 [00:03:17.000] event: +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 @@ -1044,7 +1043,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 127 [00:03:18.000] event: +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) @@ -1086,9 +1085,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 128 [00:03:19.000] event: +Info 127 [00:03:18.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 129 [00:03:20.000] event: +Info 128 [00:03:19.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) @@ -1110,63 +1109,63 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 130 [00:03:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 131 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 132 [00:03:24.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 133 [00:03:25.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts -Info 134 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 135 [00:03:28.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 136 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 137 [00:03:30.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 138 [00:03:31.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models -Info 139 [00:03:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 140 [00:03:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 141 [00:03:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 142 [00:03:36.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 143 [00:03:37.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 -Info 144 [00:03:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 145 [00:03:40.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 146 [00:03:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 147 [00:03:42.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 148 [00:03:43.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts -Info 149 [00:03:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 150 [00:03:46.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 151 [00:03:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 152 [00:03:48.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 153 [00:03:49.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf -Info 154 [00:03:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 155 [00:03:52.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 156 [00:03:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 157 [00:03:54.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 158 [00:03:55.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a -Info 159 [00:03:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 160 [00:03:58.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 161 [00:03:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 162 [00:04:00.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 163 [00:04:01.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular -Info 164 [00:04:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 165 [00:04:04.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 166 [00:04:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 167 [00:04:06.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 168 [00:04:07.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f -Info 169 [00:04:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 170 [00:04:10.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 171 [00:04:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 172 [00:04:12.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 173 [00:04:13.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel -Info 174 [00:04:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 175 [00:04:16.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 176 [00:04:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 177 [00:04:18.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 178 [00:04:19.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/core-js-db53158d -Info 179 [00:04:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 180 [00:04:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 181 [00:04:23.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation -Info 182 [00:04:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 183 [00:04:25.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 184 [00:04:26.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 185 [00:04:27.000] Scheduled: *ensureProjectForOpenFiles* -Info 186 [00:04:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +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 +Info 132 [00:03:24.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts +Info 133 [00:03:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 134 [00:03:27.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 135 [00:03:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 136 [00:03:29.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 137 [00:03:30.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models +Info 138 [00:03:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 139 [00:03:33.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 140 [00:03:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 141 [00:03:35.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 142 [00:03:36.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 +Info 143 [00:03:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05 :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 144 [00:03:39.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 145 [00:03:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 146 [00:03:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 147 [00:03:42.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts +Info 148 [00:03:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 149 [00:03:45.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 150 [00:03:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 151 [00:03:47.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 152 [00:03:48.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf +Info 153 [00:03:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 154 [00:03:51.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 155 [00:03:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 156 [00:03:53.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 157 [00:03:54.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a +Info 158 [00:03:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular/platform-browser-dynamic-5efaaa1a :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 159 [00:03:57.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 160 [00:03:58.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 161 [00:03:59.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 162 [00:04:00.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@angular +Info 163 [00:04:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@angular :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 164 [00:04:03.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 165 [00:04:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 166 [00:04:05.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 167 [00:04:06.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f +Info 168 [00:04:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel/helper-plugin-utils-a06c629f :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 169 [00:04:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 170 [00:04:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 171 [00:04:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 172 [00:04:12.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/@babel +Info 173 [00:04:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/@babel :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 174 [00:04:15.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 175 [00:04:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 176 [00:04:17.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 177 [00:04:18.000] Project: /user/username/projects/myproject/tsconfig.json Detected ignored path: /user/username/projects/myproject/node_modules/.staging/core-js-db53158d +Info 178 [00:04:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging/core-js-db53158d :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 179 [00:04:21.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 180 [00:04:22.000] Scheduled: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation +Info 181 [00:04:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 182 [00:04:24.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 183 [00:04:25.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 184 [00:04:26.000] Scheduled: *ensureProjectForOpenFiles* +Info 185 [00:04:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/node_modules/.staging :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/node_modules/.staging/@angular/cli-c1e44b05/models/analytics.d.ts] deleted //// [/user/username/projects/myproject/node_modules/.staging/@angular/core-0963aebf/index.d.ts] deleted @@ -1189,9 +1188,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 187 [00:04:29.000] Running: /user/username/projects/myproject/tsconfig.jsonFailedLookupInvalidation -Info 188 [00:04:30.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 189 [00:04:31.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +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:: @@ -1232,13 +1231,13 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 190 [00:04:32.000] Running: /user/username/projects/myproject/tsconfig.json -Info 191 [00:04:33.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 192 [00:04:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 193 [00:04:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 194 [00:04:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 195 [00:04:37.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 196 [00:04:38.000] Files (3) +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 +Info 192 [00:04:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 193 [00:04:35.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 194 [00:04:36.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 195 [00:04:37.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/node_modules/@angular/core/index.d.ts /user/username/projects/myproject/src/main.ts @@ -1251,26 +1250,26 @@ Info 196 [00:04:38.000] Files (3) src/main.ts Matched by default include pattern '**/*' -Info 197 [00:04:39.000] ----------------------------------------------- -Info 198 [00:04:40.000] Running: *ensureProjectForOpenFiles* -Info 199 [00:04:41.000] Before ensureProjectForOpenFiles: -Info 200 [00:04:42.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 200 [00:04:43.000] Files (3) - -Info 200 [00:04:44.000] ----------------------------------------------- -Info 200 [00:04:45.000] Open files: -Info 200 [00:04:46.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject -Info 200 [00:04:47.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 200 [00:04:48.000] After ensureProjectForOpenFiles: -Info 201 [00:04:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 201 [00:04:50.000] Files (3) - -Info 201 [00:04:51.000] ----------------------------------------------- -Info 201 [00:04:52.000] Open files: -Info 201 [00:04:53.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject -Info 201 [00:04:54.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 201 [00:04:55.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/main.ts -Info 202 [00:04:56.000] event: +Info 196 [00:04:38.000] ----------------------------------------------- +Info 197 [00:04:39.000] Running: *ensureProjectForOpenFiles* +Info 198 [00:04:40.000] Before ensureProjectForOpenFiles: +Info 199 [00:04:41.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 199 [00:04:42.000] Files (3) + +Info 199 [00:04:43.000] ----------------------------------------------- +Info 199 [00:04:44.000] Open files: +Info 199 [00:04:45.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject +Info 199 [00:04:46.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 199 [00:04:47.000] After ensureProjectForOpenFiles: +Info 200 [00:04:48.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 200 [00:04:49.000] Files (3) + +Info 200 [00:04:50.000] ----------------------------------------------- +Info 200 [00:04:51.000] Open files: +Info 200 [00:04:52.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject +Info 200 [00:04:53.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 200 [00:04:54.000] got projects updated in background, updating diagnostics for /user/username/projects/myproject/src/main.ts +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 @@ -1292,7 +1291,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 203 [00:04:57.000] request: +Info 202 [00:04:56.000] request: { "command": "geterr", "arguments": { @@ -1344,7 +1343,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 204 [00:04:58.000] response: +Info 203 [00:04:57.000] response: { "responseRequired": false } @@ -1368,7 +1367,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 205 [00:04:59.000] event: +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 @@ -1410,7 +1409,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 206 [00:05:00.000] event: +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) @@ -1452,9 +1451,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 207 [00:05:01.000] event: +Info 206 [00:05:00.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 208 [00:05:02.000] event: +Info 207 [00:05:01.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":5}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectErrors/reports-errors-correctly-when-file-referenced-by-inferred-project-root,-is-opened-right-after-closing-the-root-file.js b/tests/baselines/reference/tsserver/projectErrors/reports-errors-correctly-when-file-referenced-by-inferred-project-root,-is-opened-right-after-closing-the-root-file.js index cb6ba3b0cf85d..b5e31be03d42f 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 @@ -41,20 +41,19 @@ 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] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 5 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/client/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 6 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/client/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 7 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 8 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 9 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 10 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 11 [00:00:44.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 12 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 14 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 15 [00:00:48.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:00:49.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 17 [00:00:50.000] Files (2) +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 +Info 5 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/client/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 6 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 7 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 8 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 9 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 10 [00:00:43.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 11 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 13 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 14 [00:00:47.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:48.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 16 [00:00:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/client/app.js @@ -64,14 +63,14 @@ Info 17 [00:00:50.000] Files (2) src/client/app.js Root file specified for compilation -Info 18 [00:00:51.000] ----------------------------------------------- -Info 19 [00:00:52.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 19 [00:00:53.000] Files (2) +Info 17 [00:00:50.000] ----------------------------------------------- +Info 18 [00:00:51.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 18 [00:00:52.000] Files (2) -Info 19 [00:00:54.000] ----------------------------------------------- -Info 19 [00:00:55.000] Open files: -Info 19 [00:00:56.000] FileName: /user/username/projects/myproject/src/client/app.js ProjectRootPath: /user/username/projects/myproject -Info 19 [00:00:57.000] Projects: /dev/null/inferredProject1* +Info 18 [00:00:53.000] ----------------------------------------------- +Info 18 [00:00:54.000] Open files: +Info 18 [00:00:55.000] FileName: /user/username/projects/myproject/src/client/app.js ProjectRootPath: /user/username/projects/myproject +Info 18 [00:00:56.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -102,11 +101,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 19 [00:00:58.000] response: +Info 18 [00:00:57.000] response: { "responseRequired": false } -Info 20 [00:00:59.000] request: +Info 19 [00:00:58.000] request: { "seq": 0, "type": "request", @@ -146,19 +145,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 21 [00:01:00.000] Search path: /user/username/projects/myproject/test/backend -Info 22 [00:01:01.000] For info: /user/username/projects/myproject/test/backend/index.js :: No config files found. -Info 23 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/backend/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 24 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/backend/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 25 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 26 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 27 [00:01:06.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 28 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 29 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 30 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/server/utilities.js 500 undefined WatchType: Closed Script info -Info 31 [00:01:10.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 32 [00:01:11.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 33 [00:01:12.000] Files (4) +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 +Info 23 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/backend/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 24 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 25 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 26 [00:01:05.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 27 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 28 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 29 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/server/utilities.js 500 undefined WatchType: Closed Script info +Info 30 [00:01:09.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 31 [00:01:10.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 32 [00:01:11.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/client/app.js /user/username/projects/myproject/src/server/utilities.js @@ -174,16 +173,16 @@ Info 33 [00:01:12.000] Files (4) test/backend/index.js Root file specified for compilation -Info 34 [00:01:13.000] ----------------------------------------------- -Info 35 [00:01:14.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 35 [00:01:15.000] Files (4) +Info 33 [00:01:12.000] ----------------------------------------------- +Info 34 [00:01:13.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 34 [00:01:14.000] Files (4) -Info 35 [00:01:16.000] ----------------------------------------------- -Info 35 [00:01:17.000] Open files: -Info 35 [00:01:18.000] FileName: /user/username/projects/myproject/src/client/app.js ProjectRootPath: /user/username/projects/myproject -Info 35 [00:01:19.000] Projects: /dev/null/inferredProject1* -Info 35 [00:01:20.000] FileName: /user/username/projects/myproject/test/backend/index.js ProjectRootPath: /user/username/projects/myproject -Info 35 [00:01:21.000] Projects: /dev/null/inferredProject1* +Info 34 [00:01:15.000] ----------------------------------------------- +Info 34 [00:01:16.000] Open files: +Info 34 [00:01:17.000] FileName: /user/username/projects/myproject/src/client/app.js ProjectRootPath: /user/username/projects/myproject +Info 34 [00:01:18.000] Projects: /dev/null/inferredProject1* +Info 34 [00:01:19.000] FileName: /user/username/projects/myproject/test/backend/index.js ProjectRootPath: /user/username/projects/myproject +Info 34 [00:01:20.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -226,11 +225,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 35 [00:01:22.000] response: +Info 34 [00:01:21.000] response: { "responseRequired": false } -Info 36 [00:01:23.000] request: +Info 35 [00:01:22.000] request: { "command": "geterr", "arguments": { @@ -327,7 +326,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 37 [00:01:24.000] response: +Info 36 [00:01:23.000] response: { "responseRequired": false } @@ -373,7 +372,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 38 [00:01:25.000] event: +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 @@ -459,7 +458,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 39 [00:01:26.000] event: +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) @@ -545,7 +544,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 40 [00:01:27.000] event: +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) @@ -631,7 +630,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 41 [00:01:28.000] event: +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 @@ -717,7 +716,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 42 [00:01:29.000] event: +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) @@ -803,9 +802,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 43 [00:01:30.000] event: +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 44 [00:01:31.000] event: +Info 43 [00:01:30.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -849,7 +848,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 45 [00:01:32.000] request: +Info 44 [00:01:31.000] request: { "seq": 0, "type": "request", @@ -900,18 +899,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 46 [00:01:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/backend/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 47 [00:01:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/backend/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 48 [00:01:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 49 [00:01:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 50 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/test/backend/index.js 500 undefined WatchType: Closed Script info -Info 51 [00:01:38.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 51 [00:01:39.000] Files (4) +Info 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 51 [00:01:40.000] ----------------------------------------------- -Info 51 [00:01:41.000] Open files: -Info 51 [00:01:42.000] FileName: /user/username/projects/myproject/src/client/app.js ProjectRootPath: /user/username/projects/myproject -Info 51 [00:01:43.000] Projects: /dev/null/inferredProject1* +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:: @@ -948,11 +947,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 51 [00:01:44.000] response: +Info 50 [00:01:43.000] response: { "responseRequired": false } -Info 52 [00:01:45.000] request: +Info 51 [00:01:44.000] request: { "seq": 0, "type": "request", @@ -998,15 +997,15 @@ FsWatchesRecursive:: /user/username/projects/myproject/test: {} -Info 53 [00:01:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/server/utilities.js 500 undefined WatchType: Closed Script info -Info 54 [00:01:47.000] Search path: /user/username/projects/myproject/src/server -Info 55 [00:01:48.000] For info: /user/username/projects/myproject/src/server/utilities.js :: No config files found. -Info 56 [00:01:49.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 57 [00:01:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 58 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 59 [00:01:52.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 60 [00:01:53.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 61 [00:01:54.000] Files (2) +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 @@ -1016,13 +1015,13 @@ Info 61 [00:01:54.000] Files (2) src/client/app.js Root file specified for compilation -Info 62 [00:01:55.000] ----------------------------------------------- -Info 63 [00:01:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/server/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 64 [00:01:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/server/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 65 [00:01:58.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 66 [00:01:59.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 67 [00:02:00.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 68 [00:02:01.000] Files (3) +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 @@ -1035,17 +1034,17 @@ Info 68 [00:02:01.000] Files (3) src/server/utilities.js Root file specified for compilation -Info 69 [00:02:02.000] ----------------------------------------------- -Info 70 [00:02:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/test/backend/index.js 500 undefined WatchType: Closed Script info -Info 71 [00:02:04.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 71 [00:02:05.000] Files (3) - -Info 71 [00:02:06.000] ----------------------------------------------- -Info 71 [00:02:07.000] Open files: -Info 71 [00:02:08.000] FileName: /user/username/projects/myproject/src/client/app.js ProjectRootPath: /user/username/projects/myproject -Info 71 [00:02:09.000] Projects: /dev/null/inferredProject1* -Info 71 [00:02:10.000] FileName: /user/username/projects/myproject/src/server/utilities.js ProjectRootPath: /user/username/projects/myproject -Info 71 [00:02:11.000] Projects: /dev/null/inferredProject1* +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:: @@ -1080,11 +1079,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 71 [00:02:12.000] response: +Info 70 [00:02:11.000] response: { "responseRequired": false } -Info 72 [00:02:13.000] request: +Info 71 [00:02:12.000] request: { "command": "geterr", "arguments": { @@ -1165,7 +1164,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 73 [00:02:14.000] response: +Info 72 [00:02:13.000] response: { "responseRequired": false } @@ -1203,7 +1202,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 74 [00:02:15.000] event: +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 @@ -1273,7 +1272,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 75 [00:02:16.000] event: +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) @@ -1343,7 +1342,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 76 [00:02:17.000] event: +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) @@ -1413,7 +1412,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 77 [00:02:18.000] event: +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 @@ -1483,7 +1482,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 78 [00:02:19.000] event: +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) @@ -1553,9 +1552,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 79 [00:02:20.000] event: +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 80 [00:02:21.000] event: +Info 79 [00:02:20.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectErrors/should-not-report-incorrect-error-when-json-is-root-file-found-by-tsconfig.js b/tests/baselines/reference/tsserver/projectErrors/should-not-report-incorrect-error-when-json-is-root-file-found-by-tsconfig.js index 670049445b932..6221a8a8a3176 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 @@ -59,17 +59,16 @@ Info 7 [00:00:32.000] Config: /user/username/projects/myproject/tsconfig.json } Info 8 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 9 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:35.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/blabla.json 500 undefined WatchType: Closed Script info -Info 12 [00:00:37.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 16 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 17 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 18 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 20 [00:00:45.000] Files (3) +Info 10 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/blabla.json 500 undefined WatchType: Closed Script info +Info 11 [00:00:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 12 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 16 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 17 [00:00:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 18 [00:00:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 19 [00:00:44.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/blabla.json /user/username/projects/myproject/src/test.ts @@ -83,22 +82,22 @@ Info 20 [00:00:45.000] Files (3) src/test.ts Matched by include pattern './src/*.ts' in 'tsconfig.json' -Info 21 [00:00:46.000] ----------------------------------------------- -Info 22 [00:00:47.000] event: +Info 20 [00:00:45.000] ----------------------------------------------- +Info 21 [00:00:46.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 23 [00:00:48.000] event: +Info 22 [00:00:47.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":87,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"resolveJsonModule":true,"composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 24 [00:00:49.000] event: +Info 23 [00:00:48.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/test.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 25 [00:00:50.000] Search path: /user/username/projects/myproject -Info 26 [00:00:51.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. -Info 27 [00:00:52.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 27 [00:00:53.000] Files (3) - -Info 27 [00:00:54.000] ----------------------------------------------- -Info 27 [00:00:55.000] Open files: -Info 27 [00:00:56.000] FileName: /user/username/projects/myproject/src/test.ts ProjectRootPath: undefined -Info 27 [00:00:57.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 24 [00:00:49.000] Search path: /user/username/projects/myproject +Info 25 [00:00:50.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. +Info 26 [00:00:51.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 26 [00:00:52.000] Files (3) + +Info 26 [00:00:53.000] ----------------------------------------------- +Info 26 [00:00:54.000] Open files: +Info 26 [00:00:55.000] FileName: /user/username/projects/myproject/src/test.ts ProjectRootPath: undefined +Info 26 [00:00:56.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -119,11 +118,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 27 [00:00:58.000] response: +Info 26 [00:00:57.000] response: { "responseRequired": false } -Info 28 [00:00:59.000] request: +Info 27 [00:00:58.000] request: { "command": "geterr", "arguments": { @@ -175,7 +174,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 29 [00:01:00.000] response: +Info 28 [00:00:59.000] response: { "responseRequired": false } @@ -199,7 +198,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 30 [00:01:01.000] event: +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 @@ -241,7 +240,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 31 [00:01:02.000] event: +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) @@ -283,9 +282,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 32 [00:01:03.000] event: +Info 31 [00:01:02.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/test.ts","diagnostics":[]}} -Info 33 [00:01:04.000] event: +Info 32 [00:01:03.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectErrors/should-report-error-when-json-is-not-root-file-found-by-tsconfig.js b/tests/baselines/reference/tsserver/projectErrors/should-report-error-when-json-is-not-root-file-found-by-tsconfig.js index 40ae2b9c0d6de..c834f05c06552 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 @@ -58,17 +58,16 @@ Info 7 [00:00:32.000] Config: /user/username/projects/myproject/tsconfig.json } Info 8 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 9 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:35.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 12 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/blabla.json 500 undefined WatchType: Closed Script info -Info 15 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 16 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 17 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 18 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 20 [00:00:45.000] Files (3) +Info 10 [00:00:35.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 11 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/blabla.json 500 undefined WatchType: Closed Script info +Info 14 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 16 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 17 [00:00:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 18 [00:00:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 19 [00:00:44.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/blabla.json /user/username/projects/myproject/src/test.ts @@ -81,22 +80,22 @@ Info 20 [00:00:45.000] Files (3) src/test.ts Matched by include pattern './src/*.ts' in 'tsconfig.json' -Info 21 [00:00:46.000] ----------------------------------------------- -Info 22 [00:00:47.000] event: +Info 20 [00:00:45.000] ----------------------------------------------- +Info 21 [00:00:46.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 23 [00:00:48.000] event: +Info 22 [00:00:47.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":87,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"resolveJsonModule":true,"composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 24 [00:00:49.000] event: +Info 23 [00:00:48.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/test.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 25 [00:00:50.000] Search path: /user/username/projects/myproject -Info 26 [00:00:51.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. -Info 27 [00:00:52.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 27 [00:00:53.000] Files (3) - -Info 27 [00:00:54.000] ----------------------------------------------- -Info 27 [00:00:55.000] Open files: -Info 27 [00:00:56.000] FileName: /user/username/projects/myproject/src/test.ts ProjectRootPath: undefined -Info 27 [00:00:57.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 24 [00:00:49.000] Search path: /user/username/projects/myproject +Info 25 [00:00:50.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. +Info 26 [00:00:51.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 26 [00:00:52.000] Files (3) + +Info 26 [00:00:53.000] ----------------------------------------------- +Info 26 [00:00:54.000] Open files: +Info 26 [00:00:55.000] FileName: /user/username/projects/myproject/src/test.ts ProjectRootPath: undefined +Info 26 [00:00:56.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -117,11 +116,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 27 [00:00:58.000] response: +Info 26 [00:00:57.000] response: { "responseRequired": false } -Info 28 [00:00:59.000] request: +Info 27 [00:00:58.000] request: { "command": "geterr", "arguments": { @@ -173,7 +172,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 29 [00:01:00.000] response: +Info 28 [00:00:59.000] response: { "responseRequired": false } @@ -197,7 +196,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 30 [00:01:01.000] event: +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 @@ -239,7 +238,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 31 [00:01:02.000] event: +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) @@ -281,9 +280,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 32 [00:01:03.000] event: +Info 31 [00:01:02.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/test.ts","diagnostics":[]}} -Info 33 [00:01:04.000] event: +Info 32 [00:01:03.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectErrors/when-opening-new-file-that-doesnt-exist-on-disk-yet-with-projectRoot.js b/tests/baselines/reference/tsserver/projectErrors/when-opening-new-file-that-doesnt-exist-on-disk-yet-with-projectRoot.js index a71907fef5bf3..a9bb6da61d0d9 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 @@ -40,16 +40,15 @@ 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] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 5 [00:00:30.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 6 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 7 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /typings/@epic/core.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 8 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /user/someuser/projects/somefolder/src/somefile.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 9 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/someuser/projects/someFolder/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 10 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/someuser/projects/someFolder/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 11 [00:00:36.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 12 [00:00:37.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 13 [00:00:38.000] Files (2) +Info 4 [00:00:29.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 5 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 6 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /typings/@epic/core.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 7 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /user/someuser/projects/somefolder/src/somefile.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 8 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/someuser/projects/someFolder/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 9 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/someuser/projects/someFolder/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 10 [00:00:35.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 11 [00:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 12 [00:00:37.000] Files (2) /a/lib/lib.d.ts untitled:Untitled-1 @@ -59,14 +58,14 @@ Info 13 [00:00:38.000] Files (2) untitled:Untitled-1 Root file specified for compilation -Info 14 [00:00:39.000] ----------------------------------------------- -Info 15 [00:00:40.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 15 [00:00:41.000] Files (2) +Info 13 [00:00:38.000] ----------------------------------------------- +Info 14 [00:00:39.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 14 [00:00:40.000] Files (2) -Info 15 [00:00:42.000] ----------------------------------------------- -Info 15 [00:00:43.000] Open files: -Info 15 [00:00:44.000] FileName: untitled:Untitled-1 ProjectRootPath: /user/someuser/projects/someFolder -Info 15 [00:00:45.000] Projects: /dev/null/inferredProject1* +Info 14 [00:00:41.000] ----------------------------------------------- +Info 14 [00:00:42.000] Open files: +Info 14 [00:00:43.000] FileName: untitled:Untitled-1 ProjectRootPath: /user/someuser/projects/someFolder +Info 14 [00:00:44.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -83,7 +82,7 @@ FsWatches:: FsWatchesRecursive:: -Info 15 [00:00:46.000] response: +Info 14 [00:00:45.000] response: { "responseRequired": false } @@ -108,7 +107,7 @@ FsWatches:: FsWatchesRecursive:: -Info 16 [00:00:47.000] request: +Info 15 [00:00:46.000] request: { "command": "geterr", "arguments": { @@ -152,7 +151,7 @@ FsWatches:: FsWatchesRecursive:: -Info 17 [00:00:48.000] response: +Info 16 [00:00:47.000] response: { "responseRequired": false } @@ -172,7 +171,7 @@ FsWatches:: FsWatchesRecursive:: -Info 18 [00:00:49.000] event: +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 @@ -206,7 +205,7 @@ FsWatches:: FsWatchesRecursive:: -Info 19 [00:00:50.000] event: +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) @@ -240,9 +239,9 @@ FsWatches:: FsWatchesRecursive:: -Info 20 [00:00:51.000] event: +Info 19 [00:00:50.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"untitled:Untitled-1","diagnostics":[]}} -Info 21 [00:00:52.000] event: +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) 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 b92a3b15f2c29..fef71297b66bd 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 @@ -39,14 +39,13 @@ 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] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 5 [00:00:30.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 6 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 7 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /typings/@epic/core.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 8 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /src/somefile.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 9 [00:00:34.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 10 [00:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 11 [00:00:36.000] Files (2) +Info 4 [00:00:29.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 5 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 6 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /typings/@epic/core.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 7 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /src/somefile.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 8 [00:00:33.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 9 [00:00:34.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 10 [00:00:35.000] Files (2) /a/lib/lib.d.ts untitled:Untitled-1 @@ -56,14 +55,14 @@ Info 11 [00:00:36.000] Files (2) untitled:Untitled-1 Root file specified for compilation -Info 12 [00:00:37.000] ----------------------------------------------- -Info 13 [00:00:38.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 13 [00:00:39.000] Files (2) +Info 11 [00:00:36.000] ----------------------------------------------- +Info 12 [00:00:37.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 12 [00:00:38.000] Files (2) -Info 13 [00:00:40.000] ----------------------------------------------- -Info 13 [00:00:41.000] Open files: -Info 13 [00:00:42.000] FileName: untitled:Untitled-1 ProjectRootPath: undefined -Info 13 [00:00:43.000] Projects: /dev/null/inferredProject1* +Info 12 [00:00:39.000] ----------------------------------------------- +Info 12 [00:00:40.000] Open files: +Info 12 [00:00:41.000] FileName: untitled:Untitled-1 ProjectRootPath: undefined +Info 12 [00:00:42.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -78,7 +77,7 @@ FsWatches:: FsWatchesRecursive:: -Info 13 [00:00:44.000] response: +Info 12 [00:00:43.000] response: { "responseRequired": false } @@ -101,7 +100,7 @@ FsWatches:: FsWatchesRecursive:: -Info 14 [00:00:45.000] request: +Info 13 [00:00:44.000] request: { "command": "geterr", "arguments": { @@ -141,7 +140,7 @@ FsWatches:: FsWatchesRecursive:: -Info 15 [00:00:46.000] response: +Info 14 [00:00:45.000] response: { "responseRequired": false } @@ -159,7 +158,7 @@ FsWatches:: FsWatchesRecursive:: -Info 16 [00:00:47.000] event: +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 @@ -189,7 +188,7 @@ FsWatches:: FsWatchesRecursive:: -Info 17 [00:00:48.000] event: +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) @@ -219,9 +218,9 @@ FsWatches:: FsWatchesRecursive:: -Info 18 [00:00:49.000] event: +Info 17 [00:00:48.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"untitled:Untitled-1","diagnostics":[]}} -Info 19 [00:00:50.000] event: +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) 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 73e80f8ce34f2..1dc209b87758d 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 @@ -50,14 +50,13 @@ Info 6 [00:00:28.000] Config: /user/username/projects/myproject/tsconfig.json } Info 7 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 8 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:31.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:32.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 11 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 13 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 14 [00:00:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [00:00:37.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 16 [00:00:38.000] Files (2) +Info 9 [00:00:31.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 10 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 12 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 13 [00:00:35.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 14 [00:00:36.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 15 [00:00:37.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/ui.ts @@ -67,14 +66,14 @@ Info 16 [00:00:38.000] Files (2) ui.ts Matched by default include pattern '**/*' -Info 17 [00:00:39.000] ----------------------------------------------- -Info 18 [00:00:40.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 18 [00:00:41.000] Files (2) +Info 16 [00:00:38.000] ----------------------------------------------- +Info 17 [00:00:39.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 17 [00:00:40.000] Files (2) -Info 18 [00:00:42.000] ----------------------------------------------- -Info 18 [00:00:43.000] Open files: -Info 18 [00:00:44.000] FileName: /user/username/projects/myproject/ui.ts ProjectRootPath: undefined -Info 18 [00:00:45.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 17 [00:00:41.000] ----------------------------------------------- +Info 17 [00:00:42.000] Open files: +Info 17 [00:00:43.000] FileName: /user/username/projects/myproject/ui.ts ProjectRootPath: undefined +Info 17 [00:00:44.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -91,11 +90,11 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 18 [00:00:46.000] response: +Info 17 [00:00:45.000] response: { "responseRequired": false } -Info 19 [00:00:47.000] request: +Info 18 [00:00:46.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -137,12 +136,12 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 20 [00:00:48.000] response: +Info 19 [00:00:47.000] response: { "response": [], "responseRequired": true } -Info 21 [00:00:49.000] request: +Info 20 [00:00:48.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -184,7 +183,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 22 [00:00:50.000] response: +Info 21 [00:00:49.000] response: { "response": [ { @@ -203,7 +202,7 @@ Info 22 [00:00:50.000] response: ], "responseRequired": true } -Info 23 [00:00:51.000] request: +Info 22 [00:00:50.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -245,7 +244,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 24 [00:00:52.000] response: +Info 23 [00:00:51.000] response: { "response": [], "responseRequired": true diff --git a/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-getErr.js b/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-getErr.js index 453d48e9de84c..7797da302f4e9 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 @@ -52,14 +52,13 @@ Info 7 [00:00:29.000] Config: /user/username/projects/myproject/tsconfig.json } Info 8 [00:00:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 9 [00:00:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:33.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 12 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 14 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [00:00:37.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:00:38.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 17 [00:00:39.000] Files (2) +Info 10 [00:00:32.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 11 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 13 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 14 [00:00:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:37.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 16 [00:00:38.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/ui.ts @@ -69,20 +68,20 @@ Info 17 [00:00:39.000] Files (2) ui.ts Matched by default include pattern '**/*' -Info 18 [00:00:40.000] ----------------------------------------------- -Info 19 [00:00:41.000] event: +Info 17 [00:00:39.000] ----------------------------------------------- +Info 18 [00:00:40.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 20 [00:00:42.000] event: +Info 19 [00:00:41.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":41,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 21 [00:00:43.000] event: +Info 20 [00:00:42.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/ui.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 22 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 22 [00:00:45.000] Files (2) +Info 21 [00:00:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 21 [00:00:44.000] Files (2) -Info 22 [00:00:46.000] ----------------------------------------------- -Info 22 [00:00:47.000] Open files: -Info 22 [00:00:48.000] FileName: /user/username/projects/myproject/ui.ts ProjectRootPath: undefined -Info 22 [00:00:49.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 21 [00:00:45.000] ----------------------------------------------- +Info 21 [00:00:46.000] Open files: +Info 21 [00:00:47.000] FileName: /user/username/projects/myproject/ui.ts ProjectRootPath: undefined +Info 21 [00:00:48.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -99,11 +98,11 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 22 [00:00:50.000] response: +Info 21 [00:00:49.000] response: { "responseRequired": false } -Info 23 [00:00:51.000] request: +Info 22 [00:00:50.000] request: { "command": "geterr", "arguments": { @@ -147,7 +146,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 24 [00:00:52.000] response: +Info 23 [00:00:51.000] response: { "responseRequired": false } @@ -167,7 +166,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 25 [00:00:53.000] event: +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 @@ -201,7 +200,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 26 [00:00:54.000] event: +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) @@ -235,9 +234,9 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 27 [00:00:55.000] event: +Info 26 [00:00:54.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/ui.ts","diagnostics":[]}} -Info 28 [00:00:56.000] event: +Info 27 [00:00:55.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-geterrForProject.js b/tests/baselines/reference/tsserver/projectErrors/when-semantic-error-returns-includes-global-error-geterrForProject.js index 6e1247fcfe2c5..c4634c34bc3d4 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 @@ -52,14 +52,13 @@ Info 7 [00:00:29.000] Config: /user/username/projects/myproject/tsconfig.json } Info 8 [00:00:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 9 [00:00:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:33.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 12 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 14 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [00:00:37.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:00:38.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 17 [00:00:39.000] Files (2) +Info 10 [00:00:32.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 11 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 13 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 14 [00:00:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:37.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 16 [00:00:38.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/ui.ts @@ -69,20 +68,20 @@ Info 17 [00:00:39.000] Files (2) ui.ts Matched by default include pattern '**/*' -Info 18 [00:00:40.000] ----------------------------------------------- -Info 19 [00:00:41.000] event: +Info 17 [00:00:39.000] ----------------------------------------------- +Info 18 [00:00:40.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 20 [00:00:42.000] event: +Info 19 [00:00:41.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":41,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 21 [00:00:43.000] event: +Info 20 [00:00:42.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/ui.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 22 [00:00:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 22 [00:00:45.000] Files (2) +Info 21 [00:00:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 21 [00:00:44.000] Files (2) -Info 22 [00:00:46.000] ----------------------------------------------- -Info 22 [00:00:47.000] Open files: -Info 22 [00:00:48.000] FileName: /user/username/projects/myproject/ui.ts ProjectRootPath: undefined -Info 22 [00:00:49.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 21 [00:00:45.000] ----------------------------------------------- +Info 21 [00:00:46.000] Open files: +Info 21 [00:00:47.000] FileName: /user/username/projects/myproject/ui.ts ProjectRootPath: undefined +Info 21 [00:00:48.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -99,11 +98,11 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 22 [00:00:50.000] response: +Info 21 [00:00:49.000] response: { "responseRequired": false } -Info 23 [00:00:51.000] request: +Info 22 [00:00:50.000] request: { "command": "geterrForProject", "arguments": { @@ -145,7 +144,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 24 [00:00:52.000] response: +Info 23 [00:00:51.000] response: { "responseRequired": false } @@ -165,7 +164,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 25 [00:00:53.000] event: +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 @@ -199,7 +198,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 26 [00:00:54.000] event: +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) @@ -233,9 +232,9 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 27 [00:00:55.000] event: +Info 26 [00:00:54.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/ui.ts","diagnostics":[]}} -Info 28 [00:00:56.000] event: +Info 27 [00:00:55.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectLanguageServiceStateEvent/large-file-size-is-determined-correctly.js b/tests/baselines/reference/tsserver/projectLanguageServiceStateEvent/large-file-size-is-determined-correctly.js index 2d27083dc5007..eeaff9f4cb1fc 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 @@ -53,14 +53,13 @@ Info 5 [00:00:22.000] Config: /a/jsconfig.json : { } } Info 6 [00:00:23.000] Non TS file size exceeded limit (20971531). Largest files: /a/largefile.js:20971521, /a/app.js:10 -Info 7 [00:00:24.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/extremlylarge.d.ts 500 undefined WatchType: Closed Script info -Info 9 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/largefile.js 500 undefined WatchType: Closed Script info -Info 10 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:28.000] Starting updateGraphWorker: Project: /a/jsconfig.json -Info 12 [00:00:29.000] Finishing updateGraphWorker: Project: /a/jsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 13 [00:00:30.000] Project '/a/jsconfig.json' (Configured) -Info 14 [00:00:31.000] Files (2) +Info 7 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /a/extremlylarge.d.ts 500 undefined WatchType: Closed Script info +Info 8 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/largefile.js 500 undefined WatchType: Closed Script info +Info 9 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:27.000] Starting updateGraphWorker: Project: /a/jsconfig.json +Info 11 [00:00:28.000] Finishing updateGraphWorker: Project: /a/jsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 12 [00:00:29.000] Project '/a/jsconfig.json' (Configured) +Info 13 [00:00:30.000] Files (2) /a/lib/lib.d.ts /a/app.js @@ -70,13 +69,13 @@ Info 14 [00:00:31.000] Files (2) app.js Matched by default include pattern '**/*' -Info 15 [00:00:32.000] ----------------------------------------------- -Info 16 [00:00:33.000] Project '/a/jsconfig.json' (Configured) -Info 16 [00:00:34.000] Files (2) +Info 14 [00:00:31.000] ----------------------------------------------- +Info 15 [00:00:32.000] Project '/a/jsconfig.json' (Configured) +Info 15 [00:00:33.000] Files (2) -Info 16 [00:00:35.000] ----------------------------------------------- -Info 16 [00:00:36.000] Open files: -Info 16 [00:00:37.000] FileName: /a/app.js ProjectRootPath: undefined -Info 16 [00:00:38.000] Projects: /a/jsconfig.json -Info 16 [00:00:39.000] languageServiceEnabled: false -Info 17 [00:00:40.000] lastFileExceededProgramSize: /a/largefile.js \ No newline at end of file +Info 15 [00:00:34.000] ----------------------------------------------- +Info 15 [00:00:35.000] Open files: +Info 15 [00:00:36.000] FileName: /a/app.js ProjectRootPath: undefined +Info 15 [00:00:37.000] Projects: /a/jsconfig.json +Info 15 [00:00:38.000] languageServiceEnabled: false +Info 16 [00:00:39.000] lastFileExceededProgramSize: /a/largefile.js \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/compile-on-save-emits-same-output-as-project-build-with-external-project.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/compile-on-save-emits-same-output-as-project-build-with-external-project.js index 5f623dba3c07c..9a56f1226bf10 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 @@ -278,9 +278,8 @@ Info 6 [00:00:59.000] Config: /user/username/projects/myproject/SiblingClass/ ] } Info 7 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsbase.json 2000 undefined Config: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Extended config file -Info 8 [00:01:01.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:01:02.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/SiblingClass/tsconfig.json -Info 10 [00:01:03.000] Config: /user/username/projects/myproject/buttonClass/tsconfig.json : { +Info 8 [00:01:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/SiblingClass/tsconfig.json +Info 9 [00:01:02.000] Config: /user/username/projects/myproject/buttonClass/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/buttonClass/Source.ts" ], @@ -291,16 +290,16 @@ Info 10 [00:01:03.000] Config: /user/username/projects/myproject/buttonClass/t "configFilePath": "/user/username/projects/myproject/buttonClass/tsconfig.json" } } -Info 11 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/buttonClass/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Config file -Info 12 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/buttonClass/Source.ts 500 undefined WatchType: Closed Script info -Info 13 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/SiblingClass/node_modules/@types 1 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Type roots -Info 15 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/SiblingClass/node_modules/@types 1 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Type roots -Info 16 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Type roots -Info 17 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Type roots -Info 18 [00:01:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/SiblingClass/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [00:01:12.000] Project '/user/username/projects/myproject/SiblingClass/tsconfig.json' (Configured) -Info 20 [00:01:13.000] Files (3) +Info 10 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/buttonClass/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Config file +Info 11 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/buttonClass/Source.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/SiblingClass/node_modules/@types 1 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Type roots +Info 14 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/SiblingClass/node_modules/@types 1 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Type roots +Info 15 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Type roots +Info 16 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/SiblingClass/tsconfig.json WatchType: Type roots +Info 17 [00:01:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/SiblingClass/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 18 [00:01:11.000] Project '/user/username/projects/myproject/SiblingClass/tsconfig.json' (Configured) +Info 19 [00:01:12.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/buttonClass/Source.ts /user/username/projects/myproject/SiblingClass/Source.ts @@ -313,16 +312,16 @@ Info 20 [00:01:13.000] Files (3) Source.ts Part of 'files' list in tsconfig.json -Info 21 [00:01:14.000] ----------------------------------------------- -Info 22 [00:01:15.000] Search path: /user/username/projects/myproject/SiblingClass -Info 23 [00:01:16.000] For info: /user/username/projects/myproject/SiblingClass/tsconfig.json :: No config files found. -Info 24 [00:01:17.000] Project '/user/username/projects/myproject/SiblingClass/tsconfig.json' (Configured) -Info 24 [00:01:18.000] Files (3) +Info 20 [00:01:13.000] ----------------------------------------------- +Info 21 [00:01:14.000] Search path: /user/username/projects/myproject/SiblingClass +Info 22 [00:01:15.000] For info: /user/username/projects/myproject/SiblingClass/tsconfig.json :: No config files found. +Info 23 [00:01:16.000] Project '/user/username/projects/myproject/SiblingClass/tsconfig.json' (Configured) +Info 23 [00:01:17.000] Files (3) -Info 24 [00:01:19.000] ----------------------------------------------- -Info 24 [00:01:20.000] Open files: -Info 24 [00:01:21.000] FileName: /user/username/projects/myproject/SiblingClass/Source.ts ProjectRootPath: undefined -Info 24 [00:01:22.000] Projects: /user/username/projects/myproject/SiblingClass/tsconfig.json +Info 23 [00:01:18.000] ----------------------------------------------- +Info 23 [00:01:19.000] Open files: +Info 23 [00:01:20.000] FileName: /user/username/projects/myproject/SiblingClass/Source.ts ProjectRootPath: undefined +Info 23 [00:01:21.000] Projects: /user/username/projects/myproject/SiblingClass/tsconfig.json After request PolledWatches:: @@ -345,11 +344,11 @@ FsWatches:: FsWatchesRecursive:: -Info 24 [00:01:23.000] response: +Info 23 [00:01:22.000] response: { "responseRequired": false } -Info 25 [00:01:24.000] request: +Info 24 [00:01:23.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -405,7 +404,7 @@ FsWatches:: FsWatchesRecursive:: -Info 26 [00:01:31.000] response: +Info 25 [00:01:30.000] response: { "response": true, "responseRequired": true diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-change-to-dependency.js index 37f86397ac3ef..be3b352bf9415 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -357,7 +355,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "change", "arguments": { @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:59.000] response: +Info 49 [00:01:57.000] response: { "responseRequired": false } -Info 52 [00:02:00.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -462,40 +460,40 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [00:02:03.000] Different program with same set of files -Info 56 [00:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 57 [00:02:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 58 [00:02:06.000] Different program with same set of files -Info 59 [00:02:07.000] Before ensureProjectForOpenFiles: -Info 60 [00:02:08.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 60 [00:02:09.000] Files (3) - -Info 60 [00:02:10.000] ----------------------------------------------- -Info 60 [00:02:11.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 60 [00:02:12.000] Files (2) - -Info 60 [00:02:13.000] ----------------------------------------------- -Info 60 [00:02:14.000] Open files: -Info 60 [00:02:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 60 [00:02:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 60 [00:02:17.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 60 [00:02:18.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 60 [00:02:19.000] After ensureProjectForOpenFiles: -Info 61 [00:02:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 61 [00:02:21.000] Files (3) - -Info 61 [00:02:22.000] ----------------------------------------------- -Info 61 [00:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 61 [00:02:24.000] Files (2) - -Info 61 [00:02:25.000] ----------------------------------------------- -Info 61 [00:02:26.000] Open files: -Info 61 [00:02:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 61 [00:02:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 61 [00:02:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 61 [00:02:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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 +Info 54 [00:02:02.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 55 [00:02:03.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:02:04.000] Different program with same set of files +Info 57 [00:02:05.000] Before ensureProjectForOpenFiles: +Info 58 [00:02:06.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 58 [00:02:07.000] Files (3) + +Info 58 [00:02:08.000] ----------------------------------------------- +Info 58 [00:02:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 58 [00:02:10.000] Files (2) + +Info 58 [00:02:11.000] ----------------------------------------------- +Info 58 [00:02:12.000] Open files: +Info 58 [00:02:13.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 58 [00:02:14.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 58 [00:02:15.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 58 [00:02:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 58 [00:02:17.000] After ensureProjectForOpenFiles: +Info 59 [00:02:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 59 [00:02:19.000] Files (3) + +Info 59 [00:02:20.000] ----------------------------------------------- +Info 59 [00:02:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 59 [00:02:22.000] Files (2) + +Info 59 [00:02:23.000] ----------------------------------------------- +Info 59 [00:02:24.000] Open files: +Info 59 [00:02:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 59 [00:02:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 59 [00:02:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 59 [00:02:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -522,7 +520,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [00:02:31.000] response: +Info 59 [00:02:29.000] response: { "response": [ { @@ -542,7 +540,7 @@ Info 61 [00:02:31.000] response: ], "responseRequired": true } -Info 62 [00:02:32.000] request: +Info 60 [00:02:30.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -577,18 +575,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [00:02:35.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 64 [00:02:36.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js -Info 65 [00:02:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 66 [00:02:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 67 [00:02:42.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation -Info 68 [00:02:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [00:02:44.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [00:02:45.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 71 [00:02:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 72 [00:02:49.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 73 [00:02:50.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 74 [00:02:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +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 +Info 64 [00:02:39.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:02:40.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation +Info 66 [00:02:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 67 [00:02:42.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 68 [00:02:43.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 69 [00:02:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 70 [00:02:47.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 71 [00:02:48.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 72 [00:02:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations After request //// [/user/username/projects/myproject/dependency/fns.js] "use strict"; @@ -633,12 +631,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 75 [00:02:52.000] response: +Info 73 [00:02:50.000] response: { "response": true, "responseRequired": true } -Info 76 [00:02:53.000] request: +Info 74 [00:02:51.000] request: { "command": "emit-output", "arguments": { @@ -699,7 +697,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 77 [00:02:54.000] response: +Info 75 [00:02:52.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-change-to-usage.js index e34dedc41b3e3..9cb478ce1a611 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -357,7 +355,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "change", "arguments": { @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:59.000] response: +Info 49 [00:01:57.000] response: { "responseRequired": false } -Info 52 [00:02:00.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -462,37 +460,37 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [00:02:03.000] Different program with same set of files -Info 56 [00:02:04.000] Before ensureProjectForOpenFiles: -Info 57 [00:02:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 57 [00:02:06.000] Files (3) - -Info 57 [00:02:07.000] ----------------------------------------------- -Info 57 [00:02:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 57 [00:02:09.000] Files (2) - -Info 57 [00:02:10.000] ----------------------------------------------- -Info 57 [00:02:11.000] Open files: -Info 57 [00:02:12.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 57 [00:02:13.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 57 [00:02:14.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 57 [00:02:15.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 57 [00:02:16.000] After ensureProjectForOpenFiles: -Info 58 [00:02:17.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 58 [00:02:18.000] Files (3) - -Info 58 [00:02:19.000] ----------------------------------------------- -Info 58 [00:02:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 58 [00:02:21.000] Files (2) - -Info 58 [00:02:22.000] ----------------------------------------------- -Info 58 [00:02:23.000] Open files: -Info 58 [00:02:24.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 58 [00:02:25.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 58 [00:02:26.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 58 [00:02:27.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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 +Info 54 [00:02:02.000] Before ensureProjectForOpenFiles: +Info 55 [00:02:03.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 55 [00:02:04.000] Files (3) + +Info 55 [00:02:05.000] ----------------------------------------------- +Info 55 [00:02:06.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 55 [00:02:07.000] Files (2) + +Info 55 [00:02:08.000] ----------------------------------------------- +Info 55 [00:02:09.000] Open files: +Info 55 [00:02:10.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 55 [00:02:11.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 55 [00:02:12.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 55 [00:02:13.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 55 [00:02:14.000] After ensureProjectForOpenFiles: +Info 56 [00:02:15.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 56 [00:02:16.000] Files (3) + +Info 56 [00:02:17.000] ----------------------------------------------- +Info 56 [00:02:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 56 [00:02:19.000] Files (2) + +Info 56 [00:02:20.000] ----------------------------------------------- +Info 56 [00:02:21.000] Open files: +Info 56 [00:02:22.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 56 [00:02:23.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 56 [00:02:24.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 56 [00:02:25.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -519,7 +517,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [00:02:28.000] response: +Info 56 [00:02:26.000] response: { "response": [ { @@ -537,7 +535,7 @@ Info 58 [00:02:28.000] response: ], "responseRequired": true } -Info 59 [00:02:29.000] request: +Info 57 [00:02:27.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -572,18 +570,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [00:02:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 61 [00:02:33.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js -Info 62 [00:02:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 63 [00:02:38.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 64 [00:02:39.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation -Info 65 [00:02:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 66 [00:02:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 67 [00:02:42.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 68 [00:02:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [00:02:46.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [00:02:47.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 71 [00:02:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +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 +Info 61 [00:02:36.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 62 [00:02:37.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation +Info 63 [00:02:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 64 [00:02:39.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:02:40.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 66 [00:02:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 67 [00:02:44.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 68 [00:02:45.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 69 [00:02:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations After request //// [/user/username/projects/myproject/dependency/fns.js] "use strict"; @@ -625,12 +623,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 72 [00:02:49.000] response: +Info 70 [00:02:47.000] response: { "response": true, "responseRequired": true } -Info 73 [00:02:50.000] request: +Info 71 [00:02:48.000] request: { "command": "emit-output", "arguments": { @@ -691,7 +689,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 74 [00:02:51.000] response: +Info 72 [00:02:49.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-local-change-to-dependency.js index cfd0dd4b95726..22000a083cf29 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -357,7 +355,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "change", "arguments": { @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:59.000] response: +Info 49 [00:01:57.000] response: { "responseRequired": false } -Info 52 [00:02:00.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -462,40 +460,40 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [00:02:03.000] Different program with same set of files -Info 56 [00:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 57 [00:02:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 58 [00:02:06.000] Different program with same set of files -Info 59 [00:02:07.000] Before ensureProjectForOpenFiles: -Info 60 [00:02:08.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 60 [00:02:09.000] Files (3) - -Info 60 [00:02:10.000] ----------------------------------------------- -Info 60 [00:02:11.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 60 [00:02:12.000] Files (2) - -Info 60 [00:02:13.000] ----------------------------------------------- -Info 60 [00:02:14.000] Open files: -Info 60 [00:02:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 60 [00:02:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 60 [00:02:17.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 60 [00:02:18.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 60 [00:02:19.000] After ensureProjectForOpenFiles: -Info 61 [00:02:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 61 [00:02:21.000] Files (3) - -Info 61 [00:02:22.000] ----------------------------------------------- -Info 61 [00:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 61 [00:02:24.000] Files (2) - -Info 61 [00:02:25.000] ----------------------------------------------- -Info 61 [00:02:26.000] Open files: -Info 61 [00:02:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 61 [00:02:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 61 [00:02:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 61 [00:02:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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 +Info 54 [00:02:02.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 55 [00:02:03.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:02:04.000] Different program with same set of files +Info 57 [00:02:05.000] Before ensureProjectForOpenFiles: +Info 58 [00:02:06.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 58 [00:02:07.000] Files (3) + +Info 58 [00:02:08.000] ----------------------------------------------- +Info 58 [00:02:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 58 [00:02:10.000] Files (2) + +Info 58 [00:02:11.000] ----------------------------------------------- +Info 58 [00:02:12.000] Open files: +Info 58 [00:02:13.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 58 [00:02:14.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 58 [00:02:15.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 58 [00:02:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 58 [00:02:17.000] After ensureProjectForOpenFiles: +Info 59 [00:02:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 59 [00:02:19.000] Files (3) + +Info 59 [00:02:20.000] ----------------------------------------------- +Info 59 [00:02:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 59 [00:02:22.000] Files (2) + +Info 59 [00:02:23.000] ----------------------------------------------- +Info 59 [00:02:24.000] Open files: +Info 59 [00:02:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 59 [00:02:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 59 [00:02:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 59 [00:02:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -522,7 +520,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [00:02:31.000] response: +Info 59 [00:02:29.000] response: { "response": [ { @@ -540,7 +538,7 @@ Info 61 [00:02:31.000] response: ], "responseRequired": true } -Info 62 [00:02:32.000] request: +Info 60 [00:02:30.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -575,18 +573,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [00:02:35.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 64 [00:02:36.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js -Info 65 [00:02:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 66 [00:02:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 67 [00:02:42.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation -Info 68 [00:02:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [00:02:44.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [00:02:45.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 71 [00:02:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 72 [00:02:49.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 73 [00:02:50.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 74 [00:02:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +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 +Info 64 [00:02:39.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:02:40.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation +Info 66 [00:02:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 67 [00:02:42.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 68 [00:02:43.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 69 [00:02:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 70 [00:02:47.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 71 [00:02:48.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 72 [00:02:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations After request //// [/user/username/projects/myproject/dependency/fns.js] "use strict"; @@ -629,12 +627,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 75 [00:02:52.000] response: +Info 73 [00:02:50.000] response: { "response": true, "responseRequired": true } -Info 76 [00:02:53.000] request: +Info 74 [00:02:51.000] request: { "command": "emit-output", "arguments": { @@ -695,7 +693,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 77 [00:02:54.000] response: +Info 75 [00:02:52.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-and-local-change-to-usage.js index 2fe1d5c16dc1e..48c7ae1d451ad 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -357,7 +355,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "change", "arguments": { @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:59.000] response: +Info 49 [00:01:57.000] response: { "responseRequired": false } -Info 52 [00:02:00.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -462,37 +460,37 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [00:02:03.000] Different program with same set of files -Info 56 [00:02:04.000] Before ensureProjectForOpenFiles: -Info 57 [00:02:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 57 [00:02:06.000] Files (3) - -Info 57 [00:02:07.000] ----------------------------------------------- -Info 57 [00:02:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 57 [00:02:09.000] Files (2) - -Info 57 [00:02:10.000] ----------------------------------------------- -Info 57 [00:02:11.000] Open files: -Info 57 [00:02:12.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 57 [00:02:13.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 57 [00:02:14.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 57 [00:02:15.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 57 [00:02:16.000] After ensureProjectForOpenFiles: -Info 58 [00:02:17.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 58 [00:02:18.000] Files (3) - -Info 58 [00:02:19.000] ----------------------------------------------- -Info 58 [00:02:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 58 [00:02:21.000] Files (2) - -Info 58 [00:02:22.000] ----------------------------------------------- -Info 58 [00:02:23.000] Open files: -Info 58 [00:02:24.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 58 [00:02:25.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 58 [00:02:26.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 58 [00:02:27.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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 +Info 54 [00:02:02.000] Before ensureProjectForOpenFiles: +Info 55 [00:02:03.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 55 [00:02:04.000] Files (3) + +Info 55 [00:02:05.000] ----------------------------------------------- +Info 55 [00:02:06.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 55 [00:02:07.000] Files (2) + +Info 55 [00:02:08.000] ----------------------------------------------- +Info 55 [00:02:09.000] Open files: +Info 55 [00:02:10.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 55 [00:02:11.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 55 [00:02:12.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 55 [00:02:13.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 55 [00:02:14.000] After ensureProjectForOpenFiles: +Info 56 [00:02:15.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 56 [00:02:16.000] Files (3) + +Info 56 [00:02:17.000] ----------------------------------------------- +Info 56 [00:02:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 56 [00:02:19.000] Files (2) + +Info 56 [00:02:20.000] ----------------------------------------------- +Info 56 [00:02:21.000] Open files: +Info 56 [00:02:22.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 56 [00:02:23.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 56 [00:02:24.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 56 [00:02:25.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -519,7 +517,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [00:02:28.000] response: +Info 56 [00:02:26.000] response: { "response": [ { @@ -537,7 +535,7 @@ Info 58 [00:02:28.000] response: ], "responseRequired": true } -Info 59 [00:02:29.000] request: +Info 57 [00:02:27.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -572,18 +570,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [00:02:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 61 [00:02:33.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js -Info 62 [00:02:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 63 [00:02:38.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 64 [00:02:39.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation -Info 65 [00:02:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 66 [00:02:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 67 [00:02:42.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 68 [00:02:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [00:02:46.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [00:02:47.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 71 [00:02:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +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 +Info 61 [00:02:36.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 62 [00:02:37.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation +Info 63 [00:02:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 64 [00:02:39.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:02:40.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 66 [00:02:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 67 [00:02:44.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 68 [00:02:45.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 69 [00:02:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations After request //// [/user/username/projects/myproject/dependency/fns.js] "use strict"; @@ -625,12 +623,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 72 [00:02:49.000] response: +Info 70 [00:02:47.000] response: { "response": true, "responseRequired": true } -Info 73 [00:02:50.000] request: +Info 71 [00:02:48.000] request: { "command": "emit-output", "arguments": { @@ -691,7 +689,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 74 [00:02:51.000] response: +Info 72 [00:02:49.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-change-to-dependency.js index 285a68ef1b727..1e1bc541984d3 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -357,7 +355,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "change", "arguments": { @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:59.000] response: +Info 49 [00:01:57.000] response: { "responseRequired": false } -Info 52 [00:02:00.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -463,9 +461,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [00:02:03.000] Different program with same set of files +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:: @@ -492,7 +490,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [00:02:04.000] response: +Info 54 [00:02:02.000] response: { "response": [ { @@ -505,7 +503,7 @@ Info 56 [00:02:04.000] response: ], "responseRequired": true } -Info 57 [00:02:05.000] request: +Info 55 [00:02:03.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -541,18 +539,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [00:02:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 59 [00:02:09.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js -Info 60 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 61 [00:02:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 62 [00:02:15.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation -Info 63 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 64 [00:02:17.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 65 [00:02:18.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 66 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 67 [00:02:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 68 [00:02:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 69 [00:02:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +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 +Info 59 [00:02:12.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 60 [00:02:13.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation +Info 61 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 62 [00:02:15.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 63 [00:02:16.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 64 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:02:20.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 66 [00:02:21.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 67 [00:02:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations After request //// [/user/username/projects/myproject/dependency/fns.js] "use strict"; @@ -597,12 +595,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 70 [00:02:25.000] response: +Info 68 [00:02:23.000] response: { "response": true, "responseRequired": true } -Info 71 [00:02:26.000] request: +Info 69 [00:02:24.000] request: { "command": "emit-output", "arguments": { @@ -664,7 +662,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 72 [00:02:27.000] response: +Info 70 [00:02:25.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-change-to-usage.js index 5621e672b877d..4c8a7ab76f8b3 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -357,7 +355,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "change", "arguments": { @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:59.000] response: +Info 49 [00:01:57.000] response: { "responseRequired": false } -Info 52 [00:02:00.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -489,7 +487,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:02:01.000] response: +Info 51 [00:01:59.000] response: { "response": [ { @@ -502,7 +500,7 @@ Info 53 [00:02:01.000] response: ], "responseRequired": true } -Info 54 [00:02:02.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -538,18 +536,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 55 [00:02:05.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 56 [00:02:06.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js -Info 57 [00:02:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 58 [00:02:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 59 [00:02:12.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation -Info 60 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 61 [00:02:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 62 [00:02:15.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 63 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 64 [00:02:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 65 [00:02:20.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 66 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +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 +Info 56 [00:02:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 57 [00:02:10.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation +Info 58 [00:02:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 59 [00:02:12.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 60 [00:02:13.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 61 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 62 [00:02:17.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 63 [00:02:18.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 64 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations After request //// [/user/username/projects/myproject/dependency/fns.js] "use strict"; @@ -591,12 +589,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 67 [00:02:22.000] response: +Info 65 [00:02:20.000] response: { "response": true, "responseRequired": true } -Info 68 [00:02:23.000] request: +Info 66 [00:02:21.000] request: { "command": "emit-output", "arguments": { @@ -658,7 +656,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 69 [00:02:24.000] response: +Info 67 [00:02:22.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-local-change-to-dependency.js index 43abb46d7b052..ef7277b981a2d 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -357,7 +355,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "change", "arguments": { @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:59.000] response: +Info 49 [00:01:57.000] response: { "responseRequired": false } -Info 52 [00:02:00.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -463,9 +461,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [00:02:03.000] Different program with same set of files +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:: @@ -492,7 +490,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [00:02:04.000] response: +Info 54 [00:02:02.000] response: { "response": [ { @@ -505,7 +503,7 @@ Info 56 [00:02:04.000] response: ], "responseRequired": true } -Info 57 [00:02:05.000] request: +Info 55 [00:02:03.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -541,18 +539,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [00:02:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 59 [00:02:09.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js -Info 60 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 61 [00:02:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 62 [00:02:15.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation -Info 63 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 64 [00:02:17.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 65 [00:02:18.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 66 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 67 [00:02:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 68 [00:02:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 69 [00:02:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +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 +Info 59 [00:02:12.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 60 [00:02:13.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation +Info 61 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 62 [00:02:15.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 63 [00:02:16.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 64 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:02:20.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 66 [00:02:21.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 67 [00:02:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations After request //// [/user/username/projects/myproject/dependency/fns.js] "use strict"; @@ -595,12 +593,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 70 [00:02:25.000] response: +Info 68 [00:02:23.000] response: { "response": true, "responseRequired": true } -Info 71 [00:02:26.000] request: +Info 69 [00:02:24.000] request: { "command": "emit-output", "arguments": { @@ -662,7 +660,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 72 [00:02:27.000] response: +Info 70 [00:02:25.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project-and-local-change-to-usage.js index d5680e4f01718..576c68a54b5df 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -357,7 +355,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "change", "arguments": { @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:59.000] response: +Info 49 [00:01:57.000] response: { "responseRequired": false } -Info 52 [00:02:00.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -489,7 +487,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:02:01.000] response: +Info 51 [00:01:59.000] response: { "response": [ { @@ -502,7 +500,7 @@ Info 53 [00:02:01.000] response: ], "responseRequired": true } -Info 54 [00:02:02.000] request: +Info 52 [00:02:00.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -538,18 +536,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 55 [00:02:05.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 56 [00:02:06.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js -Info 57 [00:02:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 58 [00:02:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 59 [00:02:12.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation -Info 60 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 61 [00:02:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 62 [00:02:15.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 63 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 64 [00:02:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 65 [00:02:20.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 66 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +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 +Info 56 [00:02:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 57 [00:02:10.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation +Info 58 [00:02:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 59 [00:02:12.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 60 [00:02:13.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 61 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 62 [00:02:17.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 63 [00:02:18.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 64 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations After request //// [/user/username/projects/myproject/dependency/fns.js] "use strict"; @@ -591,12 +589,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 67 [00:02:22.000] response: +Info 65 [00:02:20.000] response: { "response": true, "responseRequired": true } -Info 68 [00:02:23.000] request: +Info 66 [00:02:21.000] request: { "command": "emit-output", "arguments": { @@ -658,7 +656,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 69 [00:02:24.000] response: +Info 67 [00:02:22.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-project.js index c71bf920f9cc7..90d2188b5b2e9 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -310,7 +308,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] response: +Info 45 [00:01:31.000] response: { "response": [ { @@ -323,7 +321,7 @@ Info 47 [00:01:33.000] response: ], "responseRequired": true } -Info 48 [00:01:34.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -359,18 +357,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:37.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 50 [00:01:38.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js -Info 51 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 52 [00:01:43.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 53 [00:01:44.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation -Info 54 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 55 [00:01:46.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 56 [00:01:47.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 57 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 58 [00:01:51.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 59 [00:01:52.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 60 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +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 +Info 50 [00:01:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 51 [00:01:42.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation +Info 52 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 53 [00:01:44.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 54 [00:01:45.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 55 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 56 [00:01:49.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 57 [00:01:50.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 58 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations After request //// [/user/username/projects/myproject/dependency/fns.js] "use strict"; @@ -412,12 +410,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 61 [00:01:54.000] response: +Info 59 [00:01:52.000] response: { "response": true, "responseRequired": true } -Info 62 [00:01:55.000] request: +Info 60 [00:01:53.000] request: { "command": "emit-output", "arguments": { @@ -479,7 +477,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 63 [00:01:56.000] response: +Info 61 [00:01:54.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-change-to-dependency.js index 0d73712f3f8ea..b93904e0a76c1 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -357,7 +355,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "change", "arguments": { @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:59.000] response: +Info 49 [00:01:57.000] response: { "responseRequired": false } -Info 52 [00:02:00.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -463,9 +461,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [00:02:03.000] Different program with same set of files +Info 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:: @@ -492,7 +490,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [00:02:04.000] response: +Info 54 [00:02:02.000] response: { "response": [ { @@ -505,7 +503,7 @@ Info 56 [00:02:04.000] response: ], "responseRequired": true } -Info 57 [00:02:05.000] request: +Info 55 [00:02:03.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -567,12 +565,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [00:02:06.000] response: +Info 56 [00:02:04.000] response: { "response": false, "responseRequired": true } -Info 59 [00:02:07.000] request: +Info 57 [00:02:05.000] request: { "command": "emit-output", "arguments": { @@ -634,7 +632,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [00:02:08.000] response: +Info 58 [00:02:06.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-change-to-usage.js index 3e24ae045c911..f63d780f9df06 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -357,7 +355,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "change", "arguments": { @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:59.000] response: +Info 49 [00:01:57.000] response: { "responseRequired": false } -Info 52 [00:02:00.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -463,9 +461,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [00:02:03.000] Different program with same set of files +Info 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:: @@ -492,7 +490,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [00:02:04.000] response: +Info 54 [00:02:02.000] response: { "response": [ { @@ -503,7 +501,7 @@ Info 56 [00:02:04.000] response: ], "responseRequired": true } -Info 57 [00:02:05.000] request: +Info 55 [00:02:03.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -565,12 +563,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [00:02:06.000] response: +Info 56 [00:02:04.000] response: { "response": false, "responseRequired": true } -Info 59 [00:02:07.000] request: +Info 57 [00:02:05.000] request: { "command": "emit-output", "arguments": { @@ -632,7 +630,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [00:02:08.000] response: +Info 58 [00:02:06.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-local-change-to-dependency.js index e9292543a6134..e2223738111d8 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -357,7 +355,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "change", "arguments": { @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:59.000] response: +Info 49 [00:01:57.000] response: { "responseRequired": false } -Info 52 [00:02:00.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -463,9 +461,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [00:02:03.000] Different program with same set of files +Info 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:: @@ -492,7 +490,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [00:02:04.000] response: +Info 54 [00:02:02.000] response: { "response": [ { @@ -503,7 +501,7 @@ Info 56 [00:02:04.000] response: ], "responseRequired": true } -Info 57 [00:02:05.000] request: +Info 55 [00:02:03.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -565,12 +563,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [00:02:06.000] response: +Info 56 [00:02:04.000] response: { "response": false, "responseRequired": true } -Info 59 [00:02:07.000] request: +Info 57 [00:02:05.000] request: { "command": "emit-output", "arguments": { @@ -632,7 +630,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [00:02:08.000] response: +Info 58 [00:02:06.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project-and-local-change-to-usage.js index 062e59f50b84c..6f48266933e9a 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -357,7 +355,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "change", "arguments": { @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:59.000] response: +Info 49 [00:01:57.000] response: { "responseRequired": false } -Info 52 [00:02:00.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -463,9 +461,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [00:02:03.000] Different program with same set of files +Info 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:: @@ -492,7 +490,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [00:02:04.000] response: +Info 54 [00:02:02.000] response: { "response": [ { @@ -503,7 +501,7 @@ Info 56 [00:02:04.000] response: ], "responseRequired": true } -Info 57 [00:02:05.000] request: +Info 55 [00:02:03.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -565,12 +563,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [00:02:06.000] response: +Info 56 [00:02:04.000] response: { "response": false, "responseRequired": true } -Info 59 [00:02:07.000] request: +Info 57 [00:02:05.000] request: { "command": "emit-output", "arguments": { @@ -632,7 +630,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [00:02:08.000] response: +Info 58 [00:02:06.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency-with-usage-project.js index c629af6fb88df..0f41fa036a2b9 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -310,7 +308,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] response: +Info 45 [00:01:31.000] response: { "response": [ { @@ -323,7 +321,7 @@ Info 47 [00:01:33.000] response: ], "responseRequired": true } -Info 48 [00:01:34.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -385,12 +383,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:35.000] response: +Info 47 [00:01:33.000] response: { "response": false, "responseRequired": true } -Info 50 [00:01:36.000] request: +Info 48 [00:01:34.000] request: { "command": "emit-output", "arguments": { @@ -452,7 +450,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:37.000] response: +Info 49 [00:01:35.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency.js index 1c0b8c325d73e..932e23649e5fd 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-dependency.js @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -357,7 +355,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -392,18 +390,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:02:01.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 52 [00:02:02.000] Project: /user/username/projects/myproject/dependency/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/dependency/fns.js -Info 53 [00:02:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.js :: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:07.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 55 [00:02:08.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation -Info 56 [00:02:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 57 [00:02:10.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 58 [00:02:11.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 59 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 60 [00:02:15.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 61 [00:02:16.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 62 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +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 +Info 52 [00:02:05.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 53 [00:02:06.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation +Info 54 [00:02:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 55 [00:02:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 56 [00:02:09.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 57 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 58 [00:02:13.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 59 [00:02:14.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 60 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations After request //// [/user/username/projects/myproject/dependency/fns.js] "use strict"; @@ -445,12 +443,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 63 [00:02:18.000] response: +Info 61 [00:02:16.000] response: { "response": true, "responseRequired": true } -Info 64 [00:02:19.000] request: +Info 62 [00:02:17.000] request: { "command": "emit-output", "arguments": { @@ -511,7 +509,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 65 [00:02:20.000] response: +Info 63 [00:02:18.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-change-to-dependency.js index 1c4d33fb3eb54..ea004bd9e7582 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -357,7 +355,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "change", "arguments": { @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:59.000] response: +Info 49 [00:01:57.000] response: { "responseRequired": false } -Info 52 [00:02:00.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -462,40 +460,40 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [00:02:03.000] Different program with same set of files -Info 56 [00:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 57 [00:02:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 58 [00:02:06.000] Different program with same set of files -Info 59 [00:02:07.000] Before ensureProjectForOpenFiles: -Info 60 [00:02:08.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 60 [00:02:09.000] Files (3) - -Info 60 [00:02:10.000] ----------------------------------------------- -Info 60 [00:02:11.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 60 [00:02:12.000] Files (2) - -Info 60 [00:02:13.000] ----------------------------------------------- -Info 60 [00:02:14.000] Open files: -Info 60 [00:02:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 60 [00:02:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 60 [00:02:17.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 60 [00:02:18.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 60 [00:02:19.000] After ensureProjectForOpenFiles: -Info 61 [00:02:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 61 [00:02:21.000] Files (3) - -Info 61 [00:02:22.000] ----------------------------------------------- -Info 61 [00:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 61 [00:02:24.000] Files (2) - -Info 61 [00:02:25.000] ----------------------------------------------- -Info 61 [00:02:26.000] Open files: -Info 61 [00:02:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 61 [00:02:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 61 [00:02:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 61 [00:02:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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 +Info 54 [00:02:02.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 55 [00:02:03.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:02:04.000] Different program with same set of files +Info 57 [00:02:05.000] Before ensureProjectForOpenFiles: +Info 58 [00:02:06.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 58 [00:02:07.000] Files (3) + +Info 58 [00:02:08.000] ----------------------------------------------- +Info 58 [00:02:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 58 [00:02:10.000] Files (2) + +Info 58 [00:02:11.000] ----------------------------------------------- +Info 58 [00:02:12.000] Open files: +Info 58 [00:02:13.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 58 [00:02:14.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 58 [00:02:15.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 58 [00:02:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 58 [00:02:17.000] After ensureProjectForOpenFiles: +Info 59 [00:02:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 59 [00:02:19.000] Files (3) + +Info 59 [00:02:20.000] ----------------------------------------------- +Info 59 [00:02:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 59 [00:02:22.000] Files (2) + +Info 59 [00:02:23.000] ----------------------------------------------- +Info 59 [00:02:24.000] Open files: +Info 59 [00:02:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 59 [00:02:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 59 [00:02:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 59 [00:02:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -522,7 +520,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [00:02:31.000] response: +Info 59 [00:02:29.000] response: { "response": [ { @@ -535,7 +533,7 @@ Info 61 [00:02:31.000] response: ], "responseRequired": true } -Info 62 [00:02:32.000] request: +Info 60 [00:02:30.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -570,9 +568,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [00:02:35.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 64 [00:02:36.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 65 [00:02:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +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 After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -607,12 +605,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 66 [00:02:38.000] response: +Info 64 [00:02:36.000] response: { "response": true, "responseRequired": true } -Info 67 [00:02:39.000] request: +Info 65 [00:02:37.000] request: { "command": "emit-output", "arguments": { @@ -673,7 +671,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 68 [00:02:40.000] response: +Info 66 [00:02:38.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-change-to-usage.js index aaa0baa8ee489..a486b26199ec0 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -357,7 +355,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "change", "arguments": { @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:59.000] response: +Info 49 [00:01:57.000] response: { "responseRequired": false } -Info 52 [00:02:00.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -462,37 +460,37 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [00:02:03.000] Different program with same set of files -Info 56 [00:02:04.000] Before ensureProjectForOpenFiles: -Info 57 [00:02:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 57 [00:02:06.000] Files (3) - -Info 57 [00:02:07.000] ----------------------------------------------- -Info 57 [00:02:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 57 [00:02:09.000] Files (2) - -Info 57 [00:02:10.000] ----------------------------------------------- -Info 57 [00:02:11.000] Open files: -Info 57 [00:02:12.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 57 [00:02:13.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 57 [00:02:14.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 57 [00:02:15.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 57 [00:02:16.000] After ensureProjectForOpenFiles: -Info 58 [00:02:17.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 58 [00:02:18.000] Files (3) - -Info 58 [00:02:19.000] ----------------------------------------------- -Info 58 [00:02:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 58 [00:02:21.000] Files (2) - -Info 58 [00:02:22.000] ----------------------------------------------- -Info 58 [00:02:23.000] Open files: -Info 58 [00:02:24.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 58 [00:02:25.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 58 [00:02:26.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 58 [00:02:27.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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 +Info 54 [00:02:02.000] Before ensureProjectForOpenFiles: +Info 55 [00:02:03.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 55 [00:02:04.000] Files (3) + +Info 55 [00:02:05.000] ----------------------------------------------- +Info 55 [00:02:06.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 55 [00:02:07.000] Files (2) + +Info 55 [00:02:08.000] ----------------------------------------------- +Info 55 [00:02:09.000] Open files: +Info 55 [00:02:10.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 55 [00:02:11.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 55 [00:02:12.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 55 [00:02:13.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 55 [00:02:14.000] After ensureProjectForOpenFiles: +Info 56 [00:02:15.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 56 [00:02:16.000] Files (3) + +Info 56 [00:02:17.000] ----------------------------------------------- +Info 56 [00:02:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 56 [00:02:19.000] Files (2) + +Info 56 [00:02:20.000] ----------------------------------------------- +Info 56 [00:02:21.000] Open files: +Info 56 [00:02:22.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 56 [00:02:23.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 56 [00:02:24.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 56 [00:02:25.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -519,7 +517,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [00:02:28.000] response: +Info 56 [00:02:26.000] response: { "response": [ { @@ -532,7 +530,7 @@ Info 58 [00:02:28.000] response: ], "responseRequired": true } -Info 59 [00:02:29.000] request: +Info 57 [00:02:27.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -567,9 +565,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [00:02:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 61 [00:02:33.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 62 [00:02:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +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 After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -607,12 +605,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [00:02:35.000] response: +Info 61 [00:02:33.000] response: { "response": true, "responseRequired": true } -Info 64 [00:02:36.000] request: +Info 62 [00:02:34.000] request: { "command": "emit-output", "arguments": { @@ -673,7 +671,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 65 [00:02:37.000] response: +Info 63 [00:02:35.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-dependency-with-file.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-dependency-with-file.js index 36fa4d2ff4098..c57f5171631a5 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -357,7 +355,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "change", "arguments": { @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:59.000] response: +Info 49 [00:01:57.000] response: { "responseRequired": false } -Info 52 [00:02:00.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -463,9 +461,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [00:02:03.000] Different program with same set of files +Info 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:: @@ -492,7 +490,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [00:02:04.000] response: +Info 54 [00:02:02.000] response: { "response": [ { @@ -505,7 +503,7 @@ Info 56 [00:02:04.000] response: ], "responseRequired": true } -Info 57 [00:02:05.000] request: +Info 55 [00:02:03.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -541,9 +539,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [00:02:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 59 [00:02:09.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 60 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +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 After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -578,12 +576,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [00:02:11.000] response: +Info 59 [00:02:09.000] response: { "response": true, "responseRequired": true } -Info 62 [00:02:12.000] request: +Info 60 [00:02:10.000] request: { "command": "emit-output", "arguments": { @@ -645,7 +643,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [00:02:13.000] response: +Info 61 [00:02:11.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-dependency.js index 862c7c8a7b7b9..1ff711f23557e 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -357,7 +355,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "change", "arguments": { @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:59.000] response: +Info 49 [00:01:57.000] response: { "responseRequired": false } -Info 52 [00:02:00.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -462,40 +460,40 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [00:02:03.000] Different program with same set of files -Info 56 [00:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 57 [00:02:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 58 [00:02:06.000] Different program with same set of files -Info 59 [00:02:07.000] Before ensureProjectForOpenFiles: -Info 60 [00:02:08.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 60 [00:02:09.000] Files (3) - -Info 60 [00:02:10.000] ----------------------------------------------- -Info 60 [00:02:11.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 60 [00:02:12.000] Files (2) - -Info 60 [00:02:13.000] ----------------------------------------------- -Info 60 [00:02:14.000] Open files: -Info 60 [00:02:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 60 [00:02:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 60 [00:02:17.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 60 [00:02:18.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 60 [00:02:19.000] After ensureProjectForOpenFiles: -Info 61 [00:02:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 61 [00:02:21.000] Files (3) - -Info 61 [00:02:22.000] ----------------------------------------------- -Info 61 [00:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 61 [00:02:24.000] Files (2) - -Info 61 [00:02:25.000] ----------------------------------------------- -Info 61 [00:02:26.000] Open files: -Info 61 [00:02:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 61 [00:02:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 61 [00:02:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 61 [00:02:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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 +Info 54 [00:02:02.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 55 [00:02:03.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 56 [00:02:04.000] Different program with same set of files +Info 57 [00:02:05.000] Before ensureProjectForOpenFiles: +Info 58 [00:02:06.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 58 [00:02:07.000] Files (3) + +Info 58 [00:02:08.000] ----------------------------------------------- +Info 58 [00:02:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 58 [00:02:10.000] Files (2) + +Info 58 [00:02:11.000] ----------------------------------------------- +Info 58 [00:02:12.000] Open files: +Info 58 [00:02:13.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 58 [00:02:14.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 58 [00:02:15.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 58 [00:02:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 58 [00:02:17.000] After ensureProjectForOpenFiles: +Info 59 [00:02:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 59 [00:02:19.000] Files (3) + +Info 59 [00:02:20.000] ----------------------------------------------- +Info 59 [00:02:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 59 [00:02:22.000] Files (2) + +Info 59 [00:02:23.000] ----------------------------------------------- +Info 59 [00:02:24.000] Open files: +Info 59 [00:02:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 59 [00:02:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 59 [00:02:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 59 [00:02:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -522,7 +520,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [00:02:31.000] response: +Info 59 [00:02:29.000] response: { "response": [ { @@ -535,7 +533,7 @@ Info 61 [00:02:31.000] response: ], "responseRequired": true } -Info 62 [00:02:32.000] request: +Info 60 [00:02:30.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -570,9 +568,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [00:02:35.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 64 [00:02:36.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 65 [00:02:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +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 After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -607,12 +605,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 66 [00:02:38.000] response: +Info 64 [00:02:36.000] response: { "response": true, "responseRequired": true } -Info 67 [00:02:39.000] request: +Info 65 [00:02:37.000] request: { "command": "emit-output", "arguments": { @@ -673,7 +671,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 68 [00:02:40.000] response: +Info 66 [00:02:38.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-usage-with-project.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-usage-with-project.js index c7ff7875a4ca4..8ee8a8bb68f0a 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -357,7 +355,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "change", "arguments": { @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:59.000] response: +Info 49 [00:01:57.000] response: { "responseRequired": false } -Info 52 [00:02:00.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -463,9 +461,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [00:02:03.000] Different program with same set of files +Info 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:: @@ -492,7 +490,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [00:02:04.000] response: +Info 54 [00:02:02.000] response: { "response": [ { @@ -505,7 +503,7 @@ Info 56 [00:02:04.000] response: ], "responseRequired": true } -Info 57 [00:02:05.000] request: +Info 55 [00:02:03.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -541,9 +539,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [00:02:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 59 [00:02:09.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 60 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +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 After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -579,12 +577,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [00:02:11.000] response: +Info 59 [00:02:09.000] response: { "response": true, "responseRequired": true } -Info 62 [00:02:12.000] request: +Info 60 [00:02:10.000] request: { "command": "emit-output", "arguments": { @@ -646,7 +644,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [00:02:13.000] response: +Info 61 [00:02:11.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-and-local-change-to-usage.js index 68a5ba4c64157..d5c683392720c 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -357,7 +355,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "change", "arguments": { @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:59.000] response: +Info 49 [00:01:57.000] response: { "responseRequired": false } -Info 52 [00:02:00.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -462,37 +460,37 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [00:02:03.000] Different program with same set of files -Info 56 [00:02:04.000] Before ensureProjectForOpenFiles: -Info 57 [00:02:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 57 [00:02:06.000] Files (3) - -Info 57 [00:02:07.000] ----------------------------------------------- -Info 57 [00:02:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 57 [00:02:09.000] Files (2) - -Info 57 [00:02:10.000] ----------------------------------------------- -Info 57 [00:02:11.000] Open files: -Info 57 [00:02:12.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 57 [00:02:13.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 57 [00:02:14.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 57 [00:02:15.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 57 [00:02:16.000] After ensureProjectForOpenFiles: -Info 58 [00:02:17.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 58 [00:02:18.000] Files (3) - -Info 58 [00:02:19.000] ----------------------------------------------- -Info 58 [00:02:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 58 [00:02:21.000] Files (2) - -Info 58 [00:02:22.000] ----------------------------------------------- -Info 58 [00:02:23.000] Open files: -Info 58 [00:02:24.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 58 [00:02:25.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 58 [00:02:26.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 58 [00:02:27.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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 +Info 54 [00:02:02.000] Before ensureProjectForOpenFiles: +Info 55 [00:02:03.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 55 [00:02:04.000] Files (3) + +Info 55 [00:02:05.000] ----------------------------------------------- +Info 55 [00:02:06.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 55 [00:02:07.000] Files (2) + +Info 55 [00:02:08.000] ----------------------------------------------- +Info 55 [00:02:09.000] Open files: +Info 55 [00:02:10.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 55 [00:02:11.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 55 [00:02:12.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 55 [00:02:13.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 55 [00:02:14.000] After ensureProjectForOpenFiles: +Info 56 [00:02:15.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 56 [00:02:16.000] Files (3) + +Info 56 [00:02:17.000] ----------------------------------------------- +Info 56 [00:02:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 56 [00:02:19.000] Files (2) + +Info 56 [00:02:20.000] ----------------------------------------------- +Info 56 [00:02:21.000] Open files: +Info 56 [00:02:22.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 56 [00:02:23.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 56 [00:02:24.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 56 [00:02:25.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -519,7 +517,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [00:02:28.000] response: +Info 56 [00:02:26.000] response: { "response": [ { @@ -532,7 +530,7 @@ Info 58 [00:02:28.000] response: ], "responseRequired": true } -Info 59 [00:02:29.000] request: +Info 57 [00:02:27.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -567,9 +565,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [00:02:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 61 [00:02:33.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 62 [00:02:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +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 After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -605,12 +603,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [00:02:35.000] response: +Info 61 [00:02:33.000] response: { "response": true, "responseRequired": true } -Info 64 [00:02:36.000] request: +Info 62 [00:02:34.000] request: { "command": "emit-output", "arguments": { @@ -671,7 +669,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 65 [00:02:37.000] response: +Info 63 [00:02:35.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project-and-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project-and-change-to-dependency.js index cc6597f1d8b8b..a7d08da33498a 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -357,7 +355,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "change", "arguments": { @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:59.000] response: +Info 49 [00:01:57.000] response: { "responseRequired": false } -Info 52 [00:02:00.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -463,9 +461,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [00:02:03.000] Different program with same set of files +Info 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:: @@ -492,7 +490,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [00:02:04.000] response: +Info 54 [00:02:02.000] response: { "response": [ { @@ -505,7 +503,7 @@ Info 56 [00:02:04.000] response: ], "responseRequired": true } -Info 57 [00:02:05.000] request: +Info 55 [00:02:03.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -541,9 +539,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [00:02:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 59 [00:02:09.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 60 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +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 After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -578,12 +576,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [00:02:11.000] response: +Info 59 [00:02:09.000] response: { "response": true, "responseRequired": true } -Info 62 [00:02:12.000] request: +Info 60 [00:02:10.000] request: { "command": "emit-output", "arguments": { @@ -645,7 +643,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [00:02:13.000] response: +Info 61 [00:02:11.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project-and-change-to-usage.js index fa7f8381ef8e0..870b2484a7200 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -357,7 +355,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "change", "arguments": { @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:59.000] response: +Info 49 [00:01:57.000] response: { "responseRequired": false } -Info 52 [00:02:00.000] request: +Info 50 [00:01:58.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -463,9 +461,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 54 [00:02:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 55 [00:02:03.000] Different program with same set of files +Info 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:: @@ -492,7 +490,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [00:02:04.000] response: +Info 54 [00:02:02.000] response: { "response": [ { @@ -505,7 +503,7 @@ Info 56 [00:02:04.000] response: ], "responseRequired": true } -Info 57 [00:02:05.000] request: +Info 55 [00:02:03.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -541,9 +539,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [00:02:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 59 [00:02:09.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 60 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +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 After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -581,12 +579,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [00:02:11.000] response: +Info 59 [00:02:09.000] response: { "response": true, "responseRequired": true } -Info 62 [00:02:12.000] request: +Info 60 [00:02:10.000] request: { "command": "emit-output", "arguments": { @@ -648,7 +646,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [00:02:13.000] response: +Info 61 [00:02:11.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage-with-project.js index ace175eb006e0..2b4188dc938f6 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -310,7 +308,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] response: +Info 45 [00:01:31.000] response: { "response": [ { @@ -323,7 +321,7 @@ Info 47 [00:01:33.000] response: ], "responseRequired": true } -Info 48 [00:01:34.000] request: +Info 46 [00:01:32.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -359,9 +357,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:37.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 50 [00:01:38.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 51 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +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 After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -396,12 +394,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 52 [00:01:40.000] response: +Info 50 [00:01:38.000] response: { "response": true, "responseRequired": true } -Info 53 [00:01:41.000] request: +Info 51 [00:01:39.000] request: { "command": "emit-output", "arguments": { @@ -463,7 +461,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 54 [00:01:42.000] response: +Info 52 [00:01:40.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage.js index 0e280410715dc..5463e2ac0a627 100644 --- a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage.js +++ b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/save-on-usage.js @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -180,19 +179,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -202,22 +200,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -244,11 +242,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -283,34 +281,34 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:34.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 48 [00:01:35.000] Files (3) - -Info 48 [00:01:36.000] ----------------------------------------------- -Info 48 [00:01:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:38.000] Files (2) - -Info 48 [00:01:39.000] ----------------------------------------------- -Info 48 [00:01:40.000] Open files: -Info 48 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 48 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 48 [00:01:43.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 48 [00:01:44.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:01:45.000] After ensureProjectForOpenFiles: -Info 49 [00:01:46.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 49 [00:01:47.000] Files (3) - -Info 49 [00:01:48.000] ----------------------------------------------- -Info 49 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 49 [00:01:50.000] Files (2) - -Info 49 [00:01:51.000] ----------------------------------------------- -Info 49 [00:01:52.000] Open files: -Info 49 [00:01:53.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 49 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 49 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 49 [00:01:56.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +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) + +Info 46 [00:01:34.000] ----------------------------------------------- +Info 46 [00:01:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:36.000] Files (2) + +Info 46 [00:01:37.000] ----------------------------------------------- +Info 46 [00:01:38.000] Open files: +Info 46 [00:01:39.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 46 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 46 [00:01:41.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 46 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:01:43.000] After ensureProjectForOpenFiles: +Info 47 [00:01:44.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 47 [00:01:45.000] Files (3) + +Info 47 [00:01:46.000] ----------------------------------------------- +Info 47 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 47 [00:01:48.000] Files (2) + +Info 47 [00:01:49.000] ----------------------------------------------- +Info 47 [00:01:50.000] Open files: +Info 47 [00:01:51.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 47 [00:01:52.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 47 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 47 [00:01:54.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:57.000] response: +Info 47 [00:01:55.000] response: { "response": [ { @@ -350,7 +348,7 @@ Info 49 [00:01:57.000] response: ], "responseRequired": true } -Info 50 [00:01:58.000] request: +Info 48 [00:01:56.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -385,9 +383,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:02:01.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 52 [00:02:02.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 53 [00:02:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +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 After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -422,12 +420,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 54 [00:02:04.000] response: +Info 52 [00:02:02.000] response: { "response": true, "responseRequired": true } -Info 55 [00:02:05.000] request: +Info 53 [00:02:03.000] request: { "command": "emit-output", "arguments": { @@ -488,7 +486,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [00:02:06.000] response: +Info 54 [00:02:04.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-dependency.js index 985282f992732..d4e57c2c4aca6 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +179,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [00:01:06.000] Files (3) +Info 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) -Info 30 [00:01:07.000] ----------------------------------------------- -Info 30 [00:01:08.000] Open files: -Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [00:01:11.000] After ensureProjectForOpenFiles: -Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:13.000] Files (3) +Info 29 [00:01:06.000] ----------------------------------------------- +Info 29 [00:01:07.000] Open files: +Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:01:10.000] After ensureProjectForOpenFiles: +Info 30 [00:01:11.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:12.000] Files (3) -Info 31 [00:01:14.000] ----------------------------------------------- -Info 31 [00:01:15.000] Open files: -Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:13.000] ----------------------------------------------- +Info 30 [00:01:14.000] Open files: +Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +221,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:18.000] response: +Info 30 [00:01:17.000] response: { "response": [ { @@ -235,11 +234,11 @@ Info 31 [00:01:18.000] response: ], "responseRequired": true } -Info 32 [00:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 33 [00:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json -Info 34 [00:01:24.000] Scheduled: *ensureProjectForOpenFiles* -Info 35 [00:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 36 [00:01:26.000] request: +Info 31 [00:01:21.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:22.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json +Info 33 [00:01:23.000] Scheduled: *ensureProjectForOpenFiles* +Info 34 [00:01:24.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 35 [00:01:25.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -279,25 +278,25 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 38 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 39 [00:01:29.000] Different program with same set of files -Info 40 [00:01:30.000] Before ensureProjectForOpenFiles: -Info 41 [00:01:31.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 41 [00:01:32.000] Files (3) - -Info 41 [00:01:33.000] ----------------------------------------------- -Info 41 [00:01:34.000] Open files: -Info 41 [00:01:35.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 41 [00:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 41 [00:01:37.000] After ensureProjectForOpenFiles: -Info 42 [00:01:38.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 42 [00:01:39.000] Files (3) - -Info 42 [00:01:40.000] ----------------------------------------------- -Info 42 [00:01:41.000] Open files: -Info 42 [00:01:42.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 42 [00:01:43.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +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 +Info 39 [00:01:29.000] Before ensureProjectForOpenFiles: +Info 40 [00:01:30.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 40 [00:01:31.000] Files (3) + +Info 40 [00:01:32.000] ----------------------------------------------- +Info 40 [00:01:33.000] Open files: +Info 40 [00:01:34.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 40 [00:01:35.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 40 [00:01:36.000] After ensureProjectForOpenFiles: +Info 41 [00:01:37.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 41 [00:01:38.000] Files (3) + +Info 41 [00:01:39.000] ----------------------------------------------- +Info 41 [00:01:40.000] Open files: +Info 41 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 41 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -324,7 +323,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [00:01:44.000] response: +Info 41 [00:01:43.000] response: { "response": [ { @@ -337,7 +336,7 @@ Info 42 [00:01:44.000] response: ], "responseRequired": true } -Info 43 [00:01:45.000] request: +Info 42 [00:01:44.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -398,12 +397,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 44 [00:01:46.000] response: +Info 43 [00:01:45.000] response: { "response": false, "responseRequired": true } -Info 45 [00:01:47.000] request: +Info 44 [00:01:46.000] request: { "command": "emit-output", "arguments": { @@ -464,7 +463,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [00:01:48.000] response: +Info 45 [00:01:47.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-change-to-usage.js index c04f883aaf9dc..227cf0d18209f 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +179,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [00:01:06.000] Files (3) +Info 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) -Info 30 [00:01:07.000] ----------------------------------------------- -Info 30 [00:01:08.000] Open files: -Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [00:01:11.000] After ensureProjectForOpenFiles: -Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:13.000] Files (3) +Info 29 [00:01:06.000] ----------------------------------------------- +Info 29 [00:01:07.000] Open files: +Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:01:10.000] After ensureProjectForOpenFiles: +Info 30 [00:01:11.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:12.000] Files (3) -Info 31 [00:01:14.000] ----------------------------------------------- -Info 31 [00:01:15.000] Open files: -Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:13.000] ----------------------------------------------- +Info 30 [00:01:14.000] Open files: +Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +221,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:18.000] response: +Info 30 [00:01:17.000] response: { "response": [ { @@ -235,7 +234,7 @@ Info 31 [00:01:18.000] response: ], "responseRequired": true } -Info 32 [00:01:19.000] request: +Info 31 [00:01:18.000] request: { "command": "change", "arguments": { @@ -301,11 +300,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [00:01:20.000] response: +Info 32 [00:01:19.000] response: { "responseRequired": false } -Info 34 [00:01:21.000] request: +Info 33 [00:01:20.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -340,25 +339,25 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 36 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 37 [00:01:24.000] Different program with same set of files -Info 38 [00:01:25.000] Before ensureProjectForOpenFiles: -Info 39 [00:01:26.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 39 [00:01:27.000] Files (3) - -Info 39 [00:01:28.000] ----------------------------------------------- -Info 39 [00:01:29.000] Open files: -Info 39 [00:01:30.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 39 [00:01:31.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 39 [00:01:32.000] After ensureProjectForOpenFiles: -Info 40 [00:01:33.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 40 [00:01:34.000] Files (3) - -Info 40 [00:01:35.000] ----------------------------------------------- -Info 40 [00:01:36.000] Open files: -Info 40 [00:01:37.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 40 [00:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +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 +Info 37 [00:01:24.000] Before ensureProjectForOpenFiles: +Info 38 [00:01:25.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 38 [00:01:26.000] Files (3) + +Info 38 [00:01:27.000] ----------------------------------------------- +Info 38 [00:01:28.000] Open files: +Info 38 [00:01:29.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 38 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 38 [00:01:31.000] After ensureProjectForOpenFiles: +Info 39 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 39 [00:01:33.000] Files (3) + +Info 39 [00:01:34.000] ----------------------------------------------- +Info 39 [00:01:35.000] Open files: +Info 39 [00:01:36.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 39 [00:01:37.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -385,7 +384,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [00:01:39.000] response: +Info 39 [00:01:38.000] response: { "response": [ { @@ -396,7 +395,7 @@ Info 40 [00:01:39.000] response: ], "responseRequired": true } -Info 41 [00:01:40.000] request: +Info 40 [00:01:39.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -457,12 +456,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [00:01:41.000] response: +Info 41 [00:01:40.000] response: { "response": false, "responseRequired": true } -Info 43 [00:01:42.000] request: +Info 42 [00:01:41.000] request: { "command": "emit-output", "arguments": { @@ -523,7 +522,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 44 [00:01:43.000] response: +Info 43 [00:01:42.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-dependency.js index 583861fcc8b4a..d060f35b67027 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +179,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [00:01:06.000] Files (3) +Info 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) -Info 30 [00:01:07.000] ----------------------------------------------- -Info 30 [00:01:08.000] Open files: -Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [00:01:11.000] After ensureProjectForOpenFiles: -Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:13.000] Files (3) +Info 29 [00:01:06.000] ----------------------------------------------- +Info 29 [00:01:07.000] Open files: +Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:01:10.000] After ensureProjectForOpenFiles: +Info 30 [00:01:11.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:12.000] Files (3) -Info 31 [00:01:14.000] ----------------------------------------------- -Info 31 [00:01:15.000] Open files: -Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:13.000] ----------------------------------------------- +Info 30 [00:01:14.000] Open files: +Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +221,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:18.000] response: +Info 30 [00:01:17.000] response: { "response": [ { @@ -235,11 +234,11 @@ Info 31 [00:01:18.000] response: ], "responseRequired": true } -Info 32 [00:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 33 [00:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json -Info 34 [00:01:24.000] Scheduled: *ensureProjectForOpenFiles* -Info 35 [00:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 36 [00:01:26.000] request: +Info 31 [00:01:21.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:22.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json +Info 33 [00:01:23.000] Scheduled: *ensureProjectForOpenFiles* +Info 34 [00:01:24.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 35 [00:01:25.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -279,25 +278,25 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 38 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 39 [00:01:29.000] Different program with same set of files -Info 40 [00:01:30.000] Before ensureProjectForOpenFiles: -Info 41 [00:01:31.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 41 [00:01:32.000] Files (3) - -Info 41 [00:01:33.000] ----------------------------------------------- -Info 41 [00:01:34.000] Open files: -Info 41 [00:01:35.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 41 [00:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 41 [00:01:37.000] After ensureProjectForOpenFiles: -Info 42 [00:01:38.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 42 [00:01:39.000] Files (3) - -Info 42 [00:01:40.000] ----------------------------------------------- -Info 42 [00:01:41.000] Open files: -Info 42 [00:01:42.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 42 [00:01:43.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +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 +Info 39 [00:01:29.000] Before ensureProjectForOpenFiles: +Info 40 [00:01:30.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 40 [00:01:31.000] Files (3) + +Info 40 [00:01:32.000] ----------------------------------------------- +Info 40 [00:01:33.000] Open files: +Info 40 [00:01:34.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 40 [00:01:35.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 40 [00:01:36.000] After ensureProjectForOpenFiles: +Info 41 [00:01:37.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 41 [00:01:38.000] Files (3) + +Info 41 [00:01:39.000] ----------------------------------------------- +Info 41 [00:01:40.000] Open files: +Info 41 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 41 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -324,7 +323,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [00:01:44.000] response: +Info 41 [00:01:43.000] response: { "response": [ { @@ -335,7 +334,7 @@ Info 42 [00:01:44.000] response: ], "responseRequired": true } -Info 43 [00:01:45.000] request: +Info 42 [00:01:44.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -396,12 +395,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 44 [00:01:46.000] response: +Info 43 [00:01:45.000] response: { "response": false, "responseRequired": true } -Info 45 [00:01:47.000] request: +Info 44 [00:01:46.000] request: { "command": "emit-output", "arguments": { @@ -462,7 +461,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [00:01:48.000] response: +Info 45 [00:01:47.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-and-local-change-to-usage.js index 4604d8d643b73..aaaaa3a1792fa 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +179,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [00:01:06.000] Files (3) +Info 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) -Info 30 [00:01:07.000] ----------------------------------------------- -Info 30 [00:01:08.000] Open files: -Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [00:01:11.000] After ensureProjectForOpenFiles: -Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:13.000] Files (3) +Info 29 [00:01:06.000] ----------------------------------------------- +Info 29 [00:01:07.000] Open files: +Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:01:10.000] After ensureProjectForOpenFiles: +Info 30 [00:01:11.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:12.000] Files (3) -Info 31 [00:01:14.000] ----------------------------------------------- -Info 31 [00:01:15.000] Open files: -Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:13.000] ----------------------------------------------- +Info 30 [00:01:14.000] Open files: +Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +221,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:18.000] response: +Info 30 [00:01:17.000] response: { "response": [ { @@ -235,7 +234,7 @@ Info 31 [00:01:18.000] response: ], "responseRequired": true } -Info 32 [00:01:19.000] request: +Info 31 [00:01:18.000] request: { "command": "change", "arguments": { @@ -301,11 +300,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [00:01:20.000] response: +Info 32 [00:01:19.000] response: { "responseRequired": false } -Info 34 [00:01:21.000] request: +Info 33 [00:01:20.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -340,25 +339,25 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 36 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 37 [00:01:24.000] Different program with same set of files -Info 38 [00:01:25.000] Before ensureProjectForOpenFiles: -Info 39 [00:01:26.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 39 [00:01:27.000] Files (3) - -Info 39 [00:01:28.000] ----------------------------------------------- -Info 39 [00:01:29.000] Open files: -Info 39 [00:01:30.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 39 [00:01:31.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 39 [00:01:32.000] After ensureProjectForOpenFiles: -Info 40 [00:01:33.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 40 [00:01:34.000] Files (3) - -Info 40 [00:01:35.000] ----------------------------------------------- -Info 40 [00:01:36.000] Open files: -Info 40 [00:01:37.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 40 [00:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +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 +Info 37 [00:01:24.000] Before ensureProjectForOpenFiles: +Info 38 [00:01:25.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 38 [00:01:26.000] Files (3) + +Info 38 [00:01:27.000] ----------------------------------------------- +Info 38 [00:01:28.000] Open files: +Info 38 [00:01:29.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 38 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 38 [00:01:31.000] After ensureProjectForOpenFiles: +Info 39 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 39 [00:01:33.000] Files (3) + +Info 39 [00:01:34.000] ----------------------------------------------- +Info 39 [00:01:35.000] Open files: +Info 39 [00:01:36.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 39 [00:01:37.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -385,7 +384,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [00:01:39.000] response: +Info 39 [00:01:38.000] response: { "response": [ { @@ -396,7 +395,7 @@ Info 40 [00:01:39.000] response: ], "responseRequired": true } -Info 41 [00:01:40.000] request: +Info 40 [00:01:39.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -457,12 +456,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [00:01:41.000] response: +Info 41 [00:01:40.000] response: { "response": false, "responseRequired": true } -Info 43 [00:01:42.000] request: +Info 42 [00:01:41.000] request: { "command": "emit-output", "arguments": { @@ -523,7 +522,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 44 [00:01:43.000] response: +Info 43 [00:01:42.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-dependency.js index 54098cdf6b724..fdfc05040a715 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +179,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [00:01:06.000] Files (3) +Info 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) -Info 30 [00:01:07.000] ----------------------------------------------- -Info 30 [00:01:08.000] Open files: -Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [00:01:11.000] After ensureProjectForOpenFiles: -Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:13.000] Files (3) +Info 29 [00:01:06.000] ----------------------------------------------- +Info 29 [00:01:07.000] Open files: +Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:01:10.000] After ensureProjectForOpenFiles: +Info 30 [00:01:11.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:12.000] Files (3) -Info 31 [00:01:14.000] ----------------------------------------------- -Info 31 [00:01:15.000] Open files: -Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:13.000] ----------------------------------------------- +Info 30 [00:01:14.000] Open files: +Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +221,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:18.000] response: +Info 30 [00:01:17.000] response: { "response": [ { @@ -235,11 +234,11 @@ Info 31 [00:01:18.000] response: ], "responseRequired": true } -Info 32 [00:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 33 [00:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json -Info 34 [00:01:24.000] Scheduled: *ensureProjectForOpenFiles* -Info 35 [00:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 36 [00:01:26.000] request: +Info 31 [00:01:21.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:22.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json +Info 33 [00:01:23.000] Scheduled: *ensureProjectForOpenFiles* +Info 34 [00:01:24.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 35 [00:01:25.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -280,9 +279,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 38 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 39 [00:01:29.000] Different program with same set of files +Info 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:: @@ -309,7 +308,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [00:01:30.000] response: +Info 39 [00:01:29.000] response: { "response": [ { @@ -322,7 +321,7 @@ Info 40 [00:01:30.000] response: ], "responseRequired": true } -Info 41 [00:01:31.000] request: +Info 40 [00:01:30.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -384,12 +383,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [00:01:32.000] response: +Info 41 [00:01:31.000] response: { "response": false, "responseRequired": true } -Info 43 [00:01:33.000] request: +Info 42 [00:01:32.000] request: { "command": "emit-output", "arguments": { @@ -451,7 +450,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 44 [00:01:34.000] response: +Info 43 [00:01:33.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-change-to-usage.js index 232bf4687dad4..693570fca70c6 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +179,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [00:01:06.000] Files (3) +Info 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) -Info 30 [00:01:07.000] ----------------------------------------------- -Info 30 [00:01:08.000] Open files: -Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [00:01:11.000] After ensureProjectForOpenFiles: -Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:13.000] Files (3) +Info 29 [00:01:06.000] ----------------------------------------------- +Info 29 [00:01:07.000] Open files: +Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:01:10.000] After ensureProjectForOpenFiles: +Info 30 [00:01:11.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:12.000] Files (3) -Info 31 [00:01:14.000] ----------------------------------------------- -Info 31 [00:01:15.000] Open files: -Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:13.000] ----------------------------------------------- +Info 30 [00:01:14.000] Open files: +Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +221,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:18.000] response: +Info 30 [00:01:17.000] response: { "response": [ { @@ -235,7 +234,7 @@ Info 31 [00:01:18.000] response: ], "responseRequired": true } -Info 32 [00:01:19.000] request: +Info 31 [00:01:18.000] request: { "command": "change", "arguments": { @@ -301,11 +300,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [00:01:20.000] response: +Info 32 [00:01:19.000] response: { "responseRequired": false } -Info 34 [00:01:21.000] request: +Info 33 [00:01:20.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -341,9 +340,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 36 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 37 [00:01:24.000] Different program with same set of files +Info 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:: @@ -370,7 +369,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 38 [00:01:25.000] response: +Info 37 [00:01:24.000] response: { "response": [ { @@ -381,7 +380,7 @@ Info 38 [00:01:25.000] response: ], "responseRequired": true } -Info 39 [00:01:26.000] request: +Info 38 [00:01:25.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -443,12 +442,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [00:01:27.000] response: +Info 39 [00:01:26.000] response: { "response": false, "responseRequired": true } -Info 41 [00:01:28.000] request: +Info 40 [00:01:27.000] request: { "command": "emit-output", "arguments": { @@ -510,7 +509,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [00:01:29.000] response: +Info 41 [00:01:28.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-dependency.js index 8d6a3efeb0d95..afea809a3bffc 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +179,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [00:01:06.000] Files (3) +Info 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) -Info 30 [00:01:07.000] ----------------------------------------------- -Info 30 [00:01:08.000] Open files: -Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [00:01:11.000] After ensureProjectForOpenFiles: -Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:13.000] Files (3) +Info 29 [00:01:06.000] ----------------------------------------------- +Info 29 [00:01:07.000] Open files: +Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:01:10.000] After ensureProjectForOpenFiles: +Info 30 [00:01:11.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:12.000] Files (3) -Info 31 [00:01:14.000] ----------------------------------------------- -Info 31 [00:01:15.000] Open files: -Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:13.000] ----------------------------------------------- +Info 30 [00:01:14.000] Open files: +Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +221,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:18.000] response: +Info 30 [00:01:17.000] response: { "response": [ { @@ -235,11 +234,11 @@ Info 31 [00:01:18.000] response: ], "responseRequired": true } -Info 32 [00:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 33 [00:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json -Info 34 [00:01:24.000] Scheduled: *ensureProjectForOpenFiles* -Info 35 [00:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 36 [00:01:26.000] request: +Info 31 [00:01:21.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:22.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json +Info 33 [00:01:23.000] Scheduled: *ensureProjectForOpenFiles* +Info 34 [00:01:24.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 35 [00:01:25.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -280,9 +279,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 38 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 39 [00:01:29.000] Different program with same set of files +Info 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:: @@ -309,7 +308,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [00:01:30.000] response: +Info 39 [00:01:29.000] response: { "response": [ { @@ -320,7 +319,7 @@ Info 40 [00:01:30.000] response: ], "responseRequired": true } -Info 41 [00:01:31.000] request: +Info 40 [00:01:30.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -382,12 +381,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [00:01:32.000] response: +Info 41 [00:01:31.000] response: { "response": false, "responseRequired": true } -Info 43 [00:01:33.000] request: +Info 42 [00:01:32.000] request: { "command": "emit-output", "arguments": { @@ -449,7 +448,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 44 [00:01:34.000] response: +Info 43 [00:01:33.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project-and-local-change-to-usage.js index 3290e1c85a780..4bddd80c41c9d 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +179,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [00:01:06.000] Files (3) +Info 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) -Info 30 [00:01:07.000] ----------------------------------------------- -Info 30 [00:01:08.000] Open files: -Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [00:01:11.000] After ensureProjectForOpenFiles: -Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:13.000] Files (3) +Info 29 [00:01:06.000] ----------------------------------------------- +Info 29 [00:01:07.000] Open files: +Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:01:10.000] After ensureProjectForOpenFiles: +Info 30 [00:01:11.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:12.000] Files (3) -Info 31 [00:01:14.000] ----------------------------------------------- -Info 31 [00:01:15.000] Open files: -Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:13.000] ----------------------------------------------- +Info 30 [00:01:14.000] Open files: +Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +221,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:18.000] response: +Info 30 [00:01:17.000] response: { "response": [ { @@ -235,7 +234,7 @@ Info 31 [00:01:18.000] response: ], "responseRequired": true } -Info 32 [00:01:19.000] request: +Info 31 [00:01:18.000] request: { "command": "change", "arguments": { @@ -301,11 +300,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [00:01:20.000] response: +Info 32 [00:01:19.000] response: { "responseRequired": false } -Info 34 [00:01:21.000] request: +Info 33 [00:01:20.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -341,9 +340,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 36 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 37 [00:01:24.000] Different program with same set of files +Info 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:: @@ -370,7 +369,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 38 [00:01:25.000] response: +Info 37 [00:01:24.000] response: { "response": [ { @@ -381,7 +380,7 @@ Info 38 [00:01:25.000] response: ], "responseRequired": true } -Info 39 [00:01:26.000] request: +Info 38 [00:01:25.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -443,12 +442,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [00:01:27.000] response: +Info 39 [00:01:26.000] response: { "response": false, "responseRequired": true } -Info 41 [00:01:28.000] request: +Info 40 [00:01:27.000] request: { "command": "emit-output", "arguments": { @@ -510,7 +509,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [00:01:29.000] response: +Info 41 [00:01:28.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency-with-project.js index 916386187ff24..aa69560627b92 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -207,7 +206,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] response: +Info 28 [00:01:03.000] response: { "response": [ { @@ -220,7 +219,7 @@ Info 29 [00:01:04.000] response: ], "responseRequired": true } -Info 30 [00:01:05.000] request: +Info 29 [00:01:04.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -282,12 +281,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:06.000] response: +Info 30 [00:01:05.000] response: { "response": false, "responseRequired": true } -Info 32 [00:01:07.000] request: +Info 31 [00:01:06.000] request: { "command": "emit-output", "arguments": { @@ -349,7 +348,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [00:01:08.000] response: +Info 32 [00:01:07.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-dependency.js index ad785ce6259c2..2f7bbc8dd0e65 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +179,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [00:01:06.000] Files (3) +Info 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) -Info 30 [00:01:07.000] ----------------------------------------------- -Info 30 [00:01:08.000] Open files: -Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [00:01:11.000] After ensureProjectForOpenFiles: -Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:13.000] Files (3) +Info 29 [00:01:06.000] ----------------------------------------------- +Info 29 [00:01:07.000] Open files: +Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:01:10.000] After ensureProjectForOpenFiles: +Info 30 [00:01:11.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:12.000] Files (3) -Info 31 [00:01:14.000] ----------------------------------------------- -Info 31 [00:01:15.000] Open files: -Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:13.000] ----------------------------------------------- +Info 30 [00:01:14.000] Open files: +Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +221,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:18.000] response: +Info 30 [00:01:17.000] response: { "response": [ { @@ -235,7 +234,7 @@ Info 31 [00:01:18.000] response: ], "responseRequired": true } -Info 32 [00:01:19.000] request: +Info 31 [00:01:18.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -296,12 +295,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [00:01:20.000] response: +Info 32 [00:01:19.000] response: { "response": false, "responseRequired": true } -Info 34 [00:01:21.000] request: +Info 33 [00:01:20.000] request: { "command": "emit-output", "arguments": { @@ -362,7 +361,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [00:01:22.000] response: +Info 34 [00:01:21.000] response: { "response": { "emitSkipped": true, diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-change-to-depenedency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-change-to-depenedency.js index 78aef595d48ed..54b243a98e8bc 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +179,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [00:01:06.000] Files (3) +Info 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) -Info 30 [00:01:07.000] ----------------------------------------------- -Info 30 [00:01:08.000] Open files: -Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [00:01:11.000] After ensureProjectForOpenFiles: -Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:13.000] Files (3) +Info 29 [00:01:06.000] ----------------------------------------------- +Info 29 [00:01:07.000] Open files: +Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:01:10.000] After ensureProjectForOpenFiles: +Info 30 [00:01:11.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:12.000] Files (3) -Info 31 [00:01:14.000] ----------------------------------------------- -Info 31 [00:01:15.000] Open files: -Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:13.000] ----------------------------------------------- +Info 30 [00:01:14.000] Open files: +Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +221,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:18.000] response: +Info 30 [00:01:17.000] response: { "response": [ { @@ -235,11 +234,11 @@ Info 31 [00:01:18.000] response: ], "responseRequired": true } -Info 32 [00:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 33 [00:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json -Info 34 [00:01:24.000] Scheduled: *ensureProjectForOpenFiles* -Info 35 [00:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 36 [00:01:26.000] request: +Info 31 [00:01:21.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:22.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json +Info 33 [00:01:23.000] Scheduled: *ensureProjectForOpenFiles* +Info 34 [00:01:24.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 35 [00:01:25.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -279,25 +278,25 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 38 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 39 [00:01:29.000] Different program with same set of files -Info 40 [00:01:30.000] Before ensureProjectForOpenFiles: -Info 41 [00:01:31.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 41 [00:01:32.000] Files (3) - -Info 41 [00:01:33.000] ----------------------------------------------- -Info 41 [00:01:34.000] Open files: -Info 41 [00:01:35.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 41 [00:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 41 [00:01:37.000] After ensureProjectForOpenFiles: -Info 42 [00:01:38.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 42 [00:01:39.000] Files (3) - -Info 42 [00:01:40.000] ----------------------------------------------- -Info 42 [00:01:41.000] Open files: -Info 42 [00:01:42.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 42 [00:01:43.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +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 +Info 39 [00:01:29.000] Before ensureProjectForOpenFiles: +Info 40 [00:01:30.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 40 [00:01:31.000] Files (3) + +Info 40 [00:01:32.000] ----------------------------------------------- +Info 40 [00:01:33.000] Open files: +Info 40 [00:01:34.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 40 [00:01:35.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 40 [00:01:36.000] After ensureProjectForOpenFiles: +Info 41 [00:01:37.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 41 [00:01:38.000] Files (3) + +Info 41 [00:01:39.000] ----------------------------------------------- +Info 41 [00:01:40.000] Open files: +Info 41 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 41 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -324,7 +323,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [00:01:44.000] response: +Info 41 [00:01:43.000] response: { "response": [ { @@ -337,7 +336,7 @@ Info 42 [00:01:44.000] response: ], "responseRequired": true } -Info 43 [00:01:45.000] request: +Info 42 [00:01:44.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -372,9 +371,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 44 [00:01:48.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 45 [00:01:49.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 46 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +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 After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -409,12 +408,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:51.000] response: +Info 46 [00:01:50.000] response: { "response": true, "responseRequired": true } -Info 48 [00:01:52.000] request: +Info 47 [00:01:51.000] request: { "command": "emit-output", "arguments": { @@ -475,7 +474,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:53.000] response: +Info 48 [00:01:52.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-change-to-usage.js index fa833d8b1f031..8217ff29b3195 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +179,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [00:01:06.000] Files (3) +Info 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) -Info 30 [00:01:07.000] ----------------------------------------------- -Info 30 [00:01:08.000] Open files: -Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [00:01:11.000] After ensureProjectForOpenFiles: -Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:13.000] Files (3) +Info 29 [00:01:06.000] ----------------------------------------------- +Info 29 [00:01:07.000] Open files: +Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:01:10.000] After ensureProjectForOpenFiles: +Info 30 [00:01:11.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:12.000] Files (3) -Info 31 [00:01:14.000] ----------------------------------------------- -Info 31 [00:01:15.000] Open files: -Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:13.000] ----------------------------------------------- +Info 30 [00:01:14.000] Open files: +Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +221,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:18.000] response: +Info 30 [00:01:17.000] response: { "response": [ { @@ -235,7 +234,7 @@ Info 31 [00:01:18.000] response: ], "responseRequired": true } -Info 32 [00:01:19.000] request: +Info 31 [00:01:18.000] request: { "command": "change", "arguments": { @@ -301,11 +300,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [00:01:20.000] response: +Info 32 [00:01:19.000] response: { "responseRequired": false } -Info 34 [00:01:21.000] request: +Info 33 [00:01:20.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -340,25 +339,25 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 36 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 37 [00:01:24.000] Different program with same set of files -Info 38 [00:01:25.000] Before ensureProjectForOpenFiles: -Info 39 [00:01:26.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 39 [00:01:27.000] Files (3) - -Info 39 [00:01:28.000] ----------------------------------------------- -Info 39 [00:01:29.000] Open files: -Info 39 [00:01:30.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 39 [00:01:31.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 39 [00:01:32.000] After ensureProjectForOpenFiles: -Info 40 [00:01:33.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 40 [00:01:34.000] Files (3) - -Info 40 [00:01:35.000] ----------------------------------------------- -Info 40 [00:01:36.000] Open files: -Info 40 [00:01:37.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 40 [00:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +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 +Info 37 [00:01:24.000] Before ensureProjectForOpenFiles: +Info 38 [00:01:25.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 38 [00:01:26.000] Files (3) + +Info 38 [00:01:27.000] ----------------------------------------------- +Info 38 [00:01:28.000] Open files: +Info 38 [00:01:29.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 38 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 38 [00:01:31.000] After ensureProjectForOpenFiles: +Info 39 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 39 [00:01:33.000] Files (3) + +Info 39 [00:01:34.000] ----------------------------------------------- +Info 39 [00:01:35.000] Open files: +Info 39 [00:01:36.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 39 [00:01:37.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -385,7 +384,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [00:01:39.000] response: +Info 39 [00:01:38.000] response: { "response": [ { @@ -398,7 +397,7 @@ Info 40 [00:01:39.000] response: ], "responseRequired": true } -Info 41 [00:01:40.000] request: +Info 40 [00:01:39.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -433,9 +432,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [00:01:43.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 43 [00:01:44.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 44 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +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 After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -473,12 +472,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:46.000] response: +Info 44 [00:01:45.000] response: { "response": true, "responseRequired": true } -Info 46 [00:01:47.000] request: +Info 45 [00:01:46.000] request: { "command": "emit-output", "arguments": { @@ -539,7 +538,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:48.000] response: +Info 46 [00:01:47.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-dependency.js index 6992708ea0c9b..cb9e58f67a318 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +179,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [00:01:06.000] Files (3) +Info 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) -Info 30 [00:01:07.000] ----------------------------------------------- -Info 30 [00:01:08.000] Open files: -Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [00:01:11.000] After ensureProjectForOpenFiles: -Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:13.000] Files (3) +Info 29 [00:01:06.000] ----------------------------------------------- +Info 29 [00:01:07.000] Open files: +Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:01:10.000] After ensureProjectForOpenFiles: +Info 30 [00:01:11.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:12.000] Files (3) -Info 31 [00:01:14.000] ----------------------------------------------- -Info 31 [00:01:15.000] Open files: -Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:13.000] ----------------------------------------------- +Info 30 [00:01:14.000] Open files: +Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +221,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:18.000] response: +Info 30 [00:01:17.000] response: { "response": [ { @@ -235,11 +234,11 @@ Info 31 [00:01:18.000] response: ], "responseRequired": true } -Info 32 [00:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 33 [00:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json -Info 34 [00:01:24.000] Scheduled: *ensureProjectForOpenFiles* -Info 35 [00:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 36 [00:01:26.000] request: +Info 31 [00:01:21.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:22.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json +Info 33 [00:01:23.000] Scheduled: *ensureProjectForOpenFiles* +Info 34 [00:01:24.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 35 [00:01:25.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -279,25 +278,25 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 38 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 39 [00:01:29.000] Different program with same set of files -Info 40 [00:01:30.000] Before ensureProjectForOpenFiles: -Info 41 [00:01:31.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 41 [00:01:32.000] Files (3) - -Info 41 [00:01:33.000] ----------------------------------------------- -Info 41 [00:01:34.000] Open files: -Info 41 [00:01:35.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 41 [00:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 41 [00:01:37.000] After ensureProjectForOpenFiles: -Info 42 [00:01:38.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 42 [00:01:39.000] Files (3) - -Info 42 [00:01:40.000] ----------------------------------------------- -Info 42 [00:01:41.000] Open files: -Info 42 [00:01:42.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 42 [00:01:43.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +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 +Info 39 [00:01:29.000] Before ensureProjectForOpenFiles: +Info 40 [00:01:30.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 40 [00:01:31.000] Files (3) + +Info 40 [00:01:32.000] ----------------------------------------------- +Info 40 [00:01:33.000] Open files: +Info 40 [00:01:34.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 40 [00:01:35.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 40 [00:01:36.000] After ensureProjectForOpenFiles: +Info 41 [00:01:37.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 41 [00:01:38.000] Files (3) + +Info 41 [00:01:39.000] ----------------------------------------------- +Info 41 [00:01:40.000] Open files: +Info 41 [00:01:41.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 41 [00:01:42.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -324,7 +323,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [00:01:44.000] response: +Info 41 [00:01:43.000] response: { "response": [ { @@ -337,7 +336,7 @@ Info 42 [00:01:44.000] response: ], "responseRequired": true } -Info 43 [00:01:45.000] request: +Info 42 [00:01:44.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -372,9 +371,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 44 [00:01:48.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 45 [00:01:49.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 46 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +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 After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -409,12 +408,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:51.000] response: +Info 46 [00:01:50.000] response: { "response": true, "responseRequired": true } -Info 48 [00:01:52.000] request: +Info 47 [00:01:51.000] request: { "command": "emit-output", "arguments": { @@ -475,7 +474,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:53.000] response: +Info 48 [00:01:52.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-and-local-change-to-usage.js index 2316075217035..37bc589f84ec0 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +179,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [00:01:06.000] Files (3) +Info 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) -Info 30 [00:01:07.000] ----------------------------------------------- -Info 30 [00:01:08.000] Open files: -Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [00:01:11.000] After ensureProjectForOpenFiles: -Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:13.000] Files (3) +Info 29 [00:01:06.000] ----------------------------------------------- +Info 29 [00:01:07.000] Open files: +Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:01:10.000] After ensureProjectForOpenFiles: +Info 30 [00:01:11.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:12.000] Files (3) -Info 31 [00:01:14.000] ----------------------------------------------- -Info 31 [00:01:15.000] Open files: -Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:13.000] ----------------------------------------------- +Info 30 [00:01:14.000] Open files: +Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +221,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:18.000] response: +Info 30 [00:01:17.000] response: { "response": [ { @@ -235,7 +234,7 @@ Info 31 [00:01:18.000] response: ], "responseRequired": true } -Info 32 [00:01:19.000] request: +Info 31 [00:01:18.000] request: { "command": "change", "arguments": { @@ -301,11 +300,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [00:01:20.000] response: +Info 32 [00:01:19.000] response: { "responseRequired": false } -Info 34 [00:01:21.000] request: +Info 33 [00:01:20.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -340,25 +339,25 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 36 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 37 [00:01:24.000] Different program with same set of files -Info 38 [00:01:25.000] Before ensureProjectForOpenFiles: -Info 39 [00:01:26.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 39 [00:01:27.000] Files (3) - -Info 39 [00:01:28.000] ----------------------------------------------- -Info 39 [00:01:29.000] Open files: -Info 39 [00:01:30.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 39 [00:01:31.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 39 [00:01:32.000] After ensureProjectForOpenFiles: -Info 40 [00:01:33.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 40 [00:01:34.000] Files (3) - -Info 40 [00:01:35.000] ----------------------------------------------- -Info 40 [00:01:36.000] Open files: -Info 40 [00:01:37.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 40 [00:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +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 +Info 37 [00:01:24.000] Before ensureProjectForOpenFiles: +Info 38 [00:01:25.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 38 [00:01:26.000] Files (3) + +Info 38 [00:01:27.000] ----------------------------------------------- +Info 38 [00:01:28.000] Open files: +Info 38 [00:01:29.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 38 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 38 [00:01:31.000] After ensureProjectForOpenFiles: +Info 39 [00:01:32.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 39 [00:01:33.000] Files (3) + +Info 39 [00:01:34.000] ----------------------------------------------- +Info 39 [00:01:35.000] Open files: +Info 39 [00:01:36.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 39 [00:01:37.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -385,7 +384,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [00:01:39.000] response: +Info 39 [00:01:38.000] response: { "response": [ { @@ -398,7 +397,7 @@ Info 40 [00:01:39.000] response: ], "responseRequired": true } -Info 41 [00:01:40.000] request: +Info 40 [00:01:39.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -433,9 +432,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [00:01:43.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 43 [00:01:44.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 44 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +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 After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -471,12 +470,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:46.000] response: +Info 44 [00:01:45.000] response: { "response": true, "responseRequired": true } -Info 46 [00:01:47.000] request: +Info 45 [00:01:46.000] request: { "command": "emit-output", "arguments": { @@ -537,7 +536,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:48.000] response: +Info 46 [00:01:47.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-depenedency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-depenedency.js index 1a014dae360fa..587601851ac5f 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +179,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [00:01:06.000] Files (3) +Info 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) -Info 30 [00:01:07.000] ----------------------------------------------- -Info 30 [00:01:08.000] Open files: -Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [00:01:11.000] After ensureProjectForOpenFiles: -Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:13.000] Files (3) +Info 29 [00:01:06.000] ----------------------------------------------- +Info 29 [00:01:07.000] Open files: +Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:01:10.000] After ensureProjectForOpenFiles: +Info 30 [00:01:11.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:12.000] Files (3) -Info 31 [00:01:14.000] ----------------------------------------------- -Info 31 [00:01:15.000] Open files: -Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:13.000] ----------------------------------------------- +Info 30 [00:01:14.000] Open files: +Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +221,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:18.000] response: +Info 30 [00:01:17.000] response: { "response": [ { @@ -235,11 +234,11 @@ Info 31 [00:01:18.000] response: ], "responseRequired": true } -Info 32 [00:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 33 [00:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json -Info 34 [00:01:24.000] Scheduled: *ensureProjectForOpenFiles* -Info 35 [00:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 36 [00:01:26.000] request: +Info 31 [00:01:21.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:22.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json +Info 33 [00:01:23.000] Scheduled: *ensureProjectForOpenFiles* +Info 34 [00:01:24.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 35 [00:01:25.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -280,9 +279,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 38 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 39 [00:01:29.000] Different program with same set of files +Info 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:: @@ -309,7 +308,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [00:01:30.000] response: +Info 39 [00:01:29.000] response: { "response": [ { @@ -322,7 +321,7 @@ Info 40 [00:01:30.000] response: ], "responseRequired": true } -Info 41 [00:01:31.000] request: +Info 40 [00:01:30.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -358,9 +357,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [00:01:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 43 [00:01:35.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 44 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +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 After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -395,12 +394,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:37.000] response: +Info 44 [00:01:36.000] response: { "response": true, "responseRequired": true } -Info 46 [00:01:38.000] request: +Info 45 [00:01:37.000] request: { "command": "emit-output", "arguments": { @@ -462,7 +461,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:39.000] response: +Info 46 [00:01:38.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-change-to-usage.js index d9d81618a42e4..5a98fa1da6187 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +179,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [00:01:06.000] Files (3) +Info 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) -Info 30 [00:01:07.000] ----------------------------------------------- -Info 30 [00:01:08.000] Open files: -Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [00:01:11.000] After ensureProjectForOpenFiles: -Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:13.000] Files (3) +Info 29 [00:01:06.000] ----------------------------------------------- +Info 29 [00:01:07.000] Open files: +Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:01:10.000] After ensureProjectForOpenFiles: +Info 30 [00:01:11.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:12.000] Files (3) -Info 31 [00:01:14.000] ----------------------------------------------- -Info 31 [00:01:15.000] Open files: -Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:13.000] ----------------------------------------------- +Info 30 [00:01:14.000] Open files: +Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +221,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:18.000] response: +Info 30 [00:01:17.000] response: { "response": [ { @@ -235,7 +234,7 @@ Info 31 [00:01:18.000] response: ], "responseRequired": true } -Info 32 [00:01:19.000] request: +Info 31 [00:01:18.000] request: { "command": "change", "arguments": { @@ -301,11 +300,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [00:01:20.000] response: +Info 32 [00:01:19.000] response: { "responseRequired": false } -Info 34 [00:01:21.000] request: +Info 33 [00:01:20.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -341,9 +340,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 36 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 37 [00:01:24.000] Different program with same set of files +Info 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:: @@ -370,7 +369,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 38 [00:01:25.000] response: +Info 37 [00:01:24.000] response: { "response": [ { @@ -383,7 +382,7 @@ Info 38 [00:01:25.000] response: ], "responseRequired": true } -Info 39 [00:01:26.000] request: +Info 38 [00:01:25.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -419,9 +418,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [00:01:29.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 41 [00:01:30.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 42 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +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 After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -459,12 +458,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 43 [00:01:32.000] response: +Info 42 [00:01:31.000] response: { "response": true, "responseRequired": true } -Info 44 [00:01:33.000] request: +Info 43 [00:01:32.000] request: { "command": "emit-output", "arguments": { @@ -526,7 +525,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:34.000] response: +Info 44 [00:01:33.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-dependency.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-dependency.js index 4c5d4d9868ec5..ffb2f79c8f74f 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +179,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [00:01:06.000] Files (3) +Info 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) -Info 30 [00:01:07.000] ----------------------------------------------- -Info 30 [00:01:08.000] Open files: -Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [00:01:11.000] After ensureProjectForOpenFiles: -Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:13.000] Files (3) +Info 29 [00:01:06.000] ----------------------------------------------- +Info 29 [00:01:07.000] Open files: +Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:01:10.000] After ensureProjectForOpenFiles: +Info 30 [00:01:11.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:12.000] Files (3) -Info 31 [00:01:14.000] ----------------------------------------------- -Info 31 [00:01:15.000] Open files: -Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:13.000] ----------------------------------------------- +Info 30 [00:01:14.000] Open files: +Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +221,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:18.000] response: +Info 30 [00:01:17.000] response: { "response": [ { @@ -235,11 +234,11 @@ Info 31 [00:01:18.000] response: ], "responseRequired": true } -Info 32 [00:01:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 33 [00:01:23.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json -Info 34 [00:01:24.000] Scheduled: *ensureProjectForOpenFiles* -Info 35 [00:01:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 36 [00:01:26.000] request: +Info 31 [00:01:21.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:22.000] Scheduled: /user/username/projects/myproject/usage/tsconfig.json +Info 33 [00:01:23.000] Scheduled: *ensureProjectForOpenFiles* +Info 34 [00:01:24.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/fns.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 35 [00:01:25.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -280,9 +279,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 38 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 39 [00:01:29.000] Different program with same set of files +Info 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:: @@ -309,7 +308,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [00:01:30.000] response: +Info 39 [00:01:29.000] response: { "response": [ { @@ -322,7 +321,7 @@ Info 40 [00:01:30.000] response: ], "responseRequired": true } -Info 41 [00:01:31.000] request: +Info 40 [00:01:30.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -358,9 +357,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [00:01:34.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 43 [00:01:35.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 44 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +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 After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -395,12 +394,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:37.000] response: +Info 44 [00:01:36.000] response: { "response": true, "responseRequired": true } -Info 46 [00:01:38.000] request: +Info 45 [00:01:37.000] request: { "command": "emit-output", "arguments": { @@ -462,7 +461,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:39.000] response: +Info 46 [00:01:38.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project-and-local-change-to-usage.js index 0a6137030e65b..d8bf3b3e1f2bc 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +179,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [00:01:06.000] Files (3) +Info 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) -Info 30 [00:01:07.000] ----------------------------------------------- -Info 30 [00:01:08.000] Open files: -Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [00:01:11.000] After ensureProjectForOpenFiles: -Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:13.000] Files (3) +Info 29 [00:01:06.000] ----------------------------------------------- +Info 29 [00:01:07.000] Open files: +Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:01:10.000] After ensureProjectForOpenFiles: +Info 30 [00:01:11.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:12.000] Files (3) -Info 31 [00:01:14.000] ----------------------------------------------- -Info 31 [00:01:15.000] Open files: -Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:13.000] ----------------------------------------------- +Info 30 [00:01:14.000] Open files: +Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +221,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:18.000] response: +Info 30 [00:01:17.000] response: { "response": [ { @@ -235,7 +234,7 @@ Info 31 [00:01:18.000] response: ], "responseRequired": true } -Info 32 [00:01:19.000] request: +Info 31 [00:01:18.000] request: { "command": "change", "arguments": { @@ -301,11 +300,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [00:01:20.000] response: +Info 32 [00:01:19.000] response: { "responseRequired": false } -Info 34 [00:01:21.000] request: +Info 33 [00:01:20.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -341,9 +340,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 36 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 37 [00:01:24.000] Different program with same set of files +Info 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:: @@ -370,7 +369,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 38 [00:01:25.000] response: +Info 37 [00:01:24.000] response: { "response": [ { @@ -383,7 +382,7 @@ Info 38 [00:01:25.000] response: ], "responseRequired": true } -Info 39 [00:01:26.000] request: +Info 38 [00:01:25.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -419,9 +418,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [00:01:29.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 41 [00:01:30.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 42 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +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 After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -457,12 +456,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 43 [00:01:32.000] response: +Info 42 [00:01:31.000] response: { "response": true, "responseRequired": true } -Info 44 [00:01:33.000] request: +Info 43 [00:01:32.000] request: { "command": "emit-output", "arguments": { @@ -524,7 +523,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:34.000] response: +Info 44 [00:01:33.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage-with-project.js index 927fed7f37dfb..15ba786aafd8b 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -207,7 +206,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] response: +Info 28 [00:01:03.000] response: { "response": [ { @@ -220,7 +219,7 @@ Info 29 [00:01:04.000] response: ], "responseRequired": true } -Info 30 [00:01:05.000] request: +Info 29 [00:01:04.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -256,9 +255,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 32 [00:01:09.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 33 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +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 After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -293,12 +292,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 34 [00:01:11.000] response: +Info 33 [00:01:10.000] response: { "response": true, "responseRequired": true } -Info 35 [00:01:12.000] request: +Info 34 [00:01:11.000] request: { "command": "emit-output", "arguments": { @@ -360,7 +359,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 36 [00:01:13.000] response: +Info 35 [00:01:12.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage.js b/tests/baselines/reference/tsserver/projectReferenceCompileOnSave/when-dependency-project-is-not-open-and-save-on-usage.js index 8addcf0513d5d..7a43f655c089f 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 @@ -69,9 +69,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -81,20 +80,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,14 +106,14 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "command": "compileOnSaveAffectedFileList", "arguments": { @@ -180,22 +179,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] Before ensureProjectForOpenFiles: -Info 30 [00:01:05.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 30 [00:01:06.000] Files (3) +Info 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) -Info 30 [00:01:07.000] ----------------------------------------------- -Info 30 [00:01:08.000] Open files: -Info 30 [00:01:09.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 30 [00:01:10.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 30 [00:01:11.000] After ensureProjectForOpenFiles: -Info 31 [00:01:12.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:13.000] Files (3) +Info 29 [00:01:06.000] ----------------------------------------------- +Info 29 [00:01:07.000] Open files: +Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 29 [00:01:10.000] After ensureProjectForOpenFiles: +Info 30 [00:01:11.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:12.000] Files (3) -Info 31 [00:01:14.000] ----------------------------------------------- -Info 31 [00:01:15.000] Open files: -Info 31 [00:01:16.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:17.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:01:13.000] ----------------------------------------------- +Info 30 [00:01:14.000] Open files: +Info 30 [00:01:15.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:16.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -222,7 +221,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:18.000] response: +Info 30 [00:01:17.000] response: { "response": [ { @@ -235,7 +234,7 @@ Info 31 [00:01:18.000] response: ], "responseRequired": true } -Info 32 [00:01:19.000] request: +Info 31 [00:01:18.000] request: { "command": "compileOnSaveEmitFile", "arguments": { @@ -270,9 +269,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [00:01:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:23.000] Project: /user/username/projects/myproject/usage/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/usage/usage.js -Info 35 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/usage/usage.js :: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory +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 After request //// [/user/username/projects/myproject/usage/usage.js] "use strict"; @@ -307,12 +306,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 36 [00:01:25.000] response: +Info 35 [00:01:24.000] response: { "response": true, "responseRequired": true } -Info 37 [00:01:26.000] request: +Info 36 [00:01:25.000] request: { "command": "emit-output", "arguments": { @@ -373,7 +372,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 38 [00:01:27.000] response: +Info 37 [00:01:26.000] response: { "response": { "outputFiles": [ diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-gerErr-with-sync-commands.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-gerErr-with-sync-commands.js index 25bdd5dad6a96..606404b54fea3 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 @@ -75,9 +75,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -87,20 +86,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -113,16 +112,16 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Search path: /user/username/projects/myproject/usage -Info 28 [00:00:57.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 29 [00:00:58.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 29 [00:00:59.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Search path: /user/username/projects/myproject/usage +Info 27 [00:00:56.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 28 [00:00:57.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 28 [00:00:58.000] Files (3) -Info 29 [00:01:00.000] ----------------------------------------------- -Info 29 [00:01:01.000] Open files: -Info 29 [00:01:02.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 29 [00:01:03.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 28 [00:00:59.000] ----------------------------------------------- +Info 28 [00:01:00.000] Open files: +Info 28 [00:01:01.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 28 [00:01:02.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -149,11 +148,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] response: +Info 28 [00:01:03.000] response: { "responseRequired": false } -Info 30 [00:01:05.000] request: +Info 29 [00:01:04.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -214,12 +213,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:06.000] response: +Info 30 [00:01:05.000] response: { "response": [], "responseRequired": true } -Info 32 [00:01:07.000] request: +Info 31 [00:01:06.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -280,7 +279,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [00:01:08.000] response: +Info 32 [00:01:07.000] response: { "response": [ { @@ -299,7 +298,7 @@ Info 33 [00:01:08.000] response: ], "responseRequired": true } -Info 34 [00:01:09.000] request: +Info 33 [00:01:08.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -360,12 +359,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [00:01:10.000] response: +Info 34 [00:01:09.000] response: { "response": [], "responseRequired": true } -Info 36 [00:01:11.000] request: +Info 35 [00:01:10.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -426,12 +425,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [00:01:12.000] response: +Info 36 [00:01:11.000] response: { "response": [], "responseRequired": true } -Info 38 [00:01:13.000] request: +Info 37 [00:01:12.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -492,12 +491,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 39 [00:01:14.000] response: +Info 38 [00:01:13.000] response: { "response": [], "responseRequired": true } -Info 40 [00:01:15.000] request: +Info 39 [00:01:14.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -558,12 +557,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 41 [00:01:16.000] response: +Info 40 [00:01:15.000] response: { "response": [], "responseRequired": true } -Info 42 [00:01:17.000] request: +Info 41 [00:01:16.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -625,12 +624,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 43 [00:01:18.000] response: +Info 42 [00:01:17.000] response: { "response": [], "responseRequired": true } -Info 44 [00:01:19.000] request: +Info 43 [00:01:18.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -692,7 +691,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:20.000] response: +Info 44 [00:01:19.000] response: { "response": [ { @@ -711,7 +710,7 @@ Info 45 [00:01:20.000] response: ], "responseRequired": true } -Info 46 [00:01:21.000] request: +Info 45 [00:01:20.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -773,12 +772,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:22.000] response: +Info 46 [00:01:21.000] response: { "response": [], "responseRequired": true } -Info 48 [00:01:23.000] request: +Info 47 [00:01:22.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -840,12 +839,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:24.000] response: +Info 48 [00:01:23.000] response: { "response": [], "responseRequired": true } -Info 50 [00:01:25.000] request: +Info 49 [00:01:24.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -907,12 +906,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:26.000] response: +Info 50 [00:01:25.000] response: { "response": [], "responseRequired": true } -Info 52 [00:01:27.000] request: +Info 51 [00:01:26.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -974,7 +973,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:01:28.000] response: +Info 52 [00:01:27.000] response: { "response": [], "responseRequired": true diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-getErr.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-getErr.js index 24ae99c83313d..11b382e1a6dbf 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 @@ -77,9 +77,8 @@ Info 7 [00:00:36.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 8 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 9 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -89,20 +88,20 @@ Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 16 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 24 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 25 [00:00:54.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 26 [00:00:55.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -115,22 +114,22 @@ Info 26 [00:00:55.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 27 [00:00:56.000] ----------------------------------------------- -Info 28 [00:00:57.000] event: +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json"}} -Info 29 [00:00:58.000] event: +Info 28 [00:00:57.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"2b96539513e8810fb8ec0c078e4cb28919c0c28cdb8f7646118c5a6f4ff4cb10","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":266,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 30 [00:00:59.000] event: +Info 29 [00:00:58.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/usage/usage.ts","configFile":"/user/username/projects/myproject/usage/tsconfig.json","diagnostics":[]}} -Info 31 [00:01:00.000] Search path: /user/username/projects/myproject/usage -Info 32 [00:01:01.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 33 [00:01:02.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 33 [00:01:03.000] Files (3) - -Info 33 [00:01:04.000] ----------------------------------------------- -Info 33 [00:01:05.000] Open files: -Info 33 [00:01:06.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 33 [00:01:07.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:00:59.000] Search path: /user/username/projects/myproject/usage +Info 31 [00:01:00.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 32 [00:01:01.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 32 [00:01:02.000] Files (3) + +Info 32 [00:01:03.000] ----------------------------------------------- +Info 32 [00:01:04.000] Open files: +Info 32 [00:01:05.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 32 [00:01:06.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -157,11 +156,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [00:01:08.000] response: +Info 32 [00:01:07.000] response: { "responseRequired": false } -Info 34 [00:01:09.000] request: +Info 33 [00:01:08.000] request: { "command": "geterr", "arguments": { @@ -225,7 +224,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [00:01:10.000] response: +Info 34 [00:01:09.000] response: { "responseRequired": false } @@ -255,7 +254,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 36 [00:01:11.000] event: +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 @@ -309,7 +308,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [00:01:12.000] event: +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) @@ -363,9 +362,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 38 [00:01:13.000] event: +Info 37 [00:01:12.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} -Info 39 [00:01:14.000] event: +Info 38 [00:01:13.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-geterrForProject.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-dependency-project-is-not-open-geterrForProject.js index e555fa7bd2fd3..c59b078a75bdc 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 @@ -77,9 +77,8 @@ Info 7 [00:00:36.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 8 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 9 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -89,20 +88,20 @@ Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 16 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 24 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 25 [00:00:54.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 26 [00:00:55.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -115,22 +114,22 @@ Info 26 [00:00:55.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 27 [00:00:56.000] ----------------------------------------------- -Info 28 [00:00:57.000] event: +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json"}} -Info 29 [00:00:58.000] event: +Info 28 [00:00:57.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"2b96539513e8810fb8ec0c078e4cb28919c0c28cdb8f7646118c5a6f4ff4cb10","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":266,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 30 [00:00:59.000] event: +Info 29 [00:00:58.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/usage/usage.ts","configFile":"/user/username/projects/myproject/usage/tsconfig.json","diagnostics":[]}} -Info 31 [00:01:00.000] Search path: /user/username/projects/myproject/usage -Info 32 [00:01:01.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 33 [00:01:02.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 33 [00:01:03.000] Files (3) - -Info 33 [00:01:04.000] ----------------------------------------------- -Info 33 [00:01:05.000] Open files: -Info 33 [00:01:06.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 33 [00:01:07.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:00:59.000] Search path: /user/username/projects/myproject/usage +Info 31 [00:01:00.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 32 [00:01:01.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 32 [00:01:02.000] Files (3) + +Info 32 [00:01:03.000] ----------------------------------------------- +Info 32 [00:01:04.000] Open files: +Info 32 [00:01:05.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 32 [00:01:06.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -157,11 +156,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [00:01:08.000] response: +Info 32 [00:01:07.000] response: { "responseRequired": false } -Info 34 [00:01:09.000] request: +Info 33 [00:01:08.000] request: { "command": "geterrForProject", "arguments": { @@ -223,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [00:01:10.000] response: +Info 34 [00:01:09.000] response: { "responseRequired": false } @@ -253,7 +252,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 36 [00:01:11.000] event: +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 @@ -307,7 +306,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [00:01:12.000] event: +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) @@ -361,7 +360,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 38 [00:01:13.000] event: +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) @@ -415,7 +414,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 39 [00:01:14.000] event: +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 @@ -469,7 +468,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 40 [00:01:15.000] event: +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) @@ -523,9 +522,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 41 [00:01:16.000] event: +Info 40 [00:01:15.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} -Info 42 [00:01:17.000] event: +Info 41 [00:01:16.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -553,7 +552,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 43 [00:01:18.000] request: +Info 42 [00:01:17.000] request: { "command": "geterrForProject", "arguments": { @@ -615,7 +614,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 44 [00:01:19.000] response: +Info 43 [00:01:18.000] response: { "responseRequired": false } @@ -645,7 +644,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:20.000] event: +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 @@ -699,7 +698,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [00:01:21.000] event: +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) @@ -753,7 +752,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:22.000] event: +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) @@ -807,7 +806,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [00:01:23.000] event: +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 @@ -861,7 +860,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:24.000] event: +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) @@ -915,9 +914,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 50 [00:01:25.000] event: +Info 49 [00:01:24.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} -Info 51 [00:01:26.000] event: +Info 50 [00:01:25.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-gerErr-with-sync-commands.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-gerErr-with-sync-commands.js index 9c74230c04a23..9440b3d77f439 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 @@ -75,9 +75,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -87,20 +86,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -113,16 +112,16 @@ Info 25 [00:00:54.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Search path: /user/username/projects/myproject/usage -Info 28 [00:00:57.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 29 [00:00:58.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 29 [00:00:59.000] Files (3) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Search path: /user/username/projects/myproject/usage +Info 27 [00:00:56.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 28 [00:00:57.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 28 [00:00:58.000] Files (3) -Info 29 [00:01:00.000] ----------------------------------------------- -Info 29 [00:01:01.000] Open files: -Info 29 [00:01:02.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 29 [00:01:03.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 28 [00:00:59.000] ----------------------------------------------- +Info 28 [00:01:00.000] Open files: +Info 28 [00:01:01.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 28 [00:01:02.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -149,11 +148,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] response: +Info 28 [00:01:03.000] response: { "responseRequired": false } -Info 30 [00:01:05.000] request: +Info 29 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -188,19 +187,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 32 [00:01:07.000] Search path: /user/username/projects/myproject/dependency -Info 33 [00:01:08.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:09.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 41 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [00:01:18.000] Files (2) +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 +Info 33 [00:01:08.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -210,22 +208,22 @@ Info 43 [00:01:18.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 44 [00:01:19.000] ----------------------------------------------- -Info 45 [00:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 46 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [00:01:22.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 47 [00:01:23.000] Files (3) - -Info 47 [00:01:24.000] ----------------------------------------------- -Info 47 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [00:01:26.000] Files (2) - -Info 47 [00:01:27.000] ----------------------------------------------- -Info 47 [00:01:28.000] Open files: -Info 47 [00:01:29.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 47 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 47 [00:01:31.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 47 [00:01:32.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:17.000] ----------------------------------------------- +Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 45 [00:01:21.000] Files (3) + +Info 45 [00:01:22.000] ----------------------------------------------- +Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:24.000] Files (2) + +Info 45 [00:01:25.000] ----------------------------------------------- +Info 45 [00:01:26.000] Open files: +Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -252,11 +250,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] response: +Info 45 [00:01:31.000] response: { "responseRequired": false } -Info 48 [00:01:34.000] request: +Info 46 [00:01:32.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -317,12 +315,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:35.000] response: +Info 47 [00:01:33.000] response: { "response": [], "responseRequired": true } -Info 50 [00:01:36.000] request: +Info 48 [00:01:34.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -383,7 +381,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:37.000] response: +Info 49 [00:01:35.000] response: { "response": [ { @@ -402,7 +400,7 @@ Info 51 [00:01:37.000] response: ], "responseRequired": true } -Info 52 [00:01:38.000] request: +Info 50 [00:01:36.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -463,12 +461,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:01:39.000] response: +Info 51 [00:01:37.000] response: { "response": [], "responseRequired": true } -Info 54 [00:01:40.000] request: +Info 52 [00:01:38.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -529,12 +527,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 55 [00:01:41.000] response: +Info 53 [00:01:39.000] response: { "response": [], "responseRequired": true } -Info 56 [00:01:42.000] request: +Info 54 [00:01:40.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -595,7 +593,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 57 [00:01:43.000] response: +Info 55 [00:01:41.000] response: { "response": [ { @@ -614,7 +612,7 @@ Info 57 [00:01:43.000] response: ], "responseRequired": true } -Info 58 [00:01:44.000] request: +Info 56 [00:01:42.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -675,12 +673,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 59 [00:01:45.000] response: +Info 57 [00:01:43.000] response: { "response": [], "responseRequired": true } -Info 60 [00:01:46.000] request: +Info 58 [00:01:44.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -742,12 +740,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [00:01:47.000] response: +Info 59 [00:01:45.000] response: { "response": [], "responseRequired": true } -Info 62 [00:01:48.000] request: +Info 60 [00:01:46.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -809,7 +807,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [00:01:49.000] response: +Info 61 [00:01:47.000] response: { "response": [ { @@ -828,7 +826,7 @@ Info 63 [00:01:49.000] response: ], "responseRequired": true } -Info 64 [00:01:50.000] request: +Info 62 [00:01:48.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -890,12 +888,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 65 [00:01:51.000] response: +Info 63 [00:01:49.000] response: { "response": [], "responseRequired": true } -Info 66 [00:01:52.000] request: +Info 64 [00:01:50.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -957,12 +955,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 67 [00:01:53.000] response: +Info 65 [00:01:51.000] response: { "response": [], "responseRequired": true } -Info 68 [00:01:54.000] request: +Info 66 [00:01:52.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -1024,12 +1022,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 69 [00:01:55.000] response: +Info 67 [00:01:53.000] response: { "response": [], "responseRequired": true } -Info 70 [00:01:56.000] request: +Info 68 [00:01:54.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -1091,12 +1089,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 71 [00:01:57.000] response: +Info 69 [00:01:55.000] response: { "response": [], "responseRequired": true } -Info 72 [00:01:58.000] request: +Info 70 [00:01:56.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -1158,12 +1156,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 73 [00:01:59.000] response: +Info 71 [00:01:57.000] response: { "response": [], "responseRequired": true } -Info 74 [00:02:00.000] request: +Info 72 [00:01:58.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -1225,7 +1223,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 75 [00:02:01.000] response: +Info 73 [00:01:59.000] response: { "response": [ { @@ -1244,7 +1242,7 @@ Info 75 [00:02:01.000] response: ], "responseRequired": true } -Info 76 [00:02:02.000] request: +Info 74 [00:02:00.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -1306,7 +1304,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 77 [00:02:03.000] response: +Info 75 [00:02:01.000] response: { "response": [], "responseRequired": true diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-getErr.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-module-scenario-when-the-depedency-file-is-open-getErr.js index ac511243e25df..d8fe6807f330f 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 @@ -77,9 +77,8 @@ Info 7 [00:00:36.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 8 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 9 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -89,20 +88,20 @@ Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 16 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 24 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 25 [00:00:54.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 26 [00:00:55.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -115,22 +114,22 @@ Info 26 [00:00:55.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 27 [00:00:56.000] ----------------------------------------------- -Info 28 [00:00:57.000] event: +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json"}} -Info 29 [00:00:58.000] event: +Info 28 [00:00:57.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"2b96539513e8810fb8ec0c078e4cb28919c0c28cdb8f7646118c5a6f4ff4cb10","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":266,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 30 [00:00:59.000] event: +Info 29 [00:00:58.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/usage/usage.ts","configFile":"/user/username/projects/myproject/usage/tsconfig.json","diagnostics":[]}} -Info 31 [00:01:00.000] Search path: /user/username/projects/myproject/usage -Info 32 [00:01:01.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 33 [00:01:02.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 33 [00:01:03.000] Files (3) - -Info 33 [00:01:04.000] ----------------------------------------------- -Info 33 [00:01:05.000] Open files: -Info 33 [00:01:06.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 33 [00:01:07.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:00:59.000] Search path: /user/username/projects/myproject/usage +Info 31 [00:01:00.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 32 [00:01:01.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 32 [00:01:02.000] Files (3) + +Info 32 [00:01:03.000] ----------------------------------------------- +Info 32 [00:01:04.000] Open files: +Info 32 [00:01:05.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 32 [00:01:06.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -157,11 +156,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [00:01:08.000] response: +Info 32 [00:01:07.000] response: { "responseRequired": false } -Info 34 [00:01:09.000] request: +Info 33 [00:01:08.000] request: { "seq": 0, "type": "request", @@ -196,21 +195,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [00:01:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 36 [00:01:11.000] Search path: /user/username/projects/myproject/dependency -Info 37 [00:01:12.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 38 [00:01:13.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 39 [00:01:14.000] event: +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 +Info 37 [00:01:12.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 38 [00:01:13.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/dependency/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/dependency/fns.ts to open"}} -Info 40 [00:01:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 41 [00:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 42 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 43 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 44 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 45 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 46 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 47 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:23.000] Files (2) +Info 39 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 41 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 42 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 43 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 44 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -220,28 +218,28 @@ Info 48 [00:01:23.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 49 [00:01:24.000] ----------------------------------------------- -Info 50 [00:01:25.000] event: +Info 47 [00:01:22.000] ----------------------------------------------- +Info 48 [00:01:23.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/dependency/tsconfig.json"}} -Info 51 [00:01:26.000] event: +Info 49 [00:01:24.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"80216eb4c9c6d41fcd26650a22a2df8f2cac81cda661de72dc723e6251203d22","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":184,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"declarationDir":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 52 [00:01:27.000] event: +Info 50 [00:01:25.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/dependency/fns.ts","configFile":"/user/username/projects/myproject/dependency/tsconfig.json","diagnostics":[]}} -Info 53 [00:01:28.000] Search path: /user/username/projects/myproject/dependency -Info 54 [00:01:29.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 55 [00:01:30.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 55 [00:01:31.000] Files (3) - -Info 55 [00:01:32.000] ----------------------------------------------- -Info 55 [00:01:33.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [00:01:34.000] Files (2) - -Info 55 [00:01:35.000] ----------------------------------------------- -Info 55 [00:01:36.000] Open files: -Info 55 [00:01:37.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 55 [00:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 55 [00:01:39.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 55 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 51 [00:01:26.000] Search path: /user/username/projects/myproject/dependency +Info 52 [00:01:27.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 53 [00:01:28.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 53 [00:01:29.000] Files (3) + +Info 53 [00:01:30.000] ----------------------------------------------- +Info 53 [00:01:31.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 53 [00:01:32.000] Files (2) + +Info 53 [00:01:33.000] ----------------------------------------------- +Info 53 [00:01:34.000] Open files: +Info 53 [00:01:35.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 53 [00:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 53 [00:01:37.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 53 [00:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -268,11 +266,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 55 [00:01:41.000] response: +Info 53 [00:01:39.000] response: { "responseRequired": false } -Info 56 [00:01:42.000] request: +Info 54 [00:01:40.000] request: { "command": "geterr", "arguments": { @@ -337,7 +335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 57 [00:01:43.000] response: +Info 55 [00:01:41.000] response: { "responseRequired": false } @@ -367,7 +365,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [00:01:44.000] event: +Info 56 [00:01:42.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -421,7 +419,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 59 [00:01:45.000] event: +Info 57 [00:01:43.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":4,"offset":5},"end":{"line":4,"offset":10},"text":"Module '\"../decls/fns\"' has no exported member 'fnErr'.","code":2305,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -475,7 +473,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [00:01:46.000] event: +Info 58 [00:01:44.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -529,7 +527,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [00:01:47.000] event: +Info 59 [00:01:45.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -583,7 +581,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 62 [00:01:48.000] event: +Info 60 [00:01:46.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[{"start":{"line":6,"offset":12},"end":{"line":6,"offset":13},"text":"Type 'number' is not assignable to type 'string'.","code":2322,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -637,9 +635,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [00:01:49.000] event: +Info 61 [00:01:47.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} -Info 64 [00:01:50.000] event: +Info 62 [00:01:48.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-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 72b8dde214353..e22b109af4cf0 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 @@ -77,9 +77,8 @@ Info 7 [00:00:36.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 8 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 9 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -89,20 +88,20 @@ Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 16 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 24 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 25 [00:00:54.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 26 [00:00:55.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:53.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 25 [00:00:54.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -115,22 +114,22 @@ Info 26 [00:00:55.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 27 [00:00:56.000] ----------------------------------------------- -Info 28 [00:00:57.000] event: +Info 26 [00:00:55.000] ----------------------------------------------- +Info 27 [00:00:56.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json"}} -Info 29 [00:00:58.000] event: +Info 28 [00:00:57.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"2b96539513e8810fb8ec0c078e4cb28919c0c28cdb8f7646118c5a6f4ff4cb10","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":266,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 30 [00:00:59.000] event: +Info 29 [00:00:58.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/usage/usage.ts","configFile":"/user/username/projects/myproject/usage/tsconfig.json","diagnostics":[]}} -Info 31 [00:01:00.000] Search path: /user/username/projects/myproject/usage -Info 32 [00:01:01.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 33 [00:01:02.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 33 [00:01:03.000] Files (3) - -Info 33 [00:01:04.000] ----------------------------------------------- -Info 33 [00:01:05.000] Open files: -Info 33 [00:01:06.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 33 [00:01:07.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 30 [00:00:59.000] Search path: /user/username/projects/myproject/usage +Info 31 [00:01:00.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 32 [00:01:01.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 32 [00:01:02.000] Files (3) + +Info 32 [00:01:03.000] ----------------------------------------------- +Info 32 [00:01:04.000] Open files: +Info 32 [00:01:05.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 32 [00:01:06.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -157,11 +156,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [00:01:08.000] response: +Info 32 [00:01:07.000] response: { "responseRequired": false } -Info 34 [00:01:09.000] request: +Info 33 [00:01:08.000] request: { "seq": 0, "type": "request", @@ -196,21 +195,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [00:01:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 36 [00:01:11.000] Search path: /user/username/projects/myproject/dependency -Info 37 [00:01:12.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 38 [00:01:13.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 39 [00:01:14.000] event: +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 +Info 37 [00:01:12.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 38 [00:01:13.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/dependency/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/dependency/fns.ts to open"}} -Info 40 [00:01:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 41 [00:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 42 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 43 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 44 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 45 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 46 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 47 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 48 [00:01:23.000] Files (2) +Info 39 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 41 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 42 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 43 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 44 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 46 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -220,28 +218,28 @@ Info 48 [00:01:23.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 49 [00:01:24.000] ----------------------------------------------- -Info 50 [00:01:25.000] event: +Info 47 [00:01:22.000] ----------------------------------------------- +Info 48 [00:01:23.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/dependency/tsconfig.json"}} -Info 51 [00:01:26.000] event: +Info 49 [00:01:24.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"80216eb4c9c6d41fcd26650a22a2df8f2cac81cda661de72dc723e6251203d22","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":184,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"declarationDir":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 52 [00:01:27.000] event: +Info 50 [00:01:25.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/dependency/fns.ts","configFile":"/user/username/projects/myproject/dependency/tsconfig.json","diagnostics":[]}} -Info 53 [00:01:28.000] Search path: /user/username/projects/myproject/dependency -Info 54 [00:01:29.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 55 [00:01:30.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 55 [00:01:31.000] Files (3) - -Info 55 [00:01:32.000] ----------------------------------------------- -Info 55 [00:01:33.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [00:01:34.000] Files (2) - -Info 55 [00:01:35.000] ----------------------------------------------- -Info 55 [00:01:36.000] Open files: -Info 55 [00:01:37.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 55 [00:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 55 [00:01:39.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 55 [00:01:40.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 51 [00:01:26.000] Search path: /user/username/projects/myproject/dependency +Info 52 [00:01:27.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 53 [00:01:28.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 53 [00:01:29.000] Files (3) + +Info 53 [00:01:30.000] ----------------------------------------------- +Info 53 [00:01:31.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 53 [00:01:32.000] Files (2) + +Info 53 [00:01:33.000] ----------------------------------------------- +Info 53 [00:01:34.000] Open files: +Info 53 [00:01:35.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 53 [00:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 53 [00:01:37.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 53 [00:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -268,11 +266,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 55 [00:01:41.000] response: +Info 53 [00:01:39.000] response: { "responseRequired": false } -Info 56 [00:01:42.000] request: +Info 54 [00:01:40.000] request: { "command": "geterrForProject", "arguments": { @@ -334,7 +332,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 57 [00:01:43.000] response: +Info 55 [00:01:41.000] response: { "responseRequired": false } @@ -364,7 +362,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [00:01:44.000] event: +Info 56 [00:01:42.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -418,7 +416,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 59 [00:01:45.000] event: +Info 57 [00:01:43.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[{"start":{"line":4,"offset":5},"end":{"line":4,"offset":10},"text":"Module '\"../decls/fns\"' has no exported member 'fnErr'.","code":2305,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -472,7 +470,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [00:01:46.000] event: +Info 58 [00:01:44.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -526,7 +524,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [00:01:47.000] event: +Info 59 [00:01:45.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -580,7 +578,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 62 [00:01:48.000] event: +Info 60 [00:01:46.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -634,9 +632,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [00:01:49.000] event: +Info 61 [00:01:47.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} -Info 64 [00:01:50.000] event: +Info 62 [00:01:48.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -664,7 +662,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 65 [00:01:51.000] request: +Info 63 [00:01:49.000] request: { "command": "geterrForProject", "arguments": { @@ -726,7 +724,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 66 [00:01:52.000] response: +Info 64 [00:01:50.000] response: { "responseRequired": false } @@ -756,7 +754,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 67 [00:01:53.000] event: +Info 65 [00:01:51.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -810,7 +808,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 68 [00:01:54.000] event: +Info 66 [00:01:52.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[{"start":{"line":6,"offset":12},"end":{"line":6,"offset":13},"text":"Type 'number' is not assignable to type 'string'.","code":2322,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -864,9 +862,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 69 [00:01:55.000] event: +Info 67 [00:01:53.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} -Info 70 [00:01:56.000] event: +Info 68 [00:01:54.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/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 78ff8e41af908..666363bbfd5ff 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 @@ -71,9 +71,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -83,18 +82,18 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 18 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 22 [00:00:51.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 23 [00:00:52.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 15 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 17 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 21 [00:00:50.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 22 [00:00:51.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,16 +106,16 @@ Info 23 [00:00:52.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 24 [00:00:53.000] ----------------------------------------------- -Info 25 [00:00:54.000] Search path: /user/username/projects/myproject/usage -Info 26 [00:00:55.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 23 [00:00:52.000] ----------------------------------------------- +Info 24 [00:00:53.000] Search path: /user/username/projects/myproject/usage +Info 25 [00:00:54.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -202,12 +201,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] response: +Info 28 [00:01:03.000] response: { "response": [], "responseRequired": true } -Info 30 [00:01:05.000] request: +Info 29 [00:01:04.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -264,7 +263,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:06.000] response: +Info 30 [00:01:05.000] response: { "response": [ { @@ -283,7 +282,7 @@ Info 31 [00:01:06.000] response: ], "responseRequired": true } -Info 32 [00:01:07.000] request: +Info 31 [00:01:06.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -340,12 +339,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [00:01:08.000] response: +Info 32 [00:01:07.000] response: { "response": [], "responseRequired": true } -Info 34 [00:01:09.000] request: +Info 33 [00:01:08.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -402,12 +401,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [00:01:10.000] response: +Info 34 [00:01:09.000] response: { "response": [], "responseRequired": true } -Info 36 [00:01:11.000] request: +Info 35 [00:01:10.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -464,12 +463,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [00:01:12.000] response: +Info 36 [00:01:11.000] response: { "response": [], "responseRequired": true } -Info 38 [00:01:13.000] request: +Info 37 [00:01:12.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -526,12 +525,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 39 [00:01:14.000] response: +Info 38 [00:01:13.000] response: { "response": [], "responseRequired": true } -Info 40 [00:01:15.000] request: +Info 39 [00:01:14.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -589,12 +588,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 41 [00:01:16.000] response: +Info 40 [00:01:15.000] response: { "response": [], "responseRequired": true } -Info 42 [00:01:17.000] request: +Info 41 [00:01:16.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -652,7 +651,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 43 [00:01:18.000] response: +Info 42 [00:01:17.000] response: { "response": [ { @@ -671,7 +670,7 @@ Info 43 [00:01:18.000] response: ], "responseRequired": true } -Info 44 [00:01:19.000] request: +Info 43 [00:01:18.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -729,12 +728,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:20.000] response: +Info 44 [00:01:19.000] response: { "response": [], "responseRequired": true } -Info 46 [00:01:21.000] request: +Info 45 [00:01:20.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -792,12 +791,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:22.000] response: +Info 46 [00:01:21.000] response: { "response": [], "responseRequired": true } -Info 48 [00:01:23.000] request: +Info 47 [00:01:22.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -855,12 +854,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:24.000] response: +Info 48 [00:01:23.000] response: { "response": [], "responseRequired": true } -Info 50 [00:01:25.000] request: +Info 49 [00:01:24.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -918,7 +917,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:26.000] response: +Info 50 [00:01:25.000] response: { "response": [], "responseRequired": true diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-getErr.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-getErr.js index 298dd2c8e2fdd..5ca752a2abc78 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 @@ -73,9 +73,8 @@ Info 7 [00:00:36.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 8 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 9 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -85,18 +84,18 @@ Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 24 [00:00:53.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 18 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 22 [00:00:51.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 23 [00:00:52.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -109,22 +108,22 @@ Info 24 [00:00:53.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 25 [00:00:54.000] ----------------------------------------------- -Info 26 [00:00:55.000] event: +Info 24 [00:00:53.000] ----------------------------------------------- +Info 25 [00:00:54.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json"}} -Info 27 [00:00:56.000] event: +Info 26 [00:00:55.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"2b96539513e8810fb8ec0c078e4cb28919c0c28cdb8f7646118c5a6f4ff4cb10","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":179,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outFile":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 28 [00:00:57.000] event: +Info 27 [00:00:56.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/usage/usage.ts","configFile":"/user/username/projects/myproject/usage/tsconfig.json","diagnostics":[]}} -Info 29 [00:00:58.000] Search path: /user/username/projects/myproject/usage -Info 30 [00:00:59.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 31 [00:01:00.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:01.000] Files (3) - -Info 31 [00:01:02.000] ----------------------------------------------- -Info 31 [00:01:03.000] Open files: -Info 31 [00:01:04.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:05.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 28 [00:00:57.000] Search path: /user/username/projects/myproject/usage +Info 29 [00:00:58.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 30 [00:00:59.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:00.000] Files (3) + +Info 30 [00:01:01.000] ----------------------------------------------- +Info 30 [00:01:02.000] Open files: +Info 30 [00:01:03.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:04.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -149,11 +148,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:06.000] response: +Info 30 [00:01:05.000] response: { "responseRequired": false } -Info 32 [00:01:07.000] request: +Info 31 [00:01:06.000] request: { "command": "geterr", "arguments": { @@ -213,7 +212,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [00:01:08.000] response: +Info 32 [00:01:07.000] response: { "responseRequired": false } @@ -241,7 +240,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 34 [00:01:09.000] event: +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 @@ -291,7 +290,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [00:01:10.000] event: +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) @@ -341,9 +340,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 36 [00:01:11.000] event: +Info 35 [00:01:10.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} -Info 37 [00:01:12.000] event: +Info 36 [00:01:11.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-geterrForProject.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-dependency-project-is-not-open-geterrForProject.js index a32280173f065..199060930d83a 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 @@ -73,9 +73,8 @@ Info 7 [00:00:36.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 8 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 9 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -85,18 +84,18 @@ Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 24 [00:00:53.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 18 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 22 [00:00:51.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 23 [00:00:52.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -109,22 +108,22 @@ Info 24 [00:00:53.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 25 [00:00:54.000] ----------------------------------------------- -Info 26 [00:00:55.000] event: +Info 24 [00:00:53.000] ----------------------------------------------- +Info 25 [00:00:54.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json"}} -Info 27 [00:00:56.000] event: +Info 26 [00:00:55.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"2b96539513e8810fb8ec0c078e4cb28919c0c28cdb8f7646118c5a6f4ff4cb10","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":179,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outFile":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 28 [00:00:57.000] event: +Info 27 [00:00:56.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/usage/usage.ts","configFile":"/user/username/projects/myproject/usage/tsconfig.json","diagnostics":[]}} -Info 29 [00:00:58.000] Search path: /user/username/projects/myproject/usage -Info 30 [00:00:59.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 31 [00:01:00.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:01.000] Files (3) - -Info 31 [00:01:02.000] ----------------------------------------------- -Info 31 [00:01:03.000] Open files: -Info 31 [00:01:04.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:05.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 28 [00:00:57.000] Search path: /user/username/projects/myproject/usage +Info 29 [00:00:58.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 30 [00:00:59.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:00.000] Files (3) + +Info 30 [00:01:01.000] ----------------------------------------------- +Info 30 [00:01:02.000] Open files: +Info 30 [00:01:03.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:04.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -149,11 +148,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:06.000] response: +Info 30 [00:01:05.000] response: { "responseRequired": false } -Info 32 [00:01:07.000] request: +Info 31 [00:01:06.000] request: { "command": "geterrForProject", "arguments": { @@ -211,7 +210,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [00:01:08.000] response: +Info 32 [00:01:07.000] response: { "responseRequired": false } @@ -239,7 +238,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 34 [00:01:09.000] event: +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 @@ -289,7 +288,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 35 [00:01:10.000] event: +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) @@ -339,7 +338,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 36 [00:01:11.000] event: +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) @@ -389,7 +388,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 37 [00:01:12.000] event: +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 @@ -439,7 +438,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 38 [00:01:13.000] event: +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) @@ -489,9 +488,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 39 [00:01:14.000] event: +Info 38 [00:01:13.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/dependency/fns.ts","diagnostics":[]}} -Info 40 [00:01:15.000] event: +Info 39 [00:01:14.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -517,7 +516,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 41 [00:01:16.000] request: +Info 40 [00:01:15.000] request: { "command": "geterrForProject", "arguments": { @@ -575,7 +574,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 42 [00:01:17.000] response: +Info 41 [00:01:16.000] response: { "responseRequired": false } @@ -603,7 +602,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 43 [00:01:18.000] event: +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 @@ -653,7 +652,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 44 [00:01:19.000] event: +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) @@ -703,7 +702,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:20.000] event: +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) @@ -753,7 +752,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [00:01:21.000] event: +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 @@ -803,7 +802,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:22.000] event: +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) @@ -853,9 +852,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [00:01:23.000] event: +Info 47 [00:01:22.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/usage/usage.ts","diagnostics":[]}} -Info 49 [00:01:24.000] event: +Info 48 [00:01:23.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-gerErr-with-sync-commands.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-gerErr-with-sync-commands.js index c7ce77f28bdbe..2653c56518f19 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 @@ -71,9 +71,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -83,18 +82,18 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 18 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 22 [00:00:51.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 23 [00:00:52.000] Files (3) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 15 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 17 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 21 [00:00:50.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 22 [00:00:51.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -107,16 +106,16 @@ Info 23 [00:00:52.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 24 [00:00:53.000] ----------------------------------------------- -Info 25 [00:00:54.000] Search path: /user/username/projects/myproject/usage -Info 26 [00:00:55.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 27 [00:00:56.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 27 [00:00:57.000] Files (3) +Info 23 [00:00:52.000] ----------------------------------------------- +Info 24 [00:00:53.000] Search path: /user/username/projects/myproject/usage +Info 25 [00:00:54.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 26 [00:00:55.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 26 [00:00:56.000] Files (3) -Info 27 [00:00:58.000] ----------------------------------------------- -Info 27 [00:00:59.000] Open files: -Info 27 [00:01:00.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 27 [00:01:01.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 26 [00:00:57.000] ----------------------------------------------- +Info 26 [00:00:58.000] Open files: +Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 26 [00:01:00.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 27 [00:01:02.000] response: +Info 26 [00:01:01.000] response: { "responseRequired": false } -Info 28 [00:01:03.000] request: +Info 27 [00:01:02.000] request: { "seq": 0, "type": "request", @@ -178,19 +177,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:05.000] Search path: /user/username/projects/myproject/dependency -Info 31 [00:01:06.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 32 [00:01:07.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:08.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:16.000] Files (2) +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 +Info 31 [00:01:06.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -200,22 +198,22 @@ Info 41 [00:01:16.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 42 [00:01:17.000] ----------------------------------------------- -Info 43 [00:01:18.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:19.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 45 [00:01:21.000] Files (3) - -Info 45 [00:01:22.000] ----------------------------------------------- -Info 45 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) - -Info 45 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Open files: -Info 45 [00:01:27.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 45 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 45 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 45 [00:01:30.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:15.000] ----------------------------------------------- +Info 41 [00:01:16.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:17.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 43 [00:01:19.000] Files (3) + +Info 43 [00:01:20.000] ----------------------------------------------- +Info 43 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) + +Info 43 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Open files: +Info 43 [00:01:25.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 43 [00:01:26.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 43 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 43 [00:01:28.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -240,11 +238,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:01:31.000] response: +Info 43 [00:01:29.000] response: { "responseRequired": false } -Info 46 [00:01:32.000] request: +Info 44 [00:01:30.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -301,12 +299,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:33.000] response: +Info 45 [00:01:31.000] response: { "response": [], "responseRequired": true } -Info 48 [00:01:34.000] request: +Info 46 [00:01:32.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -363,7 +361,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:35.000] response: +Info 47 [00:01:33.000] response: { "response": [ { @@ -382,7 +380,7 @@ Info 49 [00:01:35.000] response: ], "responseRequired": true } -Info 50 [00:01:36.000] request: +Info 48 [00:01:34.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -439,12 +437,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 51 [00:01:37.000] response: +Info 49 [00:01:35.000] response: { "response": [], "responseRequired": true } -Info 52 [00:01:38.000] request: +Info 50 [00:01:36.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -501,12 +499,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:01:39.000] response: +Info 51 [00:01:37.000] response: { "response": [], "responseRequired": true } -Info 54 [00:01:40.000] request: +Info 52 [00:01:38.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -563,7 +561,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 55 [00:01:41.000] response: +Info 53 [00:01:39.000] response: { "response": [ { @@ -582,7 +580,7 @@ Info 55 [00:01:41.000] response: ], "responseRequired": true } -Info 56 [00:01:42.000] request: +Info 54 [00:01:40.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -639,12 +637,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 57 [00:01:43.000] response: +Info 55 [00:01:41.000] response: { "response": [], "responseRequired": true } -Info 58 [00:01:44.000] request: +Info 56 [00:01:42.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -702,12 +700,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 59 [00:01:45.000] response: +Info 57 [00:01:43.000] response: { "response": [], "responseRequired": true } -Info 60 [00:01:46.000] request: +Info 58 [00:01:44.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -765,7 +763,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [00:01:47.000] response: +Info 59 [00:01:45.000] response: { "response": [ { @@ -784,7 +782,7 @@ Info 61 [00:01:47.000] response: ], "responseRequired": true } -Info 62 [00:01:48.000] request: +Info 60 [00:01:46.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -842,12 +840,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [00:01:49.000] response: +Info 61 [00:01:47.000] response: { "response": [], "responseRequired": true } -Info 64 [00:01:50.000] request: +Info 62 [00:01:48.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -905,12 +903,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 65 [00:01:51.000] response: +Info 63 [00:01:49.000] response: { "response": [], "responseRequired": true } -Info 66 [00:01:52.000] request: +Info 64 [00:01:50.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -968,12 +966,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 67 [00:01:53.000] response: +Info 65 [00:01:51.000] response: { "response": [], "responseRequired": true } -Info 68 [00:01:54.000] request: +Info 66 [00:01:52.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -1031,12 +1029,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 69 [00:01:55.000] response: +Info 67 [00:01:53.000] response: { "response": [], "responseRequired": true } -Info 70 [00:01:56.000] request: +Info 68 [00:01:54.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -1094,12 +1092,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 71 [00:01:57.000] response: +Info 69 [00:01:55.000] response: { "response": [], "responseRequired": true } -Info 72 [00:01:58.000] request: +Info 70 [00:01:56.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -1157,7 +1155,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 73 [00:01:59.000] response: +Info 71 [00:01:57.000] response: { "response": [ { @@ -1176,7 +1174,7 @@ Info 73 [00:01:59.000] response: ], "responseRequired": true } -Info 74 [00:02:00.000] request: +Info 72 [00:01:58.000] request: { "command": "suggestionDiagnosticsSync", "arguments": { @@ -1234,7 +1232,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 75 [00:02:01.000] response: +Info 73 [00:01:59.000] response: { "response": [], "responseRequired": true diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-getErr.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-getErr.js index 2de5791dddd61..607155f6117b4 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 @@ -73,9 +73,8 @@ Info 7 [00:00:36.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 8 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 9 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -85,18 +84,18 @@ Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 24 [00:00:53.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 18 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 22 [00:00:51.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 23 [00:00:52.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -109,22 +108,22 @@ Info 24 [00:00:53.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 25 [00:00:54.000] ----------------------------------------------- -Info 26 [00:00:55.000] event: +Info 24 [00:00:53.000] ----------------------------------------------- +Info 25 [00:00:54.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json"}} -Info 27 [00:00:56.000] event: +Info 26 [00:00:55.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"2b96539513e8810fb8ec0c078e4cb28919c0c28cdb8f7646118c5a6f4ff4cb10","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":179,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outFile":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 28 [00:00:57.000] event: +Info 27 [00:00:56.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/usage/usage.ts","configFile":"/user/username/projects/myproject/usage/tsconfig.json","diagnostics":[]}} -Info 29 [00:00:58.000] Search path: /user/username/projects/myproject/usage -Info 30 [00:00:59.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 31 [00:01:00.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:01.000] Files (3) - -Info 31 [00:01:02.000] ----------------------------------------------- -Info 31 [00:01:03.000] Open files: -Info 31 [00:01:04.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:05.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 28 [00:00:57.000] Search path: /user/username/projects/myproject/usage +Info 29 [00:00:58.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 30 [00:00:59.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:00.000] Files (3) + +Info 30 [00:01:01.000] ----------------------------------------------- +Info 30 [00:01:02.000] Open files: +Info 30 [00:01:03.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:04.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -149,11 +148,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:06.000] response: +Info 30 [00:01:05.000] response: { "responseRequired": false } -Info 32 [00:01:07.000] request: +Info 31 [00:01:06.000] request: { "seq": 0, "type": "request", @@ -186,21 +185,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [00:01:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 34 [00:01:09.000] Search path: /user/username/projects/myproject/dependency -Info 35 [00:01:10.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:11.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [00:01:12.000] event: +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 +Info 35 [00:01:10.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:11.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/dependency/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/dependency/fns.ts to open"}} -Info 38 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 40 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 41 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 42 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 43 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 44 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:01:21.000] Files (2) +Info 37 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 38 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 40 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 41 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 42 [00:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:19.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -210,28 +208,28 @@ Info 46 [00:01:21.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 47 [00:01:22.000] ----------------------------------------------- -Info 48 [00:01:23.000] event: +Info 45 [00:01:20.000] ----------------------------------------------- +Info 46 [00:01:21.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/dependency/tsconfig.json"}} -Info 49 [00:01:24.000] event: +Info 47 [00:01:22.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"80216eb4c9c6d41fcd26650a22a2df8f2cac81cda661de72dc723e6251203d22","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":156,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outFile":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 50 [00:01:25.000] event: +Info 48 [00:01:23.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/dependency/fns.ts","configFile":"/user/username/projects/myproject/dependency/tsconfig.json","diagnostics":[]}} -Info 51 [00:01:26.000] Search path: /user/username/projects/myproject/dependency -Info 52 [00:01:27.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 53 [00:01:28.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 53 [00:01:29.000] Files (3) - -Info 53 [00:01:30.000] ----------------------------------------------- -Info 53 [00:01:31.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 53 [00:01:32.000] Files (2) - -Info 53 [00:01:33.000] ----------------------------------------------- -Info 53 [00:01:34.000] Open files: -Info 53 [00:01:35.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 53 [00:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 53 [00:01:37.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 53 [00:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 49 [00:01:24.000] Search path: /user/username/projects/myproject/dependency +Info 50 [00:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 51 [00:01:26.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 51 [00:01:27.000] Files (3) + +Info 51 [00:01:28.000] ----------------------------------------------- +Info 51 [00:01:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 51 [00:01:30.000] Files (2) + +Info 51 [00:01:31.000] ----------------------------------------------- +Info 51 [00:01:32.000] Open files: +Info 51 [00:01:33.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 51 [00:01:34.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 51 [00:01:35.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 51 [00:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -256,11 +254,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:01:39.000] response: +Info 51 [00:01:37.000] response: { "responseRequired": false } -Info 54 [00:01:40.000] request: +Info 52 [00:01:38.000] request: { "command": "geterr", "arguments": { @@ -321,7 +319,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 55 [00:01:41.000] response: +Info 53 [00:01:39.000] response: { "responseRequired": false } @@ -349,7 +347,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [00:01:42.000] event: +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 @@ -399,7 +397,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 57 [00:01:43.000] event: +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) @@ -449,7 +447,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [00:01:44.000] event: +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) @@ -499,7 +497,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 59 [00:01:45.000] event: +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 @@ -549,7 +547,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [00:01:46.000] event: +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) @@ -599,9 +597,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [00:01:47.000] event: +Info 59 [00:01:45.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: +Info 60 [00:01:46.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-geterrForProject.js b/tests/baselines/reference/tsserver/projectReferenceErrors/with-non-module-when-the-depedency-file-is-open-geterrForProject.js index de816b667b90b..dcd18c8015d78 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 @@ -73,9 +73,8 @@ Info 7 [00:00:36.000] Config: /user/username/projects/myproject/usage/tsconfi } Info 8 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory Info 9 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage 1 undefined Config: /user/username/projects/myproject/usage/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json -Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json +Info 11 [00:00:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/fns.ts" ], @@ -85,18 +84,18 @@ Info 12 [00:00:41.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file -Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 23 [00:00:52.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 24 [00:00:53.000] Files (3) +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Config file +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 18 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/usage/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/usage/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/usage/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 22 [00:00:51.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 23 [00:00:52.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts /user/username/projects/myproject/usage/usage.ts @@ -109,22 +108,22 @@ Info 24 [00:00:53.000] Files (3) usage.ts Matched by default include pattern '**/*' -Info 25 [00:00:54.000] ----------------------------------------------- -Info 26 [00:00:55.000] event: +Info 24 [00:00:53.000] ----------------------------------------------- +Info 25 [00:00:54.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/usage/tsconfig.json"}} -Info 27 [00:00:56.000] event: +Info 26 [00:00:55.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"2b96539513e8810fb8ec0c078e4cb28919c0c28cdb8f7646118c5a6f4ff4cb10","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":179,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outFile":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 28 [00:00:57.000] event: +Info 27 [00:00:56.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/usage/usage.ts","configFile":"/user/username/projects/myproject/usage/tsconfig.json","diagnostics":[]}} -Info 29 [00:00:58.000] Search path: /user/username/projects/myproject/usage -Info 30 [00:00:59.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. -Info 31 [00:01:00.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 31 [00:01:01.000] Files (3) - -Info 31 [00:01:02.000] ----------------------------------------------- -Info 31 [00:01:03.000] Open files: -Info 31 [00:01:04.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 31 [00:01:05.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 28 [00:00:57.000] Search path: /user/username/projects/myproject/usage +Info 29 [00:00:58.000] For info: /user/username/projects/myproject/usage/tsconfig.json :: No config files found. +Info 30 [00:00:59.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 30 [00:01:00.000] Files (3) + +Info 30 [00:01:01.000] ----------------------------------------------- +Info 30 [00:01:02.000] Open files: +Info 30 [00:01:03.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 30 [00:01:04.000] Projects: /user/username/projects/myproject/usage/tsconfig.json After request PolledWatches:: @@ -149,11 +148,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:06.000] response: +Info 30 [00:01:05.000] response: { "responseRequired": false } -Info 32 [00:01:07.000] request: +Info 31 [00:01:06.000] request: { "seq": 0, "type": "request", @@ -186,21 +185,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 33 [00:01:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/fns.ts 500 undefined WatchType: Closed Script info -Info 34 [00:01:09.000] Search path: /user/username/projects/myproject/dependency -Info 35 [00:01:10.000] For info: /user/username/projects/myproject/dependency/fns.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:11.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [00:01:12.000] event: +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 +Info 35 [00:01:10.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 36 [00:01:11.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/dependency/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/dependency/fns.ts to open"}} -Info 38 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 40 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 41 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 42 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 43 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 44 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:01:21.000] Files (2) +Info 37 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 38 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 40 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 41 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 42 [00:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:19.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/fns.ts @@ -210,28 +208,28 @@ Info 46 [00:01:21.000] Files (2) fns.ts Matched by default include pattern '**/*' -Info 47 [00:01:22.000] ----------------------------------------------- -Info 48 [00:01:23.000] event: +Info 45 [00:01:20.000] ----------------------------------------------- +Info 46 [00:01:21.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/dependency/tsconfig.json"}} -Info 49 [00:01:24.000] event: +Info 47 [00:01:22.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"80216eb4c9c6d41fcd26650a22a2df8f2cac81cda661de72dc723e6251203d22","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":156,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outFile":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 50 [00:01:25.000] event: +Info 48 [00:01:23.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/dependency/fns.ts","configFile":"/user/username/projects/myproject/dependency/tsconfig.json","diagnostics":[]}} -Info 51 [00:01:26.000] Search path: /user/username/projects/myproject/dependency -Info 52 [00:01:27.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 53 [00:01:28.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) -Info 53 [00:01:29.000] Files (3) - -Info 53 [00:01:30.000] ----------------------------------------------- -Info 53 [00:01:31.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 53 [00:01:32.000] Files (2) - -Info 53 [00:01:33.000] ----------------------------------------------- -Info 53 [00:01:34.000] Open files: -Info 53 [00:01:35.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined -Info 53 [00:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json -Info 53 [00:01:37.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined -Info 53 [00:01:38.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 49 [00:01:24.000] Search path: /user/username/projects/myproject/dependency +Info 50 [00:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 51 [00:01:26.000] Project '/user/username/projects/myproject/usage/tsconfig.json' (Configured) +Info 51 [00:01:27.000] Files (3) + +Info 51 [00:01:28.000] ----------------------------------------------- +Info 51 [00:01:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 51 [00:01:30.000] Files (2) + +Info 51 [00:01:31.000] ----------------------------------------------- +Info 51 [00:01:32.000] Open files: +Info 51 [00:01:33.000] FileName: /user/username/projects/myproject/usage/usage.ts ProjectRootPath: undefined +Info 51 [00:01:34.000] Projects: /user/username/projects/myproject/usage/tsconfig.json +Info 51 [00:01:35.000] FileName: /user/username/projects/myproject/dependency/fns.ts ProjectRootPath: undefined +Info 51 [00:01:36.000] Projects: /user/username/projects/myproject/usage/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -256,11 +254,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 53 [00:01:39.000] response: +Info 51 [00:01:37.000] response: { "responseRequired": false } -Info 54 [00:01:40.000] request: +Info 52 [00:01:38.000] request: { "command": "geterrForProject", "arguments": { @@ -318,7 +316,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 55 [00:01:41.000] response: +Info 53 [00:01:39.000] response: { "responseRequired": false } @@ -346,7 +344,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 56 [00:01:42.000] event: +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 @@ -396,7 +394,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 57 [00:01:43.000] event: +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) @@ -446,7 +444,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 58 [00:01:44.000] event: +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) @@ -496,7 +494,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 59 [00:01:45.000] event: +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 @@ -546,7 +544,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 60 [00:01:46.000] event: +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) @@ -596,9 +594,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 61 [00:01:47.000] event: +Info 59 [00:01:45.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: +Info 60 [00:01:46.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -624,7 +622,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 63 [00:01:49.000] request: +Info 61 [00:01:47.000] request: { "command": "geterrForProject", "arguments": { @@ -682,7 +680,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 64 [00:01:50.000] response: +Info 62 [00:01:48.000] response: { "responseRequired": false } @@ -710,7 +708,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 65 [00:01:51.000] event: +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 @@ -760,7 +758,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 66 [00:01:52.000] event: +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) @@ -810,9 +808,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 67 [00:01:53.000] event: +Info 65 [00:01:51.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: +Info 66 [00:01:52.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferences/ancestor-and-project-ref-management.js b/tests/baselines/reference/tsserver/projectReferences/ancestor-and-project-ref-management.js index d0e98836dba58..73929bb8c9803 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 @@ -371,9 +371,8 @@ Info 6 [00:01:20.000] Config: /user/username/projects/container/compositeExec } ] } -Info 7 [00:01:21.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json -Info 9 [00:01:23.000] Config: /user/username/projects/container/lib/tsconfig.json : { +Info 7 [00:01:21.000] Starting updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json +Info 8 [00:01:22.000] Config: /user/username/projects/container/lib/tsconfig.json : { "rootNames": [ "/user/username/projects/container/lib/index.ts" ], @@ -384,16 +383,16 @@ Info 9 [00:01:23.000] Config: /user/username/projects/container/lib/tsconfig. "configFilePath": "/user/username/projects/container/lib/tsconfig.json" } } -Info 10 [00:01:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file -Info 11 [00:01:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/index.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:01:27.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info 14 [00:01:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info 15 [00:01:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info 16 [00:01:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info 17 [00:01:31.000] Finishing updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 18 [00:01:32.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 19 [00:01:33.000] Files (3) +Info 9 [00:01:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file +Info 10 [00:01:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/index.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:25.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots +Info 13 [00:01:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots +Info 14 [00:01:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots +Info 15 [00:01:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots +Info 16 [00:01:30.000] Finishing updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:31.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 18 [00:01:32.000] Files (3) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts /user/username/projects/container/compositeExec/index.ts @@ -406,24 +405,24 @@ Info 19 [00:01:33.000] Files (3) index.ts Part of 'files' list in tsconfig.json -Info 20 [00:01:34.000] ----------------------------------------------- -Info 21 [00:01:35.000] Search path: /user/username/projects/container/compositeExec -Info 22 [00:01:36.000] For info: /user/username/projects/container/compositeExec/tsconfig.json :: Config file name: /user/username/projects/container/tsconfig.json -Info 23 [00:01:37.000] Creating configuration project /user/username/projects/container/tsconfig.json -Info 24 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file -Info 25 [00:01:39.000] Search path: /user/username/projects/container -Info 26 [00:01:40.000] For info: /user/username/projects/container/tsconfig.json :: No config files found. -Info 27 [00:01:41.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 27 [00:01:42.000] Files (3) - -Info 27 [00:01:43.000] ----------------------------------------------- -Info 27 [00:01:44.000] Project '/user/username/projects/container/tsconfig.json' (Configured) -Info 27 [00:01:45.000] Files (0) InitialLoadPending - -Info 27 [00:01:46.000] ----------------------------------------------- -Info 27 [00:01:47.000] Open files: -Info 27 [00:01:48.000] FileName: /user/username/projects/container/compositeExec/index.ts ProjectRootPath: undefined -Info 27 [00:01:49.000] Projects: /user/username/projects/container/compositeExec/tsconfig.json +Info 19 [00:01:33.000] ----------------------------------------------- +Info 20 [00:01:34.000] Search path: /user/username/projects/container/compositeExec +Info 21 [00:01:35.000] For info: /user/username/projects/container/compositeExec/tsconfig.json :: Config file name: /user/username/projects/container/tsconfig.json +Info 22 [00:01:36.000] Creating configuration project /user/username/projects/container/tsconfig.json +Info 23 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file +Info 24 [00:01:38.000] Search path: /user/username/projects/container +Info 25 [00:01:39.000] For info: /user/username/projects/container/tsconfig.json :: No config files found. +Info 26 [00:01:40.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 26 [00:01:41.000] Files (3) + +Info 26 [00:01:42.000] ----------------------------------------------- +Info 26 [00:01:43.000] Project '/user/username/projects/container/tsconfig.json' (Configured) +Info 26 [00:01:44.000] Files (0) InitialLoadPending + +Info 26 [00:01:45.000] ----------------------------------------------- +Info 26 [00:01:46.000] Open files: +Info 26 [00:01:47.000] FileName: /user/username/projects/container/compositeExec/index.ts ProjectRootPath: undefined +Info 26 [00:01:48.000] Projects: /user/username/projects/container/compositeExec/tsconfig.json After request PolledWatches:: @@ -446,11 +445,11 @@ FsWatches:: FsWatchesRecursive:: -Info 27 [00:01:50.000] response: +Info 26 [00:01:49.000] response: { "responseRequired": false } -Info 28 [00:01:51.000] request: +Info 27 [00:01:50.000] request: { "seq": 0, "type": "request", @@ -481,17 +480,16 @@ FsWatches:: FsWatchesRecursive:: -Info 29 [00:01:52.000] Search path: /user/username/projects/temp -Info 30 [00:01:53.000] For info: /user/username/projects/temp/temp.ts :: No config files found. -Info 31 [00:01:54.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 33 [00:01:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 34 [00:01:57.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 35 [00:01:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 36 [00:01:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 37 [00:02:00.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:02:01.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 39 [00:02:02.000] Files (2) +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 +Info 31 [00:01:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 32 [00:01:55.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 33 [00:01:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 34 [00:01:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 35 [00:01:58.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:59.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 37 [00:02:00.000] Files (2) /a/lib/lib.d.ts /user/username/projects/temp/temp.ts @@ -501,24 +499,24 @@ Info 39 [00:02:02.000] Files (2) temp.ts Root file specified for compilation -Info 40 [00:02:03.000] ----------------------------------------------- -Info 41 [00:02:04.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 41 [00:02:05.000] Files (3) +Info 38 [00:02:01.000] ----------------------------------------------- +Info 39 [00:02:02.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 39 [00:02:03.000] Files (3) -Info 41 [00:02:06.000] ----------------------------------------------- -Info 41 [00:02:07.000] Project '/user/username/projects/container/tsconfig.json' (Configured) -Info 41 [00:02:08.000] Files (0) InitialLoadPending +Info 39 [00:02:04.000] ----------------------------------------------- +Info 39 [00:02:05.000] Project '/user/username/projects/container/tsconfig.json' (Configured) +Info 39 [00:02:06.000] Files (0) InitialLoadPending -Info 41 [00:02:09.000] ----------------------------------------------- -Info 41 [00:02:10.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 41 [00:02:11.000] Files (2) +Info 39 [00:02:07.000] ----------------------------------------------- +Info 39 [00:02:08.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 39 [00:02:09.000] Files (2) -Info 41 [00:02:12.000] ----------------------------------------------- -Info 41 [00:02:13.000] Open files: -Info 41 [00:02:14.000] FileName: /user/username/projects/container/compositeExec/index.ts ProjectRootPath: undefined -Info 41 [00:02:15.000] Projects: /user/username/projects/container/compositeExec/tsconfig.json -Info 41 [00:02:16.000] FileName: /user/username/projects/temp/temp.ts ProjectRootPath: undefined -Info 41 [00:02:17.000] Projects: /dev/null/inferredProject1* +Info 39 [00:02:10.000] ----------------------------------------------- +Info 39 [00:02:11.000] Open files: +Info 39 [00:02:12.000] FileName: /user/username/projects/container/compositeExec/index.ts ProjectRootPath: undefined +Info 39 [00:02:13.000] Projects: /user/username/projects/container/compositeExec/tsconfig.json +Info 39 [00:02:14.000] FileName: /user/username/projects/temp/temp.ts ProjectRootPath: undefined +Info 39 [00:02:15.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -547,11 +545,11 @@ FsWatches:: FsWatchesRecursive:: -Info 41 [00:02:18.000] response: +Info 39 [00:02:16.000] response: { "responseRequired": false } -Info 42 [00:02:19.000] request: +Info 40 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -590,18 +588,17 @@ FsWatches:: FsWatchesRecursive:: -Info 43 [00:02:20.000] Search path: /user/username/projects/container/lib -Info 44 [00:02:21.000] For info: /user/username/projects/container/lib/index.ts :: Config file name: /user/username/projects/container/lib/tsconfig.json -Info 45 [00:02:22.000] Creating configuration project /user/username/projects/container/lib/tsconfig.json -Info 46 [00:02:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 47 [00:02:24.000] Starting updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json -Info 48 [00:02:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info 49 [00:02:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info 50 [00:02:27.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info 51 [00:02:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info 52 [00:02:29.000] Finishing updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 53 [00:02:30.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) -Info 54 [00:02:31.000] Files (2) +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 +Info 44 [00:02:21.000] Starting updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json +Info 45 [00:02:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots +Info 46 [00:02:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots +Info 47 [00:02:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots +Info 48 [00:02:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots +Info 49 [00:02:26.000] Finishing updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 50 [00:02:27.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) +Info 51 [00:02:28.000] Files (2) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts @@ -611,9 +608,9 @@ Info 54 [00:02:31.000] Files (2) index.ts Part of 'files' list in tsconfig.json -Info 55 [00:02:32.000] ----------------------------------------------- -Info 56 [00:02:33.000] Loading configured project /user/username/projects/container/tsconfig.json -Info 57 [00:02:34.000] Config: /user/username/projects/container/tsconfig.json : { +Info 52 [00:02:29.000] ----------------------------------------------- +Info 53 [00:02:30.000] Loading configured project /user/username/projects/container/tsconfig.json +Info 54 [00:02:31.000] Config: /user/username/projects/container/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/container/tsconfig.json" @@ -629,9 +626,8 @@ Info 57 [00:02:34.000] Config: /user/username/projects/container/tsconfig.json } ] } -Info 58 [00:02:35.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 59 [00:02:36.000] Starting updateGraphWorker: Project: /user/username/projects/container/tsconfig.json -Info 60 [00:02:37.000] Config: /user/username/projects/container/exec/tsconfig.json : { +Info 55 [00:02:32.000] Starting updateGraphWorker: Project: /user/username/projects/container/tsconfig.json +Info 56 [00:02:33.000] Config: /user/username/projects/container/exec/tsconfig.json : { "rootNames": [ "/user/username/projects/container/exec/index.ts" ], @@ -647,22 +643,21 @@ Info 60 [00:02:37.000] Config: /user/username/projects/container/exec/tsconfig } ] } -Info 61 [00:02:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file -Info 62 [00:02:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info 63 [00:02:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info 64 [00:02:41.000] Finishing updateGraphWorker: Project: /user/username/projects/container/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 65 [00:02:42.000] Different program with same set of files -Info 66 [00:02:43.000] Creating configuration project /user/username/projects/container/exec/tsconfig.json -Info 67 [00:02:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 68 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/index.ts 500 undefined WatchType: Closed Script info -Info 69 [00:02:46.000] Starting updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json -Info 70 [00:02:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info 71 [00:02:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info 72 [00:02:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info 73 [00:02:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info 74 [00:02:51.000] Finishing updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 75 [00:02:52.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) -Info 76 [00:02:53.000] Files (3) +Info 57 [00:02:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file +Info 58 [00:02:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots +Info 59 [00:02:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots +Info 60 [00:02:37.000] Finishing updateGraphWorker: Project: /user/username/projects/container/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 61 [00:02:38.000] Different program with same set of files +Info 62 [00:02:39.000] Creating configuration project /user/username/projects/container/exec/tsconfig.json +Info 63 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/index.ts 500 undefined WatchType: Closed Script info +Info 64 [00:02:41.000] Starting updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json +Info 65 [00:02:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots +Info 66 [00:02:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots +Info 67 [00:02:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots +Info 68 [00:02:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots +Info 69 [00:02:46.000] Finishing updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 70 [00:02:47.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) +Info 71 [00:02:48.000] Files (3) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts /user/username/projects/container/exec/index.ts @@ -675,9 +670,9 @@ Info 76 [00:02:53.000] Files (3) index.ts Part of 'files' list in tsconfig.json -Info 77 [00:02:54.000] ----------------------------------------------- -Info 78 [00:02:55.000] Search path: /user/username/projects/container/lib -Info 79 [00:02:56.000] For info: /user/username/projects/container/lib/index.ts :: Config file name: /user/username/projects/container/lib/tsconfig.json +Info 72 [00:02:49.000] ----------------------------------------------- +Info 73 [00:02:50.000] Search path: /user/username/projects/container/lib +Info 74 [00:02:51.000] For info: /user/username/projects/container/lib/index.ts :: Config file name: /user/username/projects/container/lib/tsconfig.json After request PolledWatches:: @@ -714,7 +709,7 @@ FsWatches:: FsWatchesRecursive:: -Info 80 [00:02:57.000] response: +Info 75 [00:02:52.000] response: { "response": { "info": { @@ -792,33 +787,33 @@ Info 80 [00:02:57.000] response: }, "responseRequired": true } -Info 81 [00:02:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 82 [00:02:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 83 [00:03:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/temp.ts 500 undefined WatchType: Closed Script info -Info 84 [00:03:01.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 84 [00:03:02.000] Files (3) - -Info 84 [00:03:03.000] ----------------------------------------------- -Info 84 [00:03:04.000] Project '/user/username/projects/container/tsconfig.json' (Configured) -Info 84 [00:03:05.000] Files (0) - -Info 84 [00:03:06.000] ----------------------------------------------- -Info 84 [00:03:07.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) -Info 84 [00:03:08.000] Files (2) - -Info 84 [00:03:09.000] ----------------------------------------------- -Info 84 [00:03:10.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) -Info 84 [00:03:11.000] Files (3) - -Info 84 [00:03:12.000] ----------------------------------------------- -Info 84 [00:03:13.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 84 [00:03:14.000] Files (2) - -Info 84 [00:03:15.000] ----------------------------------------------- -Info 84 [00:03:16.000] Open files: -Info 84 [00:03:17.000] FileName: /user/username/projects/container/compositeExec/index.ts ProjectRootPath: undefined -Info 84 [00:03:18.000] Projects: /user/username/projects/container/compositeExec/tsconfig.json -Info 84 [00:03:19.000] request: +Info 76 [00:02:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 77 [00:02:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 78 [00:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/temp.ts 500 undefined WatchType: Closed Script info +Info 79 [00:02:56.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 79 [00:02:57.000] Files (3) + +Info 79 [00:02:58.000] ----------------------------------------------- +Info 79 [00:02:59.000] Project '/user/username/projects/container/tsconfig.json' (Configured) +Info 79 [00:03:00.000] Files (0) + +Info 79 [00:03:01.000] ----------------------------------------------- +Info 79 [00:03:02.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) +Info 79 [00:03:03.000] Files (2) + +Info 79 [00:03:04.000] ----------------------------------------------- +Info 79 [00:03:05.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) +Info 79 [00:03:06.000] Files (3) + +Info 79 [00:03:07.000] ----------------------------------------------- +Info 79 [00:03:08.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 79 [00:03:09.000] Files (2) + +Info 79 [00:03:10.000] ----------------------------------------------- +Info 79 [00:03:11.000] Open files: +Info 79 [00:03:12.000] FileName: /user/username/projects/container/compositeExec/index.ts ProjectRootPath: undefined +Info 79 [00:03:13.000] Projects: /user/username/projects/container/compositeExec/tsconfig.json +Info 79 [00:03:14.000] request: { "seq": 0, "type": "request", @@ -861,15 +856,15 @@ FsWatches:: FsWatchesRecursive:: -Info 85 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/temp.ts 500 undefined WatchType: Closed Script info -Info 86 [00:03:21.000] Search path: /user/username/projects/temp -Info 87 [00:03:22.000] For info: /user/username/projects/temp/temp.ts :: No config files found. -Info 88 [00:03:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 89 [00:03:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 90 [00:03:25.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 91 [00:03:26.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 92 [00:03:27.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 93 [00:03:28.000] Files (2) +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. +Info 83 [00:03:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 84 [00:03:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 85 [00:03:20.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 86 [00:03:21.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 87 [00:03:22.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 88 [00:03:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/temp/temp.ts @@ -879,32 +874,32 @@ Info 93 [00:03:28.000] Files (2) temp.ts Root file specified for compilation -Info 94 [00:03:29.000] ----------------------------------------------- -Info 95 [00:03:30.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 95 [00:03:31.000] Files (3) +Info 89 [00:03:24.000] ----------------------------------------------- +Info 90 [00:03:25.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 90 [00:03:26.000] Files (3) -Info 95 [00:03:32.000] ----------------------------------------------- -Info 95 [00:03:33.000] Project '/user/username/projects/container/tsconfig.json' (Configured) -Info 95 [00:03:34.000] Files (0) +Info 90 [00:03:27.000] ----------------------------------------------- +Info 90 [00:03:28.000] Project '/user/username/projects/container/tsconfig.json' (Configured) +Info 90 [00:03:29.000] Files (0) -Info 95 [00:03:35.000] ----------------------------------------------- -Info 95 [00:03:36.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) -Info 95 [00:03:37.000] Files (2) +Info 90 [00:03:30.000] ----------------------------------------------- +Info 90 [00:03:31.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) +Info 90 [00:03:32.000] Files (2) -Info 95 [00:03:38.000] ----------------------------------------------- -Info 95 [00:03:39.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) -Info 95 [00:03:40.000] Files (3) +Info 90 [00:03:33.000] ----------------------------------------------- +Info 90 [00:03:34.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) +Info 90 [00:03:35.000] Files (3) -Info 95 [00:03:41.000] ----------------------------------------------- -Info 95 [00:03:42.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 95 [00:03:43.000] Files (2) +Info 90 [00:03:36.000] ----------------------------------------------- +Info 90 [00:03:37.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 90 [00:03:38.000] Files (2) -Info 95 [00:03:44.000] ----------------------------------------------- -Info 95 [00:03:45.000] Open files: -Info 95 [00:03:46.000] FileName: /user/username/projects/container/compositeExec/index.ts ProjectRootPath: undefined -Info 95 [00:03:47.000] Projects: /user/username/projects/container/compositeExec/tsconfig.json -Info 95 [00:03:48.000] FileName: /user/username/projects/temp/temp.ts ProjectRootPath: undefined -Info 95 [00:03:49.000] Projects: /dev/null/inferredProject1* +Info 90 [00:03:39.000] ----------------------------------------------- +Info 90 [00:03:40.000] Open files: +Info 90 [00:03:41.000] FileName: /user/username/projects/container/compositeExec/index.ts ProjectRootPath: undefined +Info 90 [00:03:42.000] Projects: /user/username/projects/container/compositeExec/tsconfig.json +Info 90 [00:03:43.000] FileName: /user/username/projects/temp/temp.ts ProjectRootPath: undefined +Info 90 [00:03:44.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -941,59 +936,59 @@ FsWatches:: FsWatchesRecursive:: -Info 95 [00:03:50.000] response: +Info 90 [00:03:45.000] response: { "responseRequired": false } -Info 96 [00:03:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/index.ts 500 undefined WatchType: Closed Script info -Info 97 [00:03:52.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 97 [00:03:53.000] Files (3) - -Info 97 [00:03:54.000] ----------------------------------------------- -Info 97 [00:03:55.000] Project '/user/username/projects/container/tsconfig.json' (Configured) -Info 97 [00:03:56.000] Files (0) - -Info 97 [00:03:57.000] ----------------------------------------------- -Info 97 [00:03:58.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) -Info 97 [00:03:59.000] Files (2) - -Info 97 [00:04:00.000] ----------------------------------------------- -Info 97 [00:04:01.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) -Info 97 [00:04:02.000] Files (3) - -Info 97 [00:04:03.000] ----------------------------------------------- -Info 97 [00:04:04.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 97 [00:04:05.000] Files (2) - -Info 97 [00:04:06.000] ----------------------------------------------- -Info 97 [00:04:07.000] Open files: -Info 97 [00:04:08.000] FileName: /user/username/projects/temp/temp.ts ProjectRootPath: undefined -Info 97 [00:04:09.000] Projects: /dev/null/inferredProject1* -Info 97 [00:04:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 98 [00:04:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 99 [00:04:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/temp.ts 500 undefined WatchType: Closed Script info -Info 100 [00:04:13.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 100 [00:04:14.000] Files (3) - -Info 100 [00:04:15.000] ----------------------------------------------- -Info 100 [00:04:16.000] Project '/user/username/projects/container/tsconfig.json' (Configured) -Info 100 [00:04:17.000] Files (0) - -Info 100 [00:04:18.000] ----------------------------------------------- -Info 100 [00:04:19.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) -Info 100 [00:04:20.000] Files (2) - -Info 100 [00:04:21.000] ----------------------------------------------- -Info 100 [00:04:22.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) -Info 100 [00:04:23.000] Files (3) - -Info 100 [00:04:24.000] ----------------------------------------------- -Info 100 [00:04:25.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 100 [00:04:26.000] Files (2) - -Info 100 [00:04:27.000] ----------------------------------------------- -Info 100 [00:04:28.000] Open files: -Info 100 [00:04:29.000] request: +Info 91 [00:03:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/index.ts 500 undefined WatchType: Closed Script info +Info 92 [00:03:47.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 92 [00:03:48.000] Files (3) + +Info 92 [00:03:49.000] ----------------------------------------------- +Info 92 [00:03:50.000] Project '/user/username/projects/container/tsconfig.json' (Configured) +Info 92 [00:03:51.000] Files (0) + +Info 92 [00:03:52.000] ----------------------------------------------- +Info 92 [00:03:53.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) +Info 92 [00:03:54.000] Files (2) + +Info 92 [00:03:55.000] ----------------------------------------------- +Info 92 [00:03:56.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) +Info 92 [00:03:57.000] Files (3) + +Info 92 [00:03:58.000] ----------------------------------------------- +Info 92 [00:03:59.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 92 [00:04:00.000] Files (2) + +Info 92 [00:04:01.000] ----------------------------------------------- +Info 92 [00:04:02.000] Open files: +Info 92 [00:04:03.000] FileName: /user/username/projects/temp/temp.ts ProjectRootPath: undefined +Info 92 [00:04:04.000] Projects: /dev/null/inferredProject1* +Info 92 [00:04:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 93 [00:04:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 94 [00:04:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/temp.ts 500 undefined WatchType: Closed Script info +Info 95 [00:04:08.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 95 [00:04:09.000] Files (3) + +Info 95 [00:04:10.000] ----------------------------------------------- +Info 95 [00:04:11.000] Project '/user/username/projects/container/tsconfig.json' (Configured) +Info 95 [00:04:12.000] Files (0) + +Info 95 [00:04:13.000] ----------------------------------------------- +Info 95 [00:04:14.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) +Info 95 [00:04:15.000] Files (2) + +Info 95 [00:04:16.000] ----------------------------------------------- +Info 95 [00:04:17.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) +Info 95 [00:04:18.000] Files (3) + +Info 95 [00:04:19.000] ----------------------------------------------- +Info 95 [00:04:20.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 95 [00:04:21.000] Files (2) + +Info 95 [00:04:22.000] ----------------------------------------------- +Info 95 [00:04:23.000] Open files: +Info 95 [00:04:24.000] request: { "seq": 0, "type": "request", @@ -1038,15 +1033,15 @@ FsWatches:: FsWatchesRecursive:: -Info 101 [00:04:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/temp/temp.ts 500 undefined WatchType: Closed Script info -Info 102 [00:04:31.000] Search path: /user/username/projects/temp -Info 103 [00:04:32.000] For info: /user/username/projects/temp/temp.ts :: No config files found. -Info 104 [00:04:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 105 [00:04:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 106 [00:04:35.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 107 [00:04:36.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 108 [00:04:37.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 109 [00:04:38.000] Files (2) +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. +Info 99 [00:04:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 100 [00:04:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 101 [00:04:30.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 102 [00:04:31.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 103 [00:04:32.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 104 [00:04:33.000] Files (2) /a/lib/lib.d.ts /user/username/projects/temp/temp.ts @@ -1056,10 +1051,10 @@ Info 109 [00:04:38.000] Files (2) temp.ts Root file specified for compilation -Info 110 [00:04:39.000] ----------------------------------------------- -Info 111 [00:04:40.000] `remove Project:: -Info 112 [00:04:41.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 113 [00:04:42.000] Files (3) +Info 105 [00:04:34.000] ----------------------------------------------- +Info 106 [00:04:35.000] `remove Project:: +Info 107 [00:04:36.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 108 [00:04:37.000] Files (3) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts /user/username/projects/container/compositeExec/index.ts @@ -1072,25 +1067,25 @@ Info 113 [00:04:42.000] Files (3) index.ts Part of 'files' list in tsconfig.json -Info 114 [00:04:43.000] ----------------------------------------------- -Info 115 [00:04:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/compositeExec/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info 116 [00:04:45.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/compositeExec/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info 117 [00:04:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info 118 [00:04:47.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info 119 [00:04:48.000] `remove Project:: -Info 120 [00:04:49.000] Project '/user/username/projects/container/tsconfig.json' (Configured) -Info 121 [00:04:50.000] Files (0) +Info 109 [00:04:38.000] ----------------------------------------------- +Info 110 [00:04:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/compositeExec/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots +Info 111 [00:04:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/compositeExec/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots +Info 112 [00:04:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots +Info 113 [00:04:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots +Info 114 [00:04:43.000] `remove Project:: +Info 115 [00:04:44.000] Project '/user/username/projects/container/tsconfig.json' (Configured) +Info 116 [00:04:45.000] Files (0) -Info 122 [00:04:51.000] ----------------------------------------------- -Info 123 [00:04:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/compositeExec/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file -Info 124 [00:04:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file -Info 125 [00:04:54.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info 126 [00:04:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info 127 [00:04:56.000] `remove Project:: -Info 128 [00:04:57.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) -Info 129 [00:04:58.000] Files (2) +Info 117 [00:04:46.000] ----------------------------------------------- +Info 118 [00:04:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/compositeExec/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file +Info 119 [00:04:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file +Info 120 [00:04:49.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots +Info 121 [00:04:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots +Info 122 [00:04:51.000] `remove Project:: +Info 123 [00:04:52.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) +Info 124 [00:04:53.000] Files (2) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts @@ -1100,14 +1095,14 @@ Info 129 [00:04:58.000] Files (2) index.ts Part of 'files' list in tsconfig.json -Info 130 [00:04:59.000] ----------------------------------------------- -Info 131 [00:05:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info 132 [00:05:01.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info 133 [00:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info 134 [00:05:03.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info 135 [00:05:04.000] `remove Project:: -Info 136 [00:05:05.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) -Info 137 [00:05:06.000] Files (3) +Info 125 [00:04:54.000] ----------------------------------------------- +Info 126 [00:04:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots +Info 127 [00:04:56.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots +Info 128 [00:04:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots +Info 129 [00:04:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots +Info 130 [00:04:59.000] `remove Project:: +Info 131 [00:05:00.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) +Info 132 [00:05:01.000] Files (3) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts /user/username/projects/container/exec/index.ts @@ -1120,23 +1115,23 @@ Info 137 [00:05:06.000] Files (3) index.ts Part of 'files' list in tsconfig.json -Info 138 [00:05:07.000] ----------------------------------------------- -Info 139 [00:05:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/lib/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file -Info 140 [00:05:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/exec/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file -Info 141 [00:05:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info 142 [00:05:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info 143 [00:05:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info 144 [00:05:13.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info 145 [00:05:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/compositeExec/index.ts 500 undefined WatchType: Closed Script info -Info 146 [00:05:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/lib/index.ts 500 undefined WatchType: Closed Script info -Info 147 [00:05:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/exec/index.ts 500 undefined WatchType: Closed Script info -Info 148 [00:05:17.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 148 [00:05:18.000] Files (2) - -Info 148 [00:05:19.000] ----------------------------------------------- -Info 148 [00:05:20.000] Open files: -Info 148 [00:05:21.000] FileName: /user/username/projects/temp/temp.ts ProjectRootPath: undefined -Info 148 [00:05:22.000] Projects: /dev/null/inferredProject1* +Info 133 [00:05:02.000] ----------------------------------------------- +Info 134 [00:05:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/lib/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file +Info 135 [00:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/exec/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file +Info 136 [00:05:05.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots +Info 137 [00:05:06.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots +Info 138 [00:05:07.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots +Info 139 [00:05:08.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots +Info 140 [00:05:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/compositeExec/index.ts 500 undefined WatchType: Closed Script info +Info 141 [00:05:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/lib/index.ts 500 undefined WatchType: Closed Script info +Info 142 [00:05:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/container/exec/index.ts 500 undefined WatchType: Closed Script info +Info 143 [00:05:12.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 143 [00:05:13.000] Files (2) + +Info 143 [00:05:14.000] ----------------------------------------------- +Info 143 [00:05:15.000] Open files: +Info 143 [00:05:16.000] FileName: /user/username/projects/temp/temp.ts ProjectRootPath: undefined +Info 143 [00:05:17.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -1153,7 +1148,7 @@ FsWatches:: FsWatchesRecursive:: -Info 148 [00:05:23.000] response: +Info 143 [00:05:18.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project-when-built-with-disableSourceOfProjectReferenceRedirect.js b/tests/baselines/reference/tsserver/projectReferences/auto-import-with-referenced-project-when-built-with-disableSourceOfProjectReferenceRedirect.js index b365fc49f5f9d..7b95ea1bc13f3 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 @@ -216,10 +216,9 @@ Info 6 [00:01:17.000] Config: /user/username/projects/myproject/app/src/progr } Info 7 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program 1 undefined Config: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Wild card directory Info 8 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program 1 undefined Config: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:20.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/bar.ts 500 undefined WatchType: Closed Script info -Info 11 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json -Info 12 [00:01:23.000] Config: /user/username/projects/myproject/shared/src/library/tsconfig.json : { +Info 9 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/bar.ts 500 undefined WatchType: Closed Script info +Info 10 [00:01:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json +Info 11 [00:01:22.000] Config: /user/username/projects/myproject/shared/src/library/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/shared/src/library/index.ts" ], @@ -229,31 +228,31 @@ Info 12 [00:01:23.000] Config: /user/username/projects/myproject/shared/src/li "configFilePath": "/user/username/projects/myproject/shared/src/library/tsconfig.json" } } -Info 13 [00:01:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Config file -Info 14 [00:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library 1 undefined Config: /user/username/projects/myproject/shared/src/library/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library 1 undefined Config: /user/username/projects/myproject/shared/src/library/tsconfig.json WatchType: Wild card directory -Info 16 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/bld/library/index.d.ts 500 undefined WatchType: Closed Script info -Info 17 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [00:01:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:01:31.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/package.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: File location affecting resolution -Info 27 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 28 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 29 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 30 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 31 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 32 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 33 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 34 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 35 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 36 [00:01:47.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) -Info 37 [00:01:48.000] Files (4) +Info 12 [00:01:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Config file +Info 13 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library 1 undefined Config: /user/username/projects/myproject/shared/src/library/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library 1 undefined Config: /user/username/projects/myproject/shared/src/library/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/bld/library/index.d.ts 500 undefined WatchType: Closed Script info +Info 16 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:01:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/package.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: File location affecting resolution +Info 26 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 27 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 28 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 29 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 30 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 31 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 32 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 33 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 34 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:46.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) +Info 36 [00:01:47.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/shared/bld/library/index.d.ts /user/username/projects/myproject/app/src/program/bar.ts @@ -269,24 +268,24 @@ Info 37 [00:01:48.000] Files (4) index.ts Matched by default include pattern '**/*' -Info 38 [00:01:49.000] ----------------------------------------------- -Info 39 [00:01:50.000] Search path: /user/username/projects/myproject/app/src/program -Info 40 [00:01:51.000] For info: /user/username/projects/myproject/app/src/program/tsconfig.json :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 41 [00:01:52.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 42 [00:01:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 43 [00:01:54.000] Search path: /user/username/projects/myproject -Info 44 [00:01:55.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. -Info 45 [00:01:56.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) -Info 45 [00:01:57.000] Files (4) - -Info 45 [00:01:58.000] ----------------------------------------------- -Info 45 [00:01:59.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 45 [00:02:00.000] Files (0) InitialLoadPending - -Info 45 [00:02:01.000] ----------------------------------------------- -Info 45 [00:02:02.000] Open files: -Info 45 [00:02:03.000] FileName: /user/username/projects/myproject/app/src/program/index.ts ProjectRootPath: undefined -Info 45 [00:02:04.000] Projects: /user/username/projects/myproject/app/src/program/tsconfig.json +Info 37 [00:01:48.000] ----------------------------------------------- +Info 38 [00:01:49.000] Search path: /user/username/projects/myproject/app/src/program +Info 39 [00:01:50.000] For info: /user/username/projects/myproject/app/src/program/tsconfig.json :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 40 [00:01:51.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 41 [00:01:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 42 [00:01:53.000] Search path: /user/username/projects/myproject +Info 43 [00:01:54.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. +Info 44 [00:01:55.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) +Info 44 [00:01:56.000] Files (4) + +Info 44 [00:01:57.000] ----------------------------------------------- +Info 44 [00:01:58.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 44 [00:01:59.000] Files (0) InitialLoadPending + +Info 44 [00:02:00.000] ----------------------------------------------- +Info 44 [00:02:01.000] Open files: +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/app/src/program/index.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/app/src/program/tsconfig.json After request PolledWatches:: @@ -329,11 +328,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [00:02:05.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 46 [00:02:06.000] request: +Info 45 [00:02:05.000] request: { "command": "getCodeFixes", "arguments": { @@ -391,8 +390,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [00:02:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 48 [00:02:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +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:: @@ -435,7 +434,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 49 [00:02:09.000] response: +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 8078516f86c91..76a7fa774e38c 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 @@ -215,10 +215,9 @@ Info 6 [00:01:17.000] Config: /user/username/projects/myproject/app/src/progr } Info 7 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program 1 undefined Config: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Wild card directory Info 8 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program 1 undefined Config: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:20.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/bar.ts 500 undefined WatchType: Closed Script info -Info 11 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json -Info 12 [00:01:23.000] Config: /user/username/projects/myproject/shared/src/library/tsconfig.json : { +Info 9 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/bar.ts 500 undefined WatchType: Closed Script info +Info 10 [00:01:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json +Info 11 [00:01:22.000] Config: /user/username/projects/myproject/shared/src/library/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/shared/src/library/index.ts" ], @@ -228,31 +227,31 @@ Info 12 [00:01:23.000] Config: /user/username/projects/myproject/shared/src/li "configFilePath": "/user/username/projects/myproject/shared/src/library/tsconfig.json" } } -Info 13 [00:01:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Config file -Info 14 [00:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library 1 undefined Config: /user/username/projects/myproject/shared/src/library/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library 1 undefined Config: /user/username/projects/myproject/shared/src/library/tsconfig.json WatchType: Wild card directory -Info 16 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library/index.ts 500 undefined WatchType: Closed Script info -Info 17 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [00:01:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:01:31.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/package.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: File location affecting resolution -Info 27 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 28 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 29 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 30 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 31 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 32 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 33 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 34 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 35 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 36 [00:01:47.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) -Info 37 [00:01:48.000] Files (4) +Info 12 [00:01:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Config file +Info 13 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library 1 undefined Config: /user/username/projects/myproject/shared/src/library/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library 1 undefined Config: /user/username/projects/myproject/shared/src/library/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library/index.ts 500 undefined WatchType: Closed Script info +Info 16 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:01:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/package.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: File location affecting resolution +Info 26 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 27 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 28 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 29 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 30 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 31 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 32 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 33 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 34 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:46.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) +Info 36 [00:01:47.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/shared/src/library/index.ts /user/username/projects/myproject/app/src/program/bar.ts @@ -268,24 +267,24 @@ Info 37 [00:01:48.000] Files (4) index.ts Matched by default include pattern '**/*' -Info 38 [00:01:49.000] ----------------------------------------------- -Info 39 [00:01:50.000] Search path: /user/username/projects/myproject/app/src/program -Info 40 [00:01:51.000] For info: /user/username/projects/myproject/app/src/program/tsconfig.json :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 41 [00:01:52.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 42 [00:01:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 43 [00:01:54.000] Search path: /user/username/projects/myproject -Info 44 [00:01:55.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. -Info 45 [00:01:56.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) -Info 45 [00:01:57.000] Files (4) - -Info 45 [00:01:58.000] ----------------------------------------------- -Info 45 [00:01:59.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 45 [00:02:00.000] Files (0) InitialLoadPending - -Info 45 [00:02:01.000] ----------------------------------------------- -Info 45 [00:02:02.000] Open files: -Info 45 [00:02:03.000] FileName: /user/username/projects/myproject/app/src/program/index.ts ProjectRootPath: undefined -Info 45 [00:02:04.000] Projects: /user/username/projects/myproject/app/src/program/tsconfig.json +Info 37 [00:01:48.000] ----------------------------------------------- +Info 38 [00:01:49.000] Search path: /user/username/projects/myproject/app/src/program +Info 39 [00:01:50.000] For info: /user/username/projects/myproject/app/src/program/tsconfig.json :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 40 [00:01:51.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 41 [00:01:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 42 [00:01:53.000] Search path: /user/username/projects/myproject +Info 43 [00:01:54.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. +Info 44 [00:01:55.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) +Info 44 [00:01:56.000] Files (4) + +Info 44 [00:01:57.000] ----------------------------------------------- +Info 44 [00:01:58.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 44 [00:01:59.000] Files (0) InitialLoadPending + +Info 44 [00:02:00.000] ----------------------------------------------- +Info 44 [00:02:01.000] Open files: +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/app/src/program/index.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/app/src/program/tsconfig.json After request PolledWatches:: @@ -328,11 +327,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [00:02:05.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 46 [00:02:06.000] request: +Info 45 [00:02:05.000] request: { "command": "getCodeFixes", "arguments": { @@ -390,8 +389,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [00:02:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 48 [00:02:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +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:: @@ -434,7 +433,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 49 [00:02:09.000] response: +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 4cc528348d41e..07bba00668fbb 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 @@ -74,10 +74,9 @@ Info 6 [00:00:53.000] Config: /user/username/projects/myproject/app/src/progr } Info 7 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program 1 undefined Config: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Wild card directory Info 8 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program 1 undefined Config: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:56.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/bar.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json -Info 12 [00:00:59.000] Config: /user/username/projects/myproject/shared/src/library/tsconfig.json : { +Info 9 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/bar.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:57.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json +Info 11 [00:00:58.000] Config: /user/username/projects/myproject/shared/src/library/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/shared/src/library/index.ts" ], @@ -87,31 +86,31 @@ Info 12 [00:00:59.000] Config: /user/username/projects/myproject/shared/src/li "configFilePath": "/user/username/projects/myproject/shared/src/library/tsconfig.json" } } -Info 13 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Config file -Info 14 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library 1 undefined Config: /user/username/projects/myproject/shared/src/library/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library 1 undefined Config: /user/username/projects/myproject/shared/src/library/tsconfig.json WatchType: Wild card directory -Info 16 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library/index.ts 500 undefined WatchType: Closed Script info -Info 17 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/package.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: File location affecting resolution -Info 27 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 28 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 29 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 30 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 31 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 32 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 33 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 34 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots -Info 35 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 36 [00:01:23.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) -Info 37 [00:01:24.000] Files (4) +Info 12 [00:00:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Config file +Info 13 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library 1 undefined Config: /user/username/projects/myproject/shared/src/library/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library 1 undefined Config: /user/username/projects/myproject/shared/src/library/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/src/library/index.ts 500 undefined WatchType: Closed Script info +Info 16 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/shared/package.json 2000 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: File location affecting resolution +Info 26 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 27 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/program/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 28 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 29 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/src/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 30 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 31 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/app/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 32 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 33 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/app/src/program/tsconfig.json WatchType: Type roots +Info 34 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/app/src/program/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 35 [00:01:22.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) +Info 36 [00:01:23.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/shared/src/library/index.ts /user/username/projects/myproject/app/src/program/bar.ts @@ -127,24 +126,24 @@ Info 37 [00:01:24.000] Files (4) index.ts Matched by default include pattern '**/*' -Info 38 [00:01:25.000] ----------------------------------------------- -Info 39 [00:01:26.000] Search path: /user/username/projects/myproject/app/src/program -Info 40 [00:01:27.000] For info: /user/username/projects/myproject/app/src/program/tsconfig.json :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 41 [00:01:28.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 42 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 43 [00:01:30.000] Search path: /user/username/projects/myproject -Info 44 [00:01:31.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. -Info 45 [00:01:32.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) -Info 45 [00:01:33.000] Files (4) +Info 37 [00:01:24.000] ----------------------------------------------- +Info 38 [00:01:25.000] Search path: /user/username/projects/myproject/app/src/program +Info 39 [00:01:26.000] For info: /user/username/projects/myproject/app/src/program/tsconfig.json :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 40 [00:01:27.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 41 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 42 [00:01:29.000] Search path: /user/username/projects/myproject +Info 43 [00:01:30.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. +Info 44 [00:01:31.000] Project '/user/username/projects/myproject/app/src/program/tsconfig.json' (Configured) +Info 44 [00:01:32.000] Files (4) -Info 45 [00:01:34.000] ----------------------------------------------- -Info 45 [00:01:35.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 45 [00:01:36.000] Files (0) InitialLoadPending +Info 44 [00:01:33.000] ----------------------------------------------- +Info 44 [00:01:34.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 44 [00:01:35.000] Files (0) InitialLoadPending -Info 45 [00:01:37.000] ----------------------------------------------- -Info 45 [00:01:38.000] Open files: -Info 45 [00:01:39.000] FileName: /user/username/projects/myproject/app/src/program/index.ts ProjectRootPath: undefined -Info 45 [00:01:40.000] Projects: /user/username/projects/myproject/app/src/program/tsconfig.json +Info 44 [00:01:36.000] ----------------------------------------------- +Info 44 [00:01:37.000] Open files: +Info 44 [00:01:38.000] FileName: /user/username/projects/myproject/app/src/program/index.ts ProjectRootPath: undefined +Info 44 [00:01:39.000] Projects: /user/username/projects/myproject/app/src/program/tsconfig.json After request PolledWatches:: @@ -187,11 +186,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [00:01:41.000] response: +Info 44 [00:01:40.000] response: { "responseRequired": false } -Info 46 [00:01:42.000] request: +Info 45 [00:01:41.000] request: { "command": "getCodeFixes", "arguments": { @@ -249,8 +248,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 48 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +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:: @@ -293,7 +292,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 49 [00:01:45.000] response: +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 9503e1c507652..281d031e18123 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 @@ -368,9 +368,8 @@ Info 6 [00:01:16.000] Config: /user/username/projects/container/compositeExec } ] } -Info 7 [00:01:17.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [00:01:18.000] Starting updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json -Info 9 [00:01:19.000] Config: /user/username/projects/container/lib/tsconfig.json : { +Info 7 [00:01:17.000] Starting updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json +Info 8 [00:01:18.000] Config: /user/username/projects/container/lib/tsconfig.json : { "rootNames": [ "/user/username/projects/container/lib/index.ts" ], @@ -381,16 +380,16 @@ Info 9 [00:01:19.000] Config: /user/username/projects/container/lib/tsconfig. "configFilePath": "/user/username/projects/container/lib/tsconfig.json" } } -Info 10 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file -Info 11 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/index.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:22.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info 14 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info 15 [00:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info 16 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info 17 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 18 [00:01:28.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 19 [00:01:29.000] Files (3) +Info 9 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file +Info 10 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/index.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots +Info 13 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots +Info 14 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots +Info 15 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots +Info 16 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:27.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 18 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts /user/username/projects/container/compositeExec/index.ts @@ -403,24 +402,24 @@ Info 19 [00:01:29.000] Files (3) index.ts Part of 'files' list in tsconfig.json -Info 20 [00:01:30.000] ----------------------------------------------- -Info 21 [00:01:31.000] Search path: /user/username/projects/container/compositeExec -Info 22 [00:01:32.000] For info: /user/username/projects/container/compositeExec/tsconfig.json :: Config file name: /user/username/projects/container/tsconfig.json -Info 23 [00:01:33.000] Creating configuration project /user/username/projects/container/tsconfig.json -Info 24 [00:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file -Info 25 [00:01:35.000] Search path: /user/username/projects/container -Info 26 [00:01:36.000] For info: /user/username/projects/container/tsconfig.json :: No config files found. -Info 27 [00:01:37.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 27 [00:01:38.000] Files (3) - -Info 27 [00:01:39.000] ----------------------------------------------- -Info 27 [00:01:40.000] Project '/user/username/projects/container/tsconfig.json' (Configured) -Info 27 [00:01:41.000] Files (0) InitialLoadPending - -Info 27 [00:01:42.000] ----------------------------------------------- -Info 27 [00:01:43.000] Open files: -Info 27 [00:01:44.000] FileName: /user/username/projects/container/compositeExec/index.ts ProjectRootPath: undefined -Info 27 [00:01:45.000] Projects: /user/username/projects/container/compositeExec/tsconfig.json +Info 19 [00:01:29.000] ----------------------------------------------- +Info 20 [00:01:30.000] Search path: /user/username/projects/container/compositeExec +Info 21 [00:01:31.000] For info: /user/username/projects/container/compositeExec/tsconfig.json :: Config file name: /user/username/projects/container/tsconfig.json +Info 22 [00:01:32.000] Creating configuration project /user/username/projects/container/tsconfig.json +Info 23 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file +Info 24 [00:01:34.000] Search path: /user/username/projects/container +Info 25 [00:01:35.000] For info: /user/username/projects/container/tsconfig.json :: No config files found. +Info 26 [00:01:36.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 26 [00:01:37.000] Files (3) + +Info 26 [00:01:38.000] ----------------------------------------------- +Info 26 [00:01:39.000] Project '/user/username/projects/container/tsconfig.json' (Configured) +Info 26 [00:01:40.000] Files (0) InitialLoadPending + +Info 26 [00:01:41.000] ----------------------------------------------- +Info 26 [00:01:42.000] Open files: +Info 26 [00:01:43.000] FileName: /user/username/projects/container/compositeExec/index.ts ProjectRootPath: undefined +Info 26 [00:01:44.000] Projects: /user/username/projects/container/compositeExec/tsconfig.json After request PolledWatches:: @@ -443,11 +442,11 @@ FsWatches:: FsWatchesRecursive:: -Info 27 [00:01:46.000] response: +Info 26 [00:01:45.000] response: { "responseRequired": false } -Info 28 [00:01:47.000] request: +Info 27 [00:01:46.000] request: { "command": "rename", "arguments": { @@ -480,18 +479,17 @@ FsWatches:: FsWatchesRecursive:: -Info 29 [00:01:48.000] Search path: /user/username/projects/container/lib -Info 30 [00:01:49.000] For info: /user/username/projects/container/lib/index.ts :: Config file name: /user/username/projects/container/lib/tsconfig.json -Info 31 [00:01:50.000] Creating configuration project /user/username/projects/container/lib/tsconfig.json -Info 32 [00:01:51.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 33 [00:01:52.000] Starting updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json -Info 34 [00:01:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info 35 [00:01:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info 36 [00:01:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info 37 [00:01:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info 38 [00:01:57.000] Finishing updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 39 [00:01:58.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) -Info 40 [00:01:59.000] Files (2) +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 +Info 31 [00:01:50.000] Starting updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json +Info 32 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots +Info 33 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots +Info 34 [00:01:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots +Info 35 [00:01:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots +Info 36 [00:01:55.000] Finishing updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 37 [00:01:56.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) +Info 38 [00:01:57.000] Files (2) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts @@ -501,9 +499,9 @@ Info 40 [00:01:59.000] Files (2) index.ts Part of 'files' list in tsconfig.json -Info 41 [00:02:00.000] ----------------------------------------------- -Info 42 [00:02:01.000] Loading configured project /user/username/projects/container/tsconfig.json -Info 43 [00:02:02.000] Config: /user/username/projects/container/tsconfig.json : { +Info 39 [00:01:58.000] ----------------------------------------------- +Info 40 [00:01:59.000] Loading configured project /user/username/projects/container/tsconfig.json +Info 41 [00:02:00.000] Config: /user/username/projects/container/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/container/tsconfig.json" @@ -519,9 +517,8 @@ Info 43 [00:02:02.000] Config: /user/username/projects/container/tsconfig.json } ] } -Info 44 [00:02:03.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 45 [00:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/container/tsconfig.json -Info 46 [00:02:05.000] Config: /user/username/projects/container/exec/tsconfig.json : { +Info 42 [00:02:01.000] Starting updateGraphWorker: Project: /user/username/projects/container/tsconfig.json +Info 43 [00:02:02.000] Config: /user/username/projects/container/exec/tsconfig.json : { "rootNames": [ "/user/username/projects/container/exec/index.ts" ], @@ -537,22 +534,21 @@ Info 46 [00:02:05.000] Config: /user/username/projects/container/exec/tsconfig } ] } -Info 47 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file -Info 48 [00:02:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info 49 [00:02:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info 50 [00:02:09.000] Finishing updateGraphWorker: Project: /user/username/projects/container/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 51 [00:02:10.000] Different program with same set of files -Info 52 [00:02:11.000] Creating configuration project /user/username/projects/container/exec/tsconfig.json -Info 53 [00:02:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 54 [00:02:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/index.ts 500 undefined WatchType: Closed Script info -Info 55 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json -Info 56 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info 57 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info 58 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info 59 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info 60 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 61 [00:02:20.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) -Info 62 [00:02:21.000] Files (3) +Info 44 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file +Info 45 [00:02:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots +Info 46 [00:02:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots +Info 47 [00:02:06.000] Finishing updateGraphWorker: Project: /user/username/projects/container/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 48 [00:02:07.000] Different program with same set of files +Info 49 [00:02:08.000] Creating configuration project /user/username/projects/container/exec/tsconfig.json +Info 50 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/index.ts 500 undefined WatchType: Closed Script info +Info 51 [00:02:10.000] Starting updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json +Info 52 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots +Info 53 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots +Info 54 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots +Info 55 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots +Info 56 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 57 [00:02:16.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) +Info 58 [00:02:17.000] Files (3) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts /user/username/projects/container/exec/index.ts @@ -565,9 +561,9 @@ Info 62 [00:02:21.000] Files (3) index.ts Part of 'files' list in tsconfig.json -Info 63 [00:02:22.000] ----------------------------------------------- -Info 64 [00:02:23.000] Search path: /user/username/projects/container/lib -Info 65 [00:02:24.000] For info: /user/username/projects/container/lib/index.ts :: Config file name: /user/username/projects/container/lib/tsconfig.json +Info 59 [00:02:18.000] ----------------------------------------------- +Info 60 [00:02:19.000] Search path: /user/username/projects/container/lib +Info 61 [00:02:20.000] For info: /user/username/projects/container/lib/index.ts :: Config file name: /user/username/projects/container/lib/tsconfig.json After request PolledWatches:: @@ -598,7 +594,7 @@ FsWatches:: FsWatchesRecursive:: -Info 66 [00:02:25.000] response: +Info 62 [00:02:21.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferences/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-first-indirect-project-but-not-in-another-one.js b/tests/baselines/reference/tsserver/projectReferences/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-first-indirect-project-but-not-in-another-one.js index a599119847d02..8feced6772e38 100644 --- a/tests/baselines/reference/tsserver/projectReferences/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-first-indirect-project-but-not-in-another-one.js +++ b/tests/baselines/reference/tsserver/projectReferences/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-first-indirect-project-but-not-in-another-one.js @@ -21,9 +21,8 @@ Info 6 [00:01:11.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 7 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 9 [00:01:14.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 7 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 8 [00:01:13.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -41,8 +40,8 @@ Info 9 [00:01:14.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 10 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 11 [00:01:16.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 9 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 10 [00:01:15.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -54,10 +53,10 @@ Info 11 [00:01:16.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 12 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 13 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 14 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 15 [00:01:20.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 11 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 12 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 13 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 14 [00:01:19.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -74,27 +73,26 @@ Info 15 [00:01:20.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 16 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 17 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 18 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 19 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:25.000] Different program with same set of files -Info 21 [00:01:26.000] event: +Info 15 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 16 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 17 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 18 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:24.000] Different program with same set of files +Info 20 [00:01:25.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 22 [00:01:27.000] event: +Info 21 [00:01:26.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":0,"tsSize":0,"tsx":0,"tsxSize":0,"dts":0,"dtsSize":0,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":true,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 23 [00:01:28.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 24 [00:01:29.000] event: +Info 22 [00:01:27.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 23 [00:01:28.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 25 [00:01:30.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 26 [00:01:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 27 [00:01:32.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 28 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 29 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 30 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 31 [00:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 32 [00:01:37.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 33 [00:01:38.000] Files (3) +Info 24 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 25 [00:01:30.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 26 [00:01:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 27 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 28 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 29 [00:01:34.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 30 [00:01:35.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 31 [00:01:36.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -108,35 +106,34 @@ Info 33 [00:01:38.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 34 [00:01:39.000] ----------------------------------------------- -Info 35 [00:01:40.000] event: +Info 32 [00:01:37.000] ----------------------------------------------- +Info 33 [00:01:38.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 36 [00:01:41.000] event: +Info 34 [00:01:39.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"75d5ba36c0a162a329bf40235b10e96d2d129b95469e1f02c08da775fb38a2b4","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":77,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"other","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 37 [00:01:42.000] event: +Info 35 [00:01:40.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 38 [00:01:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 38 [00:01:44.000] Files (0) +Info 36 [00:01:41.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 36 [00:01:42.000] Files (0) -Info 38 [00:01:45.000] ----------------------------------------------- -Info 38 [00:01:46.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 38 [00:01:47.000] Files (3) +Info 36 [00:01:43.000] ----------------------------------------------- +Info 36 [00:01:44.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 36 [00:01:45.000] Files (3) -Info 38 [00:01:48.000] ----------------------------------------------- -Info 38 [00:01:49.000] Open files: -Info 38 [00:01:50.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 38 [00:01:51.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 38 [00:01:52.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 38 [00:01:53.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 38 [00:01:54.000] Search path: /dummy -Info 39 [00:01:55.000] For info: /dummy/dummy.ts :: No config files found. -Info 40 [00:01:56.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 41 [00:01:57.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 42 [00:01:58.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 43 [00:01:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 44 [00:02:00.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:02:01.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 46 [00:02:02.000] Files (2) +Info 36 [00:01:46.000] ----------------------------------------------- +Info 36 [00:01:47.000] Open files: +Info 36 [00:01:48.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 36 [00:01:49.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 36 [00:01:50.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 36 [00:01:51.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 36 [00:01:52.000] Search path: /dummy +Info 37 [00:01:53.000] For info: /dummy/dummy.ts :: No config files found. +Info 38 [00:01:54.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 39 [00:01:55.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 40 [00:01:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 41 [00:01:57.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:58.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 43 [00:01:59.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -146,61 +143,61 @@ Info 46 [00:02:02.000] Files (2) dummy.ts Root file specified for compilation -Info 47 [00:02:03.000] ----------------------------------------------- -Info 48 [00:02:04.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 48 [00:02:05.000] Files (0) +Info 44 [00:02:00.000] ----------------------------------------------- +Info 45 [00:02:01.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 45 [00:02:02.000] Files (0) -Info 48 [00:02:06.000] ----------------------------------------------- -Info 48 [00:02:07.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 48 [00:02:08.000] Files (3) +Info 45 [00:02:03.000] ----------------------------------------------- +Info 45 [00:02:04.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 45 [00:02:05.000] Files (3) -Info 48 [00:02:09.000] ----------------------------------------------- -Info 48 [00:02:10.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 48 [00:02:11.000] Files (2) +Info 45 [00:02:06.000] ----------------------------------------------- +Info 45 [00:02:07.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 45 [00:02:08.000] Files (2) -Info 48 [00:02:12.000] ----------------------------------------------- -Info 48 [00:02:13.000] Open files: -Info 48 [00:02:14.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 48 [00:02:15.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 48 [00:02:16.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 48 [00:02:17.000] Projects: /dev/null/inferredProject1* -Info 48 [00:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 49 [00:02:19.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 49 [00:02:20.000] Files (0) +Info 45 [00:02:09.000] ----------------------------------------------- +Info 45 [00:02:10.000] Open files: +Info 45 [00:02:11.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 45 [00:02:12.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 45 [00:02:13.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 45 [00:02:14.000] Projects: /dev/null/inferredProject1* +Info 45 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 46 [00:02:16.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 46 [00:02:17.000] Files (0) -Info 49 [00:02:21.000] ----------------------------------------------- -Info 49 [00:02:22.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 49 [00:02:23.000] Files (3) +Info 46 [00:02:18.000] ----------------------------------------------- +Info 46 [00:02:19.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 46 [00:02:20.000] Files (3) -Info 49 [00:02:24.000] ----------------------------------------------- -Info 49 [00:02:25.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 49 [00:02:26.000] Files (2) +Info 46 [00:02:21.000] ----------------------------------------------- +Info 46 [00:02:22.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 46 [00:02:23.000] Files (2) -Info 49 [00:02:27.000] ----------------------------------------------- -Info 49 [00:02:28.000] Open files: -Info 49 [00:02:29.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 49 [00:02:30.000] Projects: /dev/null/inferredProject1* -Info 49 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 50 [00:02:32.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 50 [00:02:33.000] Files (0) +Info 46 [00:02:24.000] ----------------------------------------------- +Info 46 [00:02:25.000] Open files: +Info 46 [00:02:26.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 46 [00:02:27.000] Projects: /dev/null/inferredProject1* +Info 46 [00:02:28.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 47 [00:02:29.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 47 [00:02:30.000] Files (0) -Info 50 [00:02:34.000] ----------------------------------------------- -Info 50 [00:02:35.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 50 [00:02:36.000] Files (3) +Info 47 [00:02:31.000] ----------------------------------------------- +Info 47 [00:02:32.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 47 [00:02:33.000] Files (3) -Info 50 [00:02:37.000] ----------------------------------------------- -Info 50 [00:02:38.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 50 [00:02:39.000] Files (2) +Info 47 [00:02:34.000] ----------------------------------------------- +Info 47 [00:02:35.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 47 [00:02:36.000] Files (2) -Info 50 [00:02:40.000] ----------------------------------------------- -Info 50 [00:02:41.000] Open files: -Info 50 [00:02:42.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 51 [00:02:43.000] Search path: /dummy -Info 52 [00:02:44.000] For info: /dummy/dummy.ts :: No config files found. -Info 53 [00:02:45.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 54 [00:02:46.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 55 [00:02:47.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 56 [00:02:48.000] Files (2) +Info 47 [00:02:37.000] ----------------------------------------------- +Info 47 [00:02:38.000] Open files: +Info 47 [00:02:39.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 48 [00:02:40.000] Search path: /dummy +Info 49 [00:02:41.000] For info: /dummy/dummy.ts :: No config files found. +Info 50 [00:02:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 51 [00:02:43.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 52 [00:02:44.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 53 [00:02:45.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -210,22 +207,22 @@ Info 56 [00:02:48.000] Files (2) dummy.ts Root file specified for compilation -Info 57 [00:02:49.000] ----------------------------------------------- -Info 58 [00:02:50.000] `remove Project:: -Info 59 [00:02:51.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 60 [00:02:52.000] Files (0) +Info 54 [00:02:46.000] ----------------------------------------------- +Info 55 [00:02:47.000] `remove Project:: +Info 56 [00:02:48.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 57 [00:02:49.000] Files (0) -Info 61 [00:02:53.000] ----------------------------------------------- -Info 62 [00:02:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 63 [00:02:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 64 [00:02:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 65 [00:02:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 66 [00:02:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 67 [00:02:59.000] `remove Project:: -Info 68 [00:03:00.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 69 [00:03:01.000] Files (3) +Info 58 [00:02:50.000] ----------------------------------------------- +Info 59 [00:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 60 [00:02:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 61 [00:02:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 62 [00:02:54.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 63 [00:02:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 64 [00:02:56.000] `remove Project:: +Info 65 [00:02:57.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 66 [00:02:58.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -239,28 +236,28 @@ Info 69 [00:03:01.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 70 [00:03:02.000] ----------------------------------------------- -Info 71 [00:03:03.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 72 [00:03:04.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 73 [00:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 74 [00:03:06.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 75 [00:03:07.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 76 [00:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 77 [00:03:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 78 [00:03:10.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 78 [00:03:11.000] Files (2) +Info 67 [00:02:59.000] ----------------------------------------------- +Info 68 [00:03:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 69 [00:03:01.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 70 [00:03:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 71 [00:03:03.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 72 [00:03:04.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 73 [00:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 74 [00:03:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 75 [00:03:07.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 75 [00:03:08.000] Files (2) -Info 78 [00:03:12.000] ----------------------------------------------- -Info 78 [00:03:13.000] Open files: -Info 78 [00:03:14.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 78 [00:03:15.000] Projects: /dev/null/inferredProject1* -Info 78 [00:03:16.000] Search path: /user/username/projects/myproject/src -Info 79 [00:03:17.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 80 [00:03:18.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 81 [00:03:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 82 [00:03:20.000] event: +Info 75 [00:03:09.000] ----------------------------------------------- +Info 75 [00:03:10.000] Open files: +Info 75 [00:03:11.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 75 [00:03:12.000] Projects: /dev/null/inferredProject1* +Info 75 [00:03:13.000] Search path: /user/username/projects/myproject/src +Info 76 [00:03:14.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 77 [00:03:15.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 78 [00:03:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 79 [00:03:17.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 83 [00:03:21.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 80 [00:03:18.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -276,9 +273,8 @@ Info 83 [00:03:21.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 84 [00:03:22.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 85 [00:03:23.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 86 [00:03:24.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 81 [00:03:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 82 [00:03:20.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -296,8 +292,8 @@ Info 86 [00:03:24.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 87 [00:03:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 88 [00:03:26.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 83 [00:03:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 84 [00:03:22.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -309,10 +305,10 @@ Info 88 [00:03:26.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 89 [00:03:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 90 [00:03:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 91 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 92 [00:03:30.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 85 [00:03:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 86 [00:03:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 87 [00:03:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 88 [00:03:26.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -329,24 +325,23 @@ Info 92 [00:03:30.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 93 [00:03:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 94 [00:03:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 95 [00:03:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 96 [00:03:34.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 97 [00:03:35.000] Different program with same set of files -Info 98 [00:03:36.000] event: +Info 89 [00:03:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 90 [00:03:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 91 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 92 [00:03:30.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 93 [00:03:31.000] Different program with same set of files +Info 94 [00:03:32.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 99 [00:03:37.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 100 [00:03:38.000] event: +Info 95 [00:03:33.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 96 [00:03:34.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 101 [00:03:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 102 [00:03:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 103 [00:03:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 104 [00:03:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 105 [00:03:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 106 [00:03:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 107 [00:03:45.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 108 [00:03:46.000] Files (3) +Info 97 [00:03:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 98 [00:03:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 99 [00:03:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 100 [00:03:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 101 [00:03:39.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 102 [00:03:40.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 103 [00:03:41.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -360,44 +355,44 @@ Info 108 [00:03:46.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 109 [00:03:47.000] ----------------------------------------------- -Info 110 [00:03:48.000] event: +Info 104 [00:03:42.000] ----------------------------------------------- +Info 105 [00:03:43.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 111 [00:03:49.000] event: +Info 106 [00:03:44.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 112 [00:03:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 112 [00:03:51.000] Files (0) +Info 107 [00:03:45.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 107 [00:03:46.000] Files (0) -Info 112 [00:03:52.000] ----------------------------------------------- -Info 112 [00:03:53.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 112 [00:03:54.000] Files (3) +Info 107 [00:03:47.000] ----------------------------------------------- +Info 107 [00:03:48.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 107 [00:03:49.000] Files (3) -Info 112 [00:03:55.000] ----------------------------------------------- -Info 112 [00:03:56.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 112 [00:03:57.000] Files (2) +Info 107 [00:03:50.000] ----------------------------------------------- +Info 107 [00:03:51.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 107 [00:03:52.000] Files (2) -Info 112 [00:03:58.000] ----------------------------------------------- -Info 112 [00:03:59.000] Open files: -Info 112 [00:04:00.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 112 [00:04:01.000] Projects: /dev/null/inferredProject1* -Info 112 [00:04:02.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 112 [00:04:03.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 112 [00:04:04.000] reload projects. -Info 113 [00:04:05.000] Scheduled: /dev/null/inferredProject1* -Info 114 [00:04:06.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json -Info 115 [00:04:07.000] Scheduled: *ensureProjectForOpenFiles* -Info 116 [00:04:08.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one -Info 117 [00:04:09.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 118 [00:04:10.000] Search path: /dummy -Info 119 [00:04:11.000] For info: /dummy/dummy.ts :: No config files found. -Info 120 [00:04:12.000] Search path: /user/username/projects/myproject/src -Info 121 [00:04:13.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 122 [00:04:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 123 [00:04:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 124 [00:04:16.000] Reloading configured project /user/username/projects/myproject/tsconfig.json -Info 125 [00:04:17.000] event: +Info 107 [00:03:53.000] ----------------------------------------------- +Info 107 [00:03:54.000] Open files: +Info 107 [00:03:55.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 107 [00:03:56.000] Projects: /dev/null/inferredProject1* +Info 107 [00:03:57.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 107 [00:03:58.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 107 [00:03:59.000] reload projects. +Info 108 [00:04:00.000] Scheduled: /dev/null/inferredProject1* +Info 109 [00:04:01.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json +Info 110 [00:04:02.000] Scheduled: *ensureProjectForOpenFiles* +Info 111 [00:04:03.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one +Info 112 [00:04:04.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 113 [00:04:05.000] Search path: /dummy +Info 114 [00:04:06.000] For info: /dummy/dummy.ts :: No config files found. +Info 115 [00:04:07.000] Search path: /user/username/projects/myproject/src +Info 116 [00:04:08.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 117 [00:04:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 118 [00:04:10.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 119 [00:04:11.000] Reloading configured project /user/username/projects/myproject/tsconfig.json +Info 120 [00:04:12.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"User requested reload projects"}} -Info 126 [00:04:18.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 121 [00:04:13.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -413,9 +408,8 @@ Info 126 [00:04:18.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 127 [00:04:19.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 128 [00:04:20.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 129 [00:04:21.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 122 [00:04:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 123 [00:04:15.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -433,7 +427,7 @@ Info 129 [00:04:21.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 130 [00:04:22.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 124 [00:04:16.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -445,7 +439,7 @@ Info 130 [00:04:22.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 131 [00:04:23.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 125 [00:04:17.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -462,69 +456,68 @@ Info 131 [00:04:23.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 132 [00:04:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 133 [00:04:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 134 [00:04:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 135 [00:04:27.000] Different program with same set of files -Info 136 [00:04:28.000] event: +Info 126 [00:04:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 127 [00:04:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 128 [00:04:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 129 [00:04:21.000] Different program with same set of files +Info 130 [00:04:22.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 137 [00:04:29.000] event: +Info 131 [00:04:23.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig.json","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 138 [00:04:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 139 [00:04:31.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 140 [00:04:32.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json -Info 141 [00:04:33.000] event: +Info 132 [00:04:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 133 [00:04:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 134 [00:04:26.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json +Info 135 [00:04:27.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"User requested reload projects"}} -Info 142 [00:04:34.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 143 [00:04:35.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 144 [00:04:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 145 [00:04:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 146 [00:04:38.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 147 [00:04:39.000] Different program with same set of files -Info 148 [00:04:40.000] event: +Info 136 [00:04:28.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 137 [00:04:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 138 [00:04:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 139 [00:04:31.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 140 [00:04:32.000] Different program with same set of files +Info 141 [00:04:33.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 149 [00:04:41.000] event: +Info 142 [00:04:34.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig-src.json","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 150 [00:04:42.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 151 [00:04:43.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 152 [00:04:44.000] Before ensureProjectForOpenFiles: -Info 153 [00:04:45.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 153 [00:04:46.000] Files (0) +Info 143 [00:04:35.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 144 [00:04:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 145 [00:04:37.000] Before ensureProjectForOpenFiles: +Info 146 [00:04:38.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 146 [00:04:39.000] Files (0) -Info 153 [00:04:47.000] ----------------------------------------------- -Info 153 [00:04:48.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 153 [00:04:49.000] Files (3) +Info 146 [00:04:40.000] ----------------------------------------------- +Info 146 [00:04:41.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 146 [00:04:42.000] Files (3) -Info 153 [00:04:50.000] ----------------------------------------------- -Info 153 [00:04:51.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 153 [00:04:52.000] Files (2) +Info 146 [00:04:43.000] ----------------------------------------------- +Info 146 [00:04:44.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 146 [00:04:45.000] Files (2) -Info 153 [00:04:53.000] ----------------------------------------------- -Info 153 [00:04:54.000] Open files: -Info 153 [00:04:55.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 153 [00:04:56.000] Projects: /dev/null/inferredProject1* -Info 153 [00:04:57.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 153 [00:04:58.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 153 [00:04:59.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 154 [00:05:00.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 155 [00:05:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 156 [00:05:02.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 157 [00:05:03.000] Different program with same set of files -Info 158 [00:05:04.000] After ensureProjectForOpenFiles: -Info 159 [00:05:05.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 159 [00:05:06.000] Files (0) +Info 146 [00:04:46.000] ----------------------------------------------- +Info 146 [00:04:47.000] Open files: +Info 146 [00:04:48.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 146 [00:04:49.000] Projects: /dev/null/inferredProject1* +Info 146 [00:04:50.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 146 [00:04:51.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 146 [00:04:52.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 147 [00:04:53.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 148 [00:04:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 149 [00:04:55.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 150 [00:04:56.000] Different program with same set of files +Info 151 [00:04:57.000] After ensureProjectForOpenFiles: +Info 152 [00:04:58.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 152 [00:04:59.000] Files (0) -Info 159 [00:05:07.000] ----------------------------------------------- -Info 159 [00:05:08.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 159 [00:05:09.000] Files (3) +Info 152 [00:05:00.000] ----------------------------------------------- +Info 152 [00:05:01.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 152 [00:05:02.000] Files (3) -Info 159 [00:05:10.000] ----------------------------------------------- -Info 159 [00:05:11.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 159 [00:05:12.000] Files (2) +Info 152 [00:05:03.000] ----------------------------------------------- +Info 152 [00:05:04.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 152 [00:05:05.000] Files (2) -Info 159 [00:05:13.000] ----------------------------------------------- -Info 159 [00:05:14.000] Open files: -Info 159 [00:05:15.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 159 [00:05:16.000] Projects: /dev/null/inferredProject1* -Info 159 [00:05:17.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 159 [00:05:18.000] Projects: /user/username/projects/myproject/tsconfig-src.json \ No newline at end of file +Info 152 [00:05:06.000] ----------------------------------------------- +Info 152 [00:05:07.000] Open files: +Info 152 [00:05:08.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 152 [00:05:09.000] Projects: /dev/null/inferredProject1* +Info 152 [00:05:10.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 152 [00:05:11.000] Projects: /user/username/projects/myproject/tsconfig-src.json \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferences/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-indirect-project.js b/tests/baselines/reference/tsserver/projectReferences/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-indirect-project.js index 3d06d15f4151b..c03c7ad924d8b 100644 --- a/tests/baselines/reference/tsserver/projectReferences/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-indirect-project.js +++ b/tests/baselines/reference/tsserver/projectReferences/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-indirect-project.js @@ -17,9 +17,8 @@ Info 6 [00:01:05.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 7 [00:01:06.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [00:01:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 9 [00:01:08.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 7 [00:01:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 8 [00:01:07.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -37,8 +36,8 @@ Info 9 [00:01:08.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 10 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 11 [00:01:10.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 9 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 10 [00:01:09.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -50,30 +49,29 @@ Info 11 [00:01:10.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 12 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 13 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 14 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 15 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 16 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 17 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 18 [00:01:17.000] Different program with same set of files -Info 19 [00:01:18.000] event: +Info 11 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 12 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 13 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 14 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 16 [00:01:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:01:16.000] Different program with same set of files +Info 18 [00:01:17.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 20 [00:01:19.000] event: +Info 19 [00:01:18.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":0,"tsSize":0,"tsx":0,"tsxSize":0,"dts":0,"dtsSize":0,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":true,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 21 [00:01:20.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json -Info 22 [00:01:21.000] event: +Info 20 [00:01:19.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json +Info 21 [00:01:20.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 23 [00:01:22.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 24 [00:01:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 25 [00:01:24.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info 26 [00:01:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 27 [00:01:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 28 [00:01:27.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 29 [00:01:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 30 [00:01:29.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 31 [00:01:30.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 32 [00:01:31.000] Files (4) +Info 22 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 23 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json +Info 24 [00:01:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 25 [00:01:24.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 26 [00:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 27 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 28 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 29 [00:01:28.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 30 [00:01:29.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -89,35 +87,34 @@ Info 32 [00:01:31.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 33 [00:01:32.000] ----------------------------------------------- -Info 34 [00:01:33.000] event: +Info 31 [00:01:30.000] ----------------------------------------------- +Info 32 [00:01:31.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json"}} -Info 35 [00:01:34.000] event: +Info 33 [00:01:32.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"9ccc3aed1af08832ccb25ea453f7b771199f56af238b53cc428549dbd2d59246","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":"","disableReferencedProjectLoad":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":true,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"other","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 36 [00:01:35.000] event: +Info 34 [00:01:33.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-indirect1.json","diagnostics":[]}} -Info 37 [00:01:36.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 37 [00:01:37.000] Files (0) +Info 35 [00:01:34.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 35 [00:01:35.000] Files (0) -Info 37 [00:01:38.000] ----------------------------------------------- -Info 37 [00:01:39.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 37 [00:01:40.000] Files (4) +Info 35 [00:01:36.000] ----------------------------------------------- +Info 35 [00:01:37.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 35 [00:01:38.000] Files (4) -Info 37 [00:01:41.000] ----------------------------------------------- -Info 37 [00:01:42.000] Open files: -Info 37 [00:01:43.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 37 [00:01:44.000] Projects: /user/username/projects/myproject/tsconfig-indirect1.json -Info 37 [00:01:45.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-indirect1.json -Info 37 [00:01:46.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: undefined -Info 37 [00:01:47.000] Search path: /dummy -Info 38 [00:01:48.000] For info: /dummy/dummy.ts :: No config files found. -Info 39 [00:01:49.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 40 [00:01:50.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 41 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 42 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 43 [00:01:53.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [00:01:54.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 45 [00:01:55.000] Files (2) +Info 35 [00:01:39.000] ----------------------------------------------- +Info 35 [00:01:40.000] Open files: +Info 35 [00:01:41.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 35 [00:01:42.000] Projects: /user/username/projects/myproject/tsconfig-indirect1.json +Info 35 [00:01:43.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-indirect1.json +Info 35 [00:01:44.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: undefined +Info 35 [00:01:45.000] Search path: /dummy +Info 36 [00:01:46.000] For info: /dummy/dummy.ts :: No config files found. +Info 37 [00:01:47.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 38 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 39 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 40 [00:01:50.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:51.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 42 [00:01:52.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -127,61 +124,61 @@ Info 45 [00:01:55.000] Files (2) dummy.ts Root file specified for compilation -Info 46 [00:01:56.000] ----------------------------------------------- -Info 47 [00:01:57.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 47 [00:01:58.000] Files (0) +Info 43 [00:01:53.000] ----------------------------------------------- +Info 44 [00:01:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 44 [00:01:55.000] Files (0) -Info 47 [00:01:59.000] ----------------------------------------------- -Info 47 [00:02:00.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 47 [00:02:01.000] Files (4) +Info 44 [00:01:56.000] ----------------------------------------------- +Info 44 [00:01:57.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 44 [00:01:58.000] Files (4) -Info 47 [00:02:02.000] ----------------------------------------------- -Info 47 [00:02:03.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 47 [00:02:04.000] Files (2) +Info 44 [00:01:59.000] ----------------------------------------------- +Info 44 [00:02:00.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 44 [00:02:01.000] Files (2) -Info 47 [00:02:05.000] ----------------------------------------------- -Info 47 [00:02:06.000] Open files: -Info 47 [00:02:07.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 47 [00:02:08.000] Projects: /user/username/projects/myproject/tsconfig-indirect1.json -Info 47 [00:02:09.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 47 [00:02:10.000] Projects: /dev/null/inferredProject1* -Info 47 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 48 [00:02:12.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 48 [00:02:13.000] Files (0) +Info 44 [00:02:02.000] ----------------------------------------------- +Info 44 [00:02:03.000] Open files: +Info 44 [00:02:04.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 44 [00:02:05.000] Projects: /user/username/projects/myproject/tsconfig-indirect1.json +Info 44 [00:02:06.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 44 [00:02:07.000] Projects: /dev/null/inferredProject1* +Info 44 [00:02:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 45 [00:02:09.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 45 [00:02:10.000] Files (0) -Info 48 [00:02:14.000] ----------------------------------------------- -Info 48 [00:02:15.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 48 [00:02:16.000] Files (4) +Info 45 [00:02:11.000] ----------------------------------------------- +Info 45 [00:02:12.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 45 [00:02:13.000] Files (4) -Info 48 [00:02:17.000] ----------------------------------------------- -Info 48 [00:02:18.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 48 [00:02:19.000] Files (2) +Info 45 [00:02:14.000] ----------------------------------------------- +Info 45 [00:02:15.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 45 [00:02:16.000] Files (2) -Info 48 [00:02:20.000] ----------------------------------------------- -Info 48 [00:02:21.000] Open files: -Info 48 [00:02:22.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 48 [00:02:23.000] Projects: /dev/null/inferredProject1* -Info 48 [00:02:24.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 49 [00:02:25.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 49 [00:02:26.000] Files (0) +Info 45 [00:02:17.000] ----------------------------------------------- +Info 45 [00:02:18.000] Open files: +Info 45 [00:02:19.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 45 [00:02:20.000] Projects: /dev/null/inferredProject1* +Info 45 [00:02:21.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 46 [00:02:22.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 46 [00:02:23.000] Files (0) -Info 49 [00:02:27.000] ----------------------------------------------- -Info 49 [00:02:28.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 49 [00:02:29.000] Files (4) +Info 46 [00:02:24.000] ----------------------------------------------- +Info 46 [00:02:25.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 46 [00:02:26.000] Files (4) -Info 49 [00:02:30.000] ----------------------------------------------- -Info 49 [00:02:31.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 49 [00:02:32.000] Files (2) +Info 46 [00:02:27.000] ----------------------------------------------- +Info 46 [00:02:28.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 46 [00:02:29.000] Files (2) -Info 49 [00:02:33.000] ----------------------------------------------- -Info 49 [00:02:34.000] Open files: -Info 49 [00:02:35.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 50 [00:02:36.000] Search path: /dummy -Info 51 [00:02:37.000] For info: /dummy/dummy.ts :: No config files found. -Info 52 [00:02:38.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 53 [00:02:39.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 54 [00:02:40.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 55 [00:02:41.000] Files (2) +Info 46 [00:02:30.000] ----------------------------------------------- +Info 46 [00:02:31.000] Open files: +Info 46 [00:02:32.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 47 [00:02:33.000] Search path: /dummy +Info 48 [00:02:34.000] For info: /dummy/dummy.ts :: No config files found. +Info 49 [00:02:35.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 50 [00:02:36.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 51 [00:02:37.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 52 [00:02:38.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -191,20 +188,20 @@ Info 55 [00:02:41.000] Files (2) dummy.ts Root file specified for compilation -Info 56 [00:02:42.000] ----------------------------------------------- -Info 57 [00:02:43.000] `remove Project:: -Info 58 [00:02:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 59 [00:02:45.000] Files (0) +Info 53 [00:02:39.000] ----------------------------------------------- +Info 54 [00:02:40.000] `remove Project:: +Info 55 [00:02:41.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 56 [00:02:42.000] Files (0) -Info 60 [00:02:46.000] ----------------------------------------------- -Info 61 [00:02:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 62 [00:02:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 63 [00:02:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 64 [00:02:50.000] `remove Project:: -Info 65 [00:02:51.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 66 [00:02:52.000] Files (4) +Info 57 [00:02:43.000] ----------------------------------------------- +Info 58 [00:02:44.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 59 [00:02:45.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 60 [00:02:46.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 61 [00:02:47.000] `remove Project:: +Info 62 [00:02:48.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 63 [00:02:49.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -220,30 +217,30 @@ Info 66 [00:02:52.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 67 [00:02:53.000] ----------------------------------------------- -Info 68 [00:02:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 69 [00:02:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 70 [00:02:56.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 71 [00:02:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 72 [00:02:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 73 [00:02:59.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 74 [00:03:00.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 75 [00:03:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 76 [00:03:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 77 [00:03:03.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 77 [00:03:04.000] Files (2) +Info 64 [00:02:50.000] ----------------------------------------------- +Info 65 [00:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 66 [00:02:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 67 [00:02:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 68 [00:02:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 69 [00:02:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 70 [00:02:56.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 71 [00:02:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 72 [00:02:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 73 [00:02:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 74 [00:03:00.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 74 [00:03:01.000] Files (2) -Info 77 [00:03:05.000] ----------------------------------------------- -Info 77 [00:03:06.000] Open files: -Info 77 [00:03:07.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 77 [00:03:08.000] Projects: /dev/null/inferredProject1* -Info 77 [00:03:09.000] Search path: /user/username/projects/myproject/src -Info 78 [00:03:10.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 79 [00:03:11.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 80 [00:03:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 81 [00:03:13.000] event: +Info 74 [00:03:02.000] ----------------------------------------------- +Info 74 [00:03:03.000] Open files: +Info 74 [00:03:04.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 74 [00:03:05.000] Projects: /dev/null/inferredProject1* +Info 74 [00:03:06.000] Search path: /user/username/projects/myproject/src +Info 75 [00:03:07.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 76 [00:03:08.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 77 [00:03:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 78 [00:03:10.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 82 [00:03:14.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 79 [00:03:11.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -255,9 +252,8 @@ Info 82 [00:03:14.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 83 [00:03:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 84 [00:03:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 85 [00:03:17.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 80 [00:03:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 81 [00:03:13.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -275,8 +271,8 @@ Info 85 [00:03:17.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 86 [00:03:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 87 [00:03:19.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 82 [00:03:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 83 [00:03:15.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -288,27 +284,26 @@ Info 87 [00:03:19.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 88 [00:03:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 89 [00:03:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 90 [00:03:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 91 [00:03:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 92 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 93 [00:03:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 94 [00:03:26.000] Different program with same set of files -Info 95 [00:03:27.000] event: +Info 84 [00:03:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 85 [00:03:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 86 [00:03:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 87 [00:03:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 88 [00:03:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 89 [00:03:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 90 [00:03:22.000] Different program with same set of files +Info 91 [00:03:23.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 96 [00:03:28.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json -Info 97 [00:03:29.000] event: +Info 92 [00:03:24.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json +Info 93 [00:03:25.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 98 [00:03:30.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 99 [00:03:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 100 [00:03:32.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info 101 [00:03:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 102 [00:03:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 103 [00:03:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 104 [00:03:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 105 [00:03:37.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 106 [00:03:38.000] Files (4) +Info 94 [00:03:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 95 [00:03:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json +Info 96 [00:03:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 97 [00:03:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 98 [00:03:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 99 [00:03:31.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 100 [00:03:32.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 101 [00:03:33.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -324,46 +319,46 @@ Info 106 [00:03:38.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 107 [00:03:39.000] ----------------------------------------------- -Info 108 [00:03:40.000] event: +Info 102 [00:03:34.000] ----------------------------------------------- +Info 103 [00:03:35.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json"}} -Info 109 [00:03:41.000] event: +Info 104 [00:03:36.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-indirect1.json","diagnostics":[]}} -Info 110 [00:03:42.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 110 [00:03:43.000] Files (0) +Info 105 [00:03:37.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 105 [00:03:38.000] Files (0) -Info 110 [00:03:44.000] ----------------------------------------------- -Info 110 [00:03:45.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 110 [00:03:46.000] Files (4) +Info 105 [00:03:39.000] ----------------------------------------------- +Info 105 [00:03:40.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 105 [00:03:41.000] Files (4) -Info 110 [00:03:47.000] ----------------------------------------------- -Info 110 [00:03:48.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 110 [00:03:49.000] Files (2) +Info 105 [00:03:42.000] ----------------------------------------------- +Info 105 [00:03:43.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 105 [00:03:44.000] Files (2) -Info 110 [00:03:50.000] ----------------------------------------------- -Info 110 [00:03:51.000] Open files: -Info 110 [00:03:52.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 110 [00:03:53.000] Projects: /dev/null/inferredProject1* -Info 110 [00:03:54.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 110 [00:03:55.000] Projects: /user/username/projects/myproject/tsconfig-indirect1.json -Info 110 [00:03:56.000] reload projects. -Info 111 [00:03:57.000] Scheduled: /dev/null/inferredProject1* -Info 112 [00:03:58.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json -Info 113 [00:03:59.000] Scheduled: *ensureProjectForOpenFiles* -Info 114 [00:04:00.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json, Cancelled earlier one -Info 115 [00:04:01.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 116 [00:04:02.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json, Cancelled earlier one -Info 117 [00:04:03.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 118 [00:04:04.000] Search path: /dummy -Info 119 [00:04:05.000] For info: /dummy/dummy.ts :: No config files found. -Info 120 [00:04:06.000] Search path: /user/username/projects/myproject/src -Info 121 [00:04:07.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 122 [00:04:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 123 [00:04:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 124 [00:04:10.000] Reloading configured project /user/username/projects/myproject/tsconfig.json -Info 125 [00:04:11.000] event: +Info 105 [00:03:45.000] ----------------------------------------------- +Info 105 [00:03:46.000] Open files: +Info 105 [00:03:47.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 105 [00:03:48.000] Projects: /dev/null/inferredProject1* +Info 105 [00:03:49.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 105 [00:03:50.000] Projects: /user/username/projects/myproject/tsconfig-indirect1.json +Info 105 [00:03:51.000] reload projects. +Info 106 [00:03:52.000] Scheduled: /dev/null/inferredProject1* +Info 107 [00:03:53.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json +Info 108 [00:03:54.000] Scheduled: *ensureProjectForOpenFiles* +Info 109 [00:03:55.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json, Cancelled earlier one +Info 110 [00:03:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 111 [00:03:57.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json, Cancelled earlier one +Info 112 [00:03:58.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 113 [00:03:59.000] Search path: /dummy +Info 114 [00:04:00.000] For info: /dummy/dummy.ts :: No config files found. +Info 115 [00:04:01.000] Search path: /user/username/projects/myproject/src +Info 116 [00:04:02.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 117 [00:04:03.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 118 [00:04:04.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 119 [00:04:05.000] Reloading configured project /user/username/projects/myproject/tsconfig.json +Info 120 [00:04:06.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"User requested reload projects"}} -Info 126 [00:04:12.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 121 [00:04:07.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -375,9 +370,8 @@ Info 126 [00:04:12.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 127 [00:04:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 128 [00:04:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 129 [00:04:15.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 122 [00:04:08.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 123 [00:04:09.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -395,7 +389,7 @@ Info 129 [00:04:15.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 130 [00:04:16.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 124 [00:04:10.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -407,69 +401,68 @@ Info 130 [00:04:16.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 131 [00:04:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 132 [00:04:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 133 [00:04:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 134 [00:04:20.000] Different program with same set of files -Info 135 [00:04:21.000] event: +Info 125 [00:04:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 126 [00:04:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 127 [00:04:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 128 [00:04:14.000] Different program with same set of files +Info 129 [00:04:15.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 136 [00:04:22.000] event: +Info 130 [00:04:16.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig.json","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 137 [00:04:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 138 [00:04:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 139 [00:04:25.000] Reloading configured project /user/username/projects/myproject/tsconfig-indirect1.json -Info 140 [00:04:26.000] event: +Info 131 [00:04:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 132 [00:04:18.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 133 [00:04:19.000] Reloading configured project /user/username/projects/myproject/tsconfig-indirect1.json +Info 134 [00:04:20.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json","reason":"User requested reload projects"}} -Info 141 [00:04:27.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 142 [00:04:28.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info 143 [00:04:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 144 [00:04:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 145 [00:04:31.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 146 [00:04:32.000] Different program with same set of files -Info 147 [00:04:33.000] event: +Info 135 [00:04:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json +Info 136 [00:04:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 137 [00:04:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 138 [00:04:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 139 [00:04:25.000] Different program with same set of files +Info 140 [00:04:26.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json"}} -Info 148 [00:04:34.000] event: +Info 141 [00:04:27.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig-indirect1.json","configFile":"/user/username/projects/myproject/tsconfig-indirect1.json","diagnostics":[]}} -Info 149 [00:04:35.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 150 [00:04:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 151 [00:04:37.000] Before ensureProjectForOpenFiles: -Info 152 [00:04:38.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 152 [00:04:39.000] Files (0) +Info 142 [00:04:28.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 143 [00:04:29.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 144 [00:04:30.000] Before ensureProjectForOpenFiles: +Info 145 [00:04:31.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 145 [00:04:32.000] Files (0) -Info 152 [00:04:40.000] ----------------------------------------------- -Info 152 [00:04:41.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 152 [00:04:42.000] Files (4) +Info 145 [00:04:33.000] ----------------------------------------------- +Info 145 [00:04:34.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 145 [00:04:35.000] Files (4) -Info 152 [00:04:43.000] ----------------------------------------------- -Info 152 [00:04:44.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 152 [00:04:45.000] Files (2) +Info 145 [00:04:36.000] ----------------------------------------------- +Info 145 [00:04:37.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 145 [00:04:38.000] Files (2) -Info 152 [00:04:46.000] ----------------------------------------------- -Info 152 [00:04:47.000] Open files: -Info 152 [00:04:48.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 152 [00:04:49.000] Projects: /dev/null/inferredProject1* -Info 152 [00:04:50.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 152 [00:04:51.000] Projects: /user/username/projects/myproject/tsconfig-indirect1.json -Info 152 [00:04:52.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 153 [00:04:53.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 154 [00:04:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 155 [00:04:55.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 156 [00:04:56.000] Different program with same set of files -Info 157 [00:04:57.000] After ensureProjectForOpenFiles: -Info 158 [00:04:58.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 158 [00:04:59.000] Files (0) +Info 145 [00:04:39.000] ----------------------------------------------- +Info 145 [00:04:40.000] Open files: +Info 145 [00:04:41.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 145 [00:04:42.000] Projects: /dev/null/inferredProject1* +Info 145 [00:04:43.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 145 [00:04:44.000] Projects: /user/username/projects/myproject/tsconfig-indirect1.json +Info 145 [00:04:45.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 146 [00:04:46.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 147 [00:04:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 148 [00:04:48.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 149 [00:04:49.000] Different program with same set of files +Info 150 [00:04:50.000] After ensureProjectForOpenFiles: +Info 151 [00:04:51.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 151 [00:04:52.000] Files (0) -Info 158 [00:05:00.000] ----------------------------------------------- -Info 158 [00:05:01.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 158 [00:05:02.000] Files (4) +Info 151 [00:04:53.000] ----------------------------------------------- +Info 151 [00:04:54.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 151 [00:04:55.000] Files (4) -Info 158 [00:05:03.000] ----------------------------------------------- -Info 158 [00:05:04.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 158 [00:05:05.000] Files (2) +Info 151 [00:04:56.000] ----------------------------------------------- +Info 151 [00:04:57.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 151 [00:04:58.000] Files (2) -Info 158 [00:05:06.000] ----------------------------------------------- -Info 158 [00:05:07.000] Open files: -Info 158 [00:05:08.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 158 [00:05:09.000] Projects: /dev/null/inferredProject1* -Info 158 [00:05:10.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 158 [00:05:11.000] Projects: /user/username/projects/myproject/tsconfig-indirect1.json \ No newline at end of file +Info 151 [00:04:59.000] ----------------------------------------------- +Info 151 [00:05:00.000] Open files: +Info 151 [00:05:01.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 151 [00:05:02.000] Projects: /dev/null/inferredProject1* +Info 151 [00:05:03.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 151 [00:05:04.000] Projects: /user/username/projects/myproject/tsconfig-indirect1.json \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferences/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set.js b/tests/baselines/reference/tsserver/projectReferences/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set.js index 7c4ced343ab93..57597e84e6c2d 100644 --- a/tests/baselines/reference/tsserver/projectReferences/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set.js +++ b/tests/baselines/reference/tsserver/projectReferences/disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set.js @@ -18,9 +18,8 @@ Info 6 [00:00:59.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 7 [00:01:00.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [00:01:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 9 [00:01:02.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 7 [00:01:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 8 [00:01:01.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -32,36 +31,35 @@ Info 9 [00:01:02.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 10 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 11 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 12 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 13 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 14 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [00:01:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:01:09.000] Different program with same set of files -Info 17 [00:01:10.000] event: +Info 9 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 10 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 11 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 12 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 13 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 14 [00:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:01:08.000] Different program with same set of files +Info 16 [00:01:09.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 18 [00:01:11.000] event: +Info 17 [00:01:10.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":0,"tsSize":0,"tsx":0,"tsxSize":0,"dts":0,"dtsSize":0,"deferred":0,"deferredSize":0},"compilerOptions":{"disableReferencedProjectLoad":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":true,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 19 [00:01:12.000] event: +Info 18 [00:01:11.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 20 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 21 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 22 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 23 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 24 [00:01:17.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 25 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 26 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 27 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 28 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 29 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 30 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 31 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 32 [00:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 33 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 34 [00:01:27.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:28.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 36 [00:01:29.000] Files (2) +Info 19 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 20 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 21 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 22 [00:01:15.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 23 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 24 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 25 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 26 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 27 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 28 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 29 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 30 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 31 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 32 [00:01:25.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 33 [00:01:26.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 34 [00:01:27.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/main.ts @@ -71,29 +69,28 @@ Info 36 [00:01:29.000] Files (2) main.ts Root file specified for compilation -Info 37 [00:01:30.000] ----------------------------------------------- -Info 38 [00:01:31.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 38 [00:01:32.000] Files (0) +Info 35 [00:01:28.000] ----------------------------------------------- +Info 36 [00:01:29.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 36 [00:01:30.000] Files (0) -Info 38 [00:01:33.000] ----------------------------------------------- -Info 38 [00:01:34.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 38 [00:01:35.000] Files (2) +Info 36 [00:01:31.000] ----------------------------------------------- +Info 36 [00:01:32.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 36 [00:01:33.000] Files (2) -Info 38 [00:01:36.000] ----------------------------------------------- -Info 38 [00:01:37.000] Open files: -Info 38 [00:01:38.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 38 [00:01:39.000] Projects: /dev/null/inferredProject1* -Info 38 [00:01:40.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /dev/null/inferredProject1* -Info 38 [00:01:41.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: undefined -Info 38 [00:01:42.000] Search path: /dummy -Info 39 [00:01:43.000] For info: /dummy/dummy.ts :: No config files found. -Info 40 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 41 [00:01:45.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info 42 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 43 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 44 [00:01:48.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:49.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 46 [00:01:50.000] Files (2) +Info 36 [00:01:34.000] ----------------------------------------------- +Info 36 [00:01:35.000] Open files: +Info 36 [00:01:36.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 36 [00:01:37.000] Projects: /dev/null/inferredProject1* +Info 36 [00:01:38.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /dev/null/inferredProject1* +Info 36 [00:01:39.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: undefined +Info 36 [00:01:40.000] Search path: /dummy +Info 37 [00:01:41.000] For info: /dummy/dummy.ts :: No config files found. +Info 38 [00:01:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* +Info 39 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 40 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 41 [00:01:45.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:46.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 43 [00:01:47.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -103,65 +100,65 @@ Info 46 [00:01:50.000] Files (2) dummy.ts Root file specified for compilation -Info 47 [00:01:51.000] ----------------------------------------------- -Info 48 [00:01:52.000] `remove Project:: -Info 49 [00:01:53.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 50 [00:01:54.000] Files (0) +Info 44 [00:01:48.000] ----------------------------------------------- +Info 45 [00:01:49.000] `remove Project:: +Info 46 [00:01:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 47 [00:01:51.000] Files (0) -Info 51 [00:01:55.000] ----------------------------------------------- -Info 52 [00:01:56.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 53 [00:01:57.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 54 [00:01:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 55 [00:01:59.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 56 [00:02:00.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 57 [00:02:01.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 57 [00:02:02.000] Files (2) +Info 48 [00:01:52.000] ----------------------------------------------- +Info 49 [00:01:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 50 [00:01:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 51 [00:01:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 52 [00:01:56.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 53 [00:01:57.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 54 [00:01:58.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 54 [00:01:59.000] Files (2) -Info 57 [00:02:03.000] ----------------------------------------------- -Info 57 [00:02:04.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 57 [00:02:05.000] Files (2) +Info 54 [00:02:00.000] ----------------------------------------------- +Info 54 [00:02:01.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 54 [00:02:02.000] Files (2) -Info 57 [00:02:06.000] ----------------------------------------------- -Info 57 [00:02:07.000] Open files: -Info 57 [00:02:08.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 57 [00:02:09.000] Projects: /dev/null/inferredProject1* -Info 57 [00:02:10.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 57 [00:02:11.000] Projects: /dev/null/inferredProject2* -Info 57 [00:02:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 58 [00:02:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 59 [00:02:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 60 [00:02:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 61 [00:02:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 62 [00:02:17.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 62 [00:02:18.000] Files (2) +Info 54 [00:02:03.000] ----------------------------------------------- +Info 54 [00:02:04.000] Open files: +Info 54 [00:02:05.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 54 [00:02:06.000] Projects: /dev/null/inferredProject1* +Info 54 [00:02:07.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 54 [00:02:08.000] Projects: /dev/null/inferredProject2* +Info 54 [00:02:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 55 [00:02:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 56 [00:02:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 57 [00:02:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 58 [00:02:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 59 [00:02:14.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 59 [00:02:15.000] Files (2) -Info 62 [00:02:19.000] ----------------------------------------------- -Info 62 [00:02:20.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 62 [00:02:21.000] Files (2) +Info 59 [00:02:16.000] ----------------------------------------------- +Info 59 [00:02:17.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 59 [00:02:18.000] Files (2) -Info 62 [00:02:22.000] ----------------------------------------------- -Info 62 [00:02:23.000] Open files: -Info 62 [00:02:24.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 62 [00:02:25.000] Projects: /dev/null/inferredProject2* -Info 62 [00:02:26.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 63 [00:02:27.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 63 [00:02:28.000] Files (2) +Info 59 [00:02:19.000] ----------------------------------------------- +Info 59 [00:02:20.000] Open files: +Info 59 [00:02:21.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 59 [00:02:22.000] Projects: /dev/null/inferredProject2* +Info 59 [00:02:23.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 60 [00:02:24.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 60 [00:02:25.000] Files (2) -Info 63 [00:02:29.000] ----------------------------------------------- -Info 63 [00:02:30.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 63 [00:02:31.000] Files (2) +Info 60 [00:02:26.000] ----------------------------------------------- +Info 60 [00:02:27.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 60 [00:02:28.000] Files (2) -Info 63 [00:02:32.000] ----------------------------------------------- -Info 63 [00:02:33.000] Open files: -Info 63 [00:02:34.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 64 [00:02:35.000] Search path: /dummy -Info 65 [00:02:36.000] For info: /dummy/dummy.ts :: No config files found. -Info 66 [00:02:37.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info 67 [00:02:38.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 68 [00:02:39.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 69 [00:02:40.000] Files (2) +Info 60 [00:02:29.000] ----------------------------------------------- +Info 60 [00:02:30.000] Open files: +Info 60 [00:02:31.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 61 [00:02:32.000] Search path: /dummy +Info 62 [00:02:33.000] For info: /dummy/dummy.ts :: No config files found. +Info 63 [00:02:34.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* +Info 64 [00:02:35.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 65 [00:02:36.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 66 [00:02:37.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -171,10 +168,10 @@ Info 69 [00:02:40.000] Files (2) dummy.ts Root file specified for compilation -Info 70 [00:02:41.000] ----------------------------------------------- -Info 71 [00:02:42.000] `remove Project:: -Info 72 [00:02:43.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 73 [00:02:44.000] Files (2) +Info 67 [00:02:38.000] ----------------------------------------------- +Info 68 [00:02:39.000] `remove Project:: +Info 69 [00:02:40.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 70 [00:02:41.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/main.ts @@ -184,30 +181,30 @@ Info 73 [00:02:44.000] Files (2) main.ts Root file specified for compilation -Info 74 [00:02:45.000] ----------------------------------------------- -Info 75 [00:02:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 76 [00:02:47.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 77 [00:02:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 78 [00:02:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 79 [00:02:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 80 [00:02:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 81 [00:02:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 82 [00:02:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 83 [00:02:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 84 [00:02:55.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 84 [00:02:56.000] Files (2) +Info 71 [00:02:42.000] ----------------------------------------------- +Info 72 [00:02:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 73 [00:02:44.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 74 [00:02:45.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 75 [00:02:46.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 76 [00:02:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 77 [00:02:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 78 [00:02:49.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 79 [00:02:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 80 [00:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 81 [00:02:52.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 81 [00:02:53.000] Files (2) -Info 84 [00:02:57.000] ----------------------------------------------- -Info 84 [00:02:58.000] Open files: -Info 84 [00:02:59.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 84 [00:03:00.000] Projects: /dev/null/inferredProject2* -Info 84 [00:03:01.000] Search path: /user/username/projects/myproject/src -Info 85 [00:03:02.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 86 [00:03:03.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 87 [00:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 88 [00:03:05.000] event: +Info 81 [00:02:54.000] ----------------------------------------------- +Info 81 [00:02:55.000] Open files: +Info 81 [00:02:56.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 81 [00:02:57.000] Projects: /dev/null/inferredProject2* +Info 81 [00:02:58.000] Search path: /user/username/projects/myproject/src +Info 82 [00:02:59.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 83 [00:03:00.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 84 [00:03:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 85 [00:03:02.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 89 [00:03:06.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 86 [00:03:03.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "disableReferencedProjectLoad": true, @@ -220,9 +217,8 @@ Info 89 [00:03:06.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 90 [00:03:07.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 91 [00:03:08.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 92 [00:03:09.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 87 [00:03:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 88 [00:03:05.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -234,33 +230,32 @@ Info 92 [00:03:09.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 93 [00:03:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 94 [00:03:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 95 [00:03:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 96 [00:03:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 97 [00:03:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 98 [00:03:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 99 [00:03:16.000] Different program with same set of files -Info 100 [00:03:17.000] event: +Info 89 [00:03:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 90 [00:03:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 91 [00:03:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 92 [00:03:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 93 [00:03:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 94 [00:03:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 95 [00:03:12.000] Different program with same set of files +Info 96 [00:03:13.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 101 [00:03:18.000] event: +Info 97 [00:03:14.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 102 [00:03:19.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 103 [00:03:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 104 [00:03:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 105 [00:03:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 106 [00:03:23.000] Starting updateGraphWorker: Project: /dev/null/inferredProject3* -Info 107 [00:03:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 108 [00:03:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 109 [00:03:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 110 [00:03:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 111 [00:03:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 112 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 113 [00:03:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 114 [00:03:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 115 [00:03:32.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject3* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 116 [00:03:33.000] Project '/dev/null/inferredProject3*' (Inferred) -Info 117 [00:03:34.000] Files (2) +Info 98 [00:03:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 99 [00:03:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 100 [00:03:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 101 [00:03:18.000] Starting updateGraphWorker: Project: /dev/null/inferredProject3* +Info 102 [00:03:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 103 [00:03:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 104 [00:03:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 105 [00:03:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 106 [00:03:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 107 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 108 [00:03:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 109 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 110 [00:03:27.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject3* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 111 [00:03:28.000] Project '/dev/null/inferredProject3*' (Inferred) +Info 112 [00:03:29.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/src/main.ts @@ -270,38 +265,38 @@ Info 117 [00:03:34.000] Files (2) main.ts Root file specified for compilation -Info 118 [00:03:35.000] ----------------------------------------------- -Info 119 [00:03:36.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 119 [00:03:37.000] Files (0) +Info 113 [00:03:30.000] ----------------------------------------------- +Info 114 [00:03:31.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 114 [00:03:32.000] Files (0) -Info 119 [00:03:38.000] ----------------------------------------------- -Info 119 [00:03:39.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 119 [00:03:40.000] Files (2) +Info 114 [00:03:33.000] ----------------------------------------------- +Info 114 [00:03:34.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 114 [00:03:35.000] Files (2) -Info 119 [00:03:41.000] ----------------------------------------------- -Info 119 [00:03:42.000] Project '/dev/null/inferredProject3*' (Inferred) -Info 119 [00:03:43.000] Files (2) +Info 114 [00:03:36.000] ----------------------------------------------- +Info 114 [00:03:37.000] Project '/dev/null/inferredProject3*' (Inferred) +Info 114 [00:03:38.000] Files (2) -Info 119 [00:03:44.000] ----------------------------------------------- -Info 119 [00:03:45.000] Open files: -Info 119 [00:03:46.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 119 [00:03:47.000] Projects: /dev/null/inferredProject2* -Info 119 [00:03:48.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 119 [00:03:49.000] Projects: /dev/null/inferredProject3* -Info 119 [00:03:50.000] reload projects. -Info 120 [00:03:51.000] Scheduled: /dev/null/inferredProject2* -Info 121 [00:03:52.000] Scheduled: /dev/null/inferredProject3* -Info 122 [00:03:53.000] Scheduled: *ensureProjectForOpenFiles* -Info 123 [00:03:54.000] Search path: /dummy -Info 124 [00:03:55.000] For info: /dummy/dummy.ts :: No config files found. -Info 125 [00:03:56.000] Search path: /user/username/projects/myproject/src -Info 126 [00:03:57.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 127 [00:03:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 128 [00:03:59.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 129 [00:04:00.000] Reloading configured project /user/username/projects/myproject/tsconfig.json -Info 130 [00:04:01.000] event: +Info 114 [00:03:39.000] ----------------------------------------------- +Info 114 [00:03:40.000] Open files: +Info 114 [00:03:41.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 114 [00:03:42.000] Projects: /dev/null/inferredProject2* +Info 114 [00:03:43.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 114 [00:03:44.000] Projects: /dev/null/inferredProject3* +Info 114 [00:03:45.000] reload projects. +Info 115 [00:03:46.000] Scheduled: /dev/null/inferredProject2* +Info 116 [00:03:47.000] Scheduled: /dev/null/inferredProject3* +Info 117 [00:03:48.000] Scheduled: *ensureProjectForOpenFiles* +Info 118 [00:03:49.000] Search path: /dummy +Info 119 [00:03:50.000] For info: /dummy/dummy.ts :: No config files found. +Info 120 [00:03:51.000] Search path: /user/username/projects/myproject/src +Info 121 [00:03:52.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 122 [00:03:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 123 [00:03:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 124 [00:03:55.000] Reloading configured project /user/username/projects/myproject/tsconfig.json +Info 125 [00:03:56.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"User requested reload projects"}} -Info 131 [00:04:02.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 126 [00:03:57.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "disableReferencedProjectLoad": true, @@ -314,9 +309,8 @@ Info 131 [00:04:02.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 132 [00:04:03.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 133 [00:04:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 134 [00:04:05.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 127 [00:03:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 128 [00:03:59.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -328,73 +322,73 @@ Info 134 [00:04:05.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 135 [00:04:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 136 [00:04:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 137 [00:04:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 138 [00:04:09.000] Different program with same set of files -Info 139 [00:04:10.000] event: +Info 129 [00:04:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 130 [00:04:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 131 [00:04:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 132 [00:04:03.000] Different program with same set of files +Info 133 [00:04:04.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 140 [00:04:11.000] event: +Info 134 [00:04:05.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig.json","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 141 [00:04:12.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 142 [00:04:13.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 143 [00:04:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 144 [00:04:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 145 [00:04:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 146 [00:04:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 147 [00:04:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 148 [00:04:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 149 [00:04:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 150 [00:04:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 151 [00:04:22.000] Before ensureProjectForOpenFiles: -Info 152 [00:04:23.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 152 [00:04:24.000] Files (0) +Info 135 [00:04:06.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 136 [00:04:07.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 137 [00:04:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 138 [00:04:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 139 [00:04:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 140 [00:04:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 141 [00:04:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 142 [00:04:13.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 143 [00:04:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 144 [00:04:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 145 [00:04:16.000] Before ensureProjectForOpenFiles: +Info 146 [00:04:17.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 146 [00:04:18.000] Files (0) -Info 152 [00:04:25.000] ----------------------------------------------- -Info 152 [00:04:26.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 152 [00:04:27.000] Files (2) +Info 146 [00:04:19.000] ----------------------------------------------- +Info 146 [00:04:20.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 146 [00:04:21.000] Files (2) -Info 152 [00:04:28.000] ----------------------------------------------- -Info 152 [00:04:29.000] Project '/dev/null/inferredProject3*' (Inferred) -Info 152 [00:04:30.000] Files (2) +Info 146 [00:04:22.000] ----------------------------------------------- +Info 146 [00:04:23.000] Project '/dev/null/inferredProject3*' (Inferred) +Info 146 [00:04:24.000] Files (2) -Info 152 [00:04:31.000] ----------------------------------------------- -Info 152 [00:04:32.000] Open files: -Info 152 [00:04:33.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 152 [00:04:34.000] Projects: /dev/null/inferredProject2* -Info 152 [00:04:35.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 152 [00:04:36.000] Projects: /dev/null/inferredProject3* -Info 152 [00:04:37.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info 153 [00:04:38.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 154 [00:04:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 155 [00:04:40.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 156 [00:04:41.000] Different program with same set of files -Info 157 [00:04:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject3* -Info 158 [00:04:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 159 [00:04:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 160 [00:04:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 161 [00:04:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations -Info 162 [00:04:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 163 [00:04:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 164 [00:04:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 165 [00:04:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots -Info 166 [00:04:51.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject3* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 167 [00:04:52.000] Different program with same set of files -Info 168 [00:04:53.000] After ensureProjectForOpenFiles: -Info 169 [00:04:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 169 [00:04:55.000] Files (0) +Info 146 [00:04:25.000] ----------------------------------------------- +Info 146 [00:04:26.000] Open files: +Info 146 [00:04:27.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 146 [00:04:28.000] Projects: /dev/null/inferredProject2* +Info 146 [00:04:29.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 146 [00:04:30.000] Projects: /dev/null/inferredProject3* +Info 146 [00:04:31.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* +Info 147 [00:04:32.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 148 [00:04:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 149 [00:04:34.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 150 [00:04:35.000] Different program with same set of files +Info 151 [00:04:36.000] Starting updateGraphWorker: Project: /dev/null/inferredProject3* +Info 152 [00:04:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 153 [00:04:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 154 [00:04:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 155 [00:04:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject3* WatchType: Failed Lookup Locations +Info 156 [00:04:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 157 [00:04:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 158 [00:04:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 159 [00:04:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject3* WatchType: Type roots +Info 160 [00:04:45.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject3* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 161 [00:04:46.000] Different program with same set of files +Info 162 [00:04:47.000] After ensureProjectForOpenFiles: +Info 163 [00:04:48.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 163 [00:04:49.000] Files (0) -Info 169 [00:04:56.000] ----------------------------------------------- -Info 169 [00:04:57.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 169 [00:04:58.000] Files (2) +Info 163 [00:04:50.000] ----------------------------------------------- +Info 163 [00:04:51.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 163 [00:04:52.000] Files (2) -Info 169 [00:04:59.000] ----------------------------------------------- -Info 169 [00:05:00.000] Project '/dev/null/inferredProject3*' (Inferred) -Info 169 [00:05:01.000] Files (2) +Info 163 [00:04:53.000] ----------------------------------------------- +Info 163 [00:04:54.000] Project '/dev/null/inferredProject3*' (Inferred) +Info 163 [00:04:55.000] Files (2) -Info 169 [00:05:02.000] ----------------------------------------------- -Info 169 [00:05:03.000] Open files: -Info 169 [00:05:04.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 169 [00:05:05.000] Projects: /dev/null/inferredProject2* -Info 169 [00:05:06.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 169 [00:05:07.000] Projects: /dev/null/inferredProject3* \ No newline at end of file +Info 163 [00:04:56.000] ----------------------------------------------- +Info 163 [00:04:57.000] Open files: +Info 163 [00:04:58.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 163 [00:04:59.000] Projects: /dev/null/inferredProject2* +Info 163 [00:05:00.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 163 [00:05:01.000] Projects: /dev/null/inferredProject3* \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferences/does-not-error-on-container-only-project.js b/tests/baselines/reference/tsserver/projectReferences/does-not-error-on-container-only-project.js index 7a781651b9163..a25ee9652733a 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 @@ -19,10 +19,9 @@ Info 3 [00:01:13.000] Config: /user/username/projects/container/compositeExec } ] } -Info 4 [00:01:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 5 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/index.ts 500 undefined WatchType: Closed Script info -Info 6 [00:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json -Info 7 [00:01:17.000] Config: /user/username/projects/container/lib/tsconfig.json : { +Info 4 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/index.ts 500 undefined WatchType: Closed Script info +Info 5 [00:01:15.000] Starting updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json +Info 6 [00:01:16.000] Config: /user/username/projects/container/lib/tsconfig.json : { "rootNames": [ "/user/username/projects/container/lib/index.ts" ], @@ -33,16 +32,16 @@ Info 7 [00:01:17.000] Config: /user/username/projects/container/lib/tsconfig. "configFilePath": "/user/username/projects/container/lib/tsconfig.json" } } -Info 8 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file -Info 9 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/index.ts 500 undefined WatchType: Closed Script info -Info 10 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info 12 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info 13 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info 14 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots -Info 15 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:01:26.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) -Info 17 [00:01:27.000] Files (3) +Info 7 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/tsconfig.json 2000 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Config file +Info 8 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/index.ts 500 undefined WatchType: Closed Script info +Info 9 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 10 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots +Info 11 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/compositeExec/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots +Info 12 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots +Info 13 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/compositeExec/tsconfig.json WatchType: Type roots +Info 14 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/container/compositeExec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:01:25.000] Project '/user/username/projects/container/compositeExec/tsconfig.json' (Configured) +Info 16 [00:01:26.000] Files (3) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts /user/username/projects/container/compositeExec/index.ts @@ -55,10 +54,10 @@ Info 17 [00:01:27.000] Files (3) index.ts Part of 'files' list in tsconfig.json -Info 18 [00:01:28.000] ----------------------------------------------- -Info 19 [00:01:29.000] Creating configuration project /user/username/projects/container/exec/tsconfig.json -Info 20 [00:01:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/tsconfig.json 2000 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Config file -Info 21 [00:01:31.000] Config: /user/username/projects/container/exec/tsconfig.json : { +Info 17 [00:01:27.000] ----------------------------------------------- +Info 18 [00:01:28.000] Creating configuration project /user/username/projects/container/exec/tsconfig.json +Info 19 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/tsconfig.json 2000 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Config file +Info 20 [00:01:30.000] Config: /user/username/projects/container/exec/tsconfig.json : { "rootNames": [ "/user/username/projects/container/exec/index.ts" ], @@ -74,16 +73,15 @@ Info 21 [00:01:31.000] Config: /user/username/projects/container/exec/tsconfig } ] } -Info 22 [00:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 23 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/index.ts 500 undefined WatchType: Closed Script info -Info 24 [00:01:34.000] Starting updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json -Info 25 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info 26 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info 27 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info 28 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots -Info 29 [00:01:39.000] Finishing updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 30 [00:01:40.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) -Info 31 [00:01:41.000] Files (3) +Info 21 [00:01:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/index.ts 500 undefined WatchType: Closed Script info +Info 22 [00:01:32.000] Starting updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json +Info 23 [00:01:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots +Info 24 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/exec/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots +Info 25 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots +Info 26 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/exec/tsconfig.json WatchType: Type roots +Info 27 [00:01:37.000] Finishing updateGraphWorker: Project: /user/username/projects/container/exec/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 28 [00:01:38.000] Project '/user/username/projects/container/exec/tsconfig.json' (Configured) +Info 29 [00:01:39.000] Files (3) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts /user/username/projects/container/exec/index.ts @@ -96,17 +94,16 @@ Info 31 [00:01:41.000] Files (3) index.ts Part of 'files' list in tsconfig.json -Info 32 [00:01:42.000] ----------------------------------------------- -Info 33 [00:01:43.000] Creating configuration project /user/username/projects/container/lib/tsconfig.json -Info 34 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json -Info 36 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info 37 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info 38 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info 39 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots -Info 40 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:51.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) -Info 42 [00:01:52.000] Files (2) +Info 30 [00:01:40.000] ----------------------------------------------- +Info 31 [00:01:41.000] Creating configuration project /user/username/projects/container/lib/tsconfig.json +Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/lib/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/lib/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/container/lib/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:48.000] Project '/user/username/projects/container/lib/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/container/lib/index.ts @@ -116,10 +113,10 @@ Info 42 [00:01:52.000] Files (2) index.ts Part of 'files' list in tsconfig.json -Info 43 [00:01:53.000] ----------------------------------------------- -Info 44 [00:01:54.000] Creating configuration project /user/username/projects/container/tsconfig.json -Info 45 [00:01:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file -Info 46 [00:01:56.000] Config: /user/username/projects/container/tsconfig.json : { +Info 40 [00:01:50.000] ----------------------------------------------- +Info 41 [00:01:51.000] Creating configuration project /user/username/projects/container/tsconfig.json +Info 42 [00:01:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/container/tsconfig.json 2000 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Config file +Info 43 [00:01:53.000] Config: /user/username/projects/container/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/container/tsconfig.json" @@ -135,13 +132,12 @@ Info 46 [00:01:56.000] Config: /user/username/projects/container/tsconfig.json } ] } -Info 47 [00:01:57.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 48 [00:01:58.000] Starting updateGraphWorker: Project: /user/username/projects/container/tsconfig.json -Info 49 [00:01:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info 50 [00:02:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots -Info 51 [00:02:01.000] Finishing updateGraphWorker: Project: /user/username/projects/container/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 52 [00:02:02.000] Different program with same set of files -Info 53 [00:02:03.000] request: +Info 44 [00:01:54.000] Starting updateGraphWorker: Project: /user/username/projects/container/tsconfig.json +Info 45 [00:01:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots +Info 46 [00:01:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/container/node_modules/@types 1 undefined Project: /user/username/projects/container/tsconfig.json WatchType: Type roots +Info 47 [00:01:57.000] Finishing updateGraphWorker: Project: /user/username/projects/container/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 48 [00:01:58.000] Different program with same set of files +Info 49 [00:01:59.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -544,12 +540,12 @@ FsWatches:: FsWatchesRecursive:: -Info 54 [00:02:04.000] response: +Info 50 [00:02:00.000] response: { "response": [], "responseRequired": true } -Info 55 [00:02:05.000] request: +Info 51 [00:02:01.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -622,12 +618,12 @@ FsWatches:: FsWatchesRecursive:: -Info 56 [00:02:06.000] response: +Info 52 [00:02:02.000] response: { "response": [], "responseRequired": true } -Info 57 [00:02:07.000] request: +Info 53 [00:02:03.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -701,12 +697,12 @@ FsWatches:: FsWatchesRecursive:: -Info 58 [00:02:08.000] response: +Info 54 [00:02:04.000] response: { "response": [], "responseRequired": true } -Info 59 [00:02:09.000] request: +Info 55 [00:02:05.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -780,12 +776,12 @@ FsWatches:: FsWatchesRecursive:: -Info 60 [00:02:10.000] response: +Info 56 [00:02:06.000] response: { "response": [], "responseRequired": true } -Info 61 [00:02:11.000] request: +Info 57 [00:02:07.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -858,12 +854,12 @@ FsWatches:: FsWatchesRecursive:: -Info 62 [00:02:12.000] response: +Info 58 [00:02:08.000] response: { "response": [], "responseRequired": true } -Info 63 [00:02:13.000] request: +Info 59 [00:02:09.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -936,12 +932,12 @@ FsWatches:: FsWatchesRecursive:: -Info 64 [00:02:14.000] response: +Info 60 [00:02:10.000] response: { "response": [], "responseRequired": true } -Info 65 [00:02:15.000] request: +Info 61 [00:02:11.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -1015,12 +1011,12 @@ FsWatches:: FsWatchesRecursive:: -Info 66 [00:02:16.000] response: +Info 62 [00:02:12.000] response: { "response": [], "responseRequired": true } -Info 67 [00:02:17.000] request: +Info 63 [00:02:13.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -1094,12 +1090,12 @@ FsWatches:: FsWatchesRecursive:: -Info 68 [00:02:18.000] response: +Info 64 [00:02:14.000] response: { "response": [], "responseRequired": true } -Info 69 [00:02:19.000] request: +Info 65 [00:02:15.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -1172,12 +1168,12 @@ FsWatches:: FsWatchesRecursive:: -Info 70 [00:02:20.000] response: +Info 66 [00:02:16.000] response: { "response": [], "responseRequired": true } -Info 71 [00:02:21.000] request: +Info 67 [00:02:17.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -1250,12 +1246,12 @@ FsWatches:: FsWatchesRecursive:: -Info 72 [00:02:22.000] response: +Info 68 [00:02:18.000] response: { "response": [], "responseRequired": true } -Info 73 [00:02:23.000] request: +Info 69 [00:02:19.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -1329,12 +1325,12 @@ FsWatches:: FsWatchesRecursive:: -Info 74 [00:02:24.000] response: +Info 70 [00:02:20.000] response: { "response": [], "responseRequired": true } -Info 75 [00:02:25.000] request: +Info 71 [00:02:21.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -1408,12 +1404,12 @@ FsWatches:: FsWatchesRecursive:: -Info 76 [00:02:26.000] response: +Info 72 [00:02:22.000] response: { "response": [], "responseRequired": true } -Info 77 [00:02:27.000] request: +Info 73 [00:02:23.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -1486,12 +1482,12 @@ FsWatches:: FsWatchesRecursive:: -Info 78 [00:02:28.000] response: +Info 74 [00:02:24.000] response: { "response": [], "responseRequired": true } -Info 79 [00:02:29.000] request: +Info 75 [00:02:25.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -1564,12 +1560,12 @@ FsWatches:: FsWatchesRecursive:: -Info 80 [00:02:30.000] response: +Info 76 [00:02:26.000] response: { "response": [], "responseRequired": true } -Info 81 [00:02:31.000] request: +Info 77 [00:02:27.000] request: { "command": "syntacticDiagnosticsSync", "arguments": { @@ -1643,12 +1639,12 @@ FsWatches:: FsWatchesRecursive:: -Info 82 [00:02:32.000] response: +Info 78 [00:02:28.000] response: { "response": [], "responseRequired": true } -Info 83 [00:02:33.000] request: +Info 79 [00:02:29.000] request: { "command": "semanticDiagnosticsSync", "arguments": { @@ -1722,12 +1718,12 @@ FsWatches:: FsWatchesRecursive:: -Info 84 [00:02:34.000] response: +Info 80 [00:02:30.000] response: { "response": [], "responseRequired": true } -Info 85 [00:02:35.000] request: +Info 81 [00:02:31.000] request: { "command": "compilerOptionsDiagnostics-full", "arguments": { @@ -1800,7 +1796,7 @@ FsWatches:: FsWatchesRecursive:: -Info 86 [00:02:36.000] response: +Info 82 [00:02:32.000] response: { "response": [], "responseRequired": true diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js index 4d572a9d4bdf7..4978c06b717cd 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 @@ -75,9 +75,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.js } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -89,20 +88,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (2) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (2) /user/username/projects/myproject/b/lib/index.d.ts /user/username/projects/myproject/a/index.ts @@ -112,16 +111,16 @@ Info 25 [00:00:54.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Search path: /user/username/projects/myproject/a -Info 28 [00:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [00:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [00:00:59.000] Files (2) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Search path: /user/username/projects/myproject/a +Info 27 [00:00:56.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 28 [00:00:57.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 28 [00:00:58.000] Files (2) -Info 29 [00:01:00.000] ----------------------------------------------- -Info 29 [00:01:01.000] Open files: -Info 29 [00:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [00:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 28 [00:00:59.000] ----------------------------------------------- +Info 28 [00:01:00.000] Open files: +Info 28 [00:01:01.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 28 [00:01:02.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -146,11 +145,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [00:01:04.000] response: +Info 28 [00:01:03.000] response: { "responseRequired": false } -Info 30 [00:01:05.000] request: +Info 29 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -183,22 +182,21 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [00:01:06.000] Search path: /user/username/projects/myproject/b -Info 32 [00:01:07.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 33 [00:01:08.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 34 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 36 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 39 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 40 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 41 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 42 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 43 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 44 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 46 [00:01:21.000] Files (2) +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 +Info 33 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 37 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 38 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 39 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 40 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 41 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 42 [00:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 44 [00:01:19.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -209,22 +207,22 @@ Info 46 [00:01:21.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 47 [00:01:22.000] ----------------------------------------------- -Info 48 [00:01:23.000] Search path: /user/username/projects/myproject/b -Info 49 [00:01:24.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. -Info 50 [00:01:25.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 50 [00:01:26.000] Files (2) - -Info 50 [00:01:27.000] ----------------------------------------------- -Info 50 [00:01:28.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 50 [00:01:29.000] Files (2) - -Info 50 [00:01:30.000] ----------------------------------------------- -Info 50 [00:01:31.000] Open files: -Info 50 [00:01:32.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 50 [00:01:33.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 50 [00:01:34.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined -Info 50 [00:01:35.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 45 [00:01:20.000] ----------------------------------------------- +Info 46 [00:01:21.000] Search path: /user/username/projects/myproject/b +Info 47 [00:01:22.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. +Info 48 [00:01:23.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 48 [00:01:24.000] Files (2) + +Info 48 [00:01:25.000] ----------------------------------------------- +Info 48 [00:01:26.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 48 [00:01:27.000] Files (2) + +Info 48 [00:01:28.000] ----------------------------------------------- +Info 48 [00:01:29.000] Open files: +Info 48 [00:01:30.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 48 [00:01:31.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 48 [00:01:32.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined +Info 48 [00:01:33.000] Projects: /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -255,11 +253,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 50 [00:01:36.000] response: +Info 48 [00:01:34.000] response: { "responseRequired": false } -Info 51 [00:01:37.000] request: +Info 49 [00:01:35.000] request: { "command": "references", "arguments": { @@ -300,8 +298,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 52 [00:01:38.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 53 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 2000 undefined WatchType: Missing source map file +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 PolledWatches:: @@ -334,7 +332,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 54 [00:01:40.000] response: +Info 52 [00:01:38.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js index 39493c661c408..e6aa476a62bd1 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 @@ -78,9 +78,8 @@ Info 6 [00:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.js } Info 7 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory Info 8 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 9 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 10 [00:00:41.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -92,20 +91,20 @@ Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [00:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [00:00:56.000] Files (2) +Info 11 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 12 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 18 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 19 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:54.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 24 [00:00:55.000] Files (2) /user/username/projects/myproject/b/lib/index.d.ts /user/username/projects/myproject/a/index.ts @@ -115,16 +114,16 @@ Info 25 [00:00:56.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [00:00:57.000] ----------------------------------------------- -Info 27 [00:00:58.000] Search path: /user/username/projects/myproject/a -Info 28 [00:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [00:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [00:01:01.000] Files (2) +Info 25 [00:00:56.000] ----------------------------------------------- +Info 26 [00:00:57.000] Search path: /user/username/projects/myproject/a +Info 27 [00:00:58.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 28 [00:00:59.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 28 [00:01:00.000] Files (2) -Info 29 [00:01:02.000] ----------------------------------------------- -Info 29 [00:01:03.000] Open files: -Info 29 [00:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [00:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 28 [00:01:01.000] ----------------------------------------------- +Info 28 [00:01:02.000] Open files: +Info 28 [00:01:03.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 28 [00:01:04.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -149,11 +148,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [00:01:06.000] response: +Info 28 [00:01:05.000] response: { "responseRequired": false } -Info 30 [00:01:07.000] request: +Info 29 [00:01:06.000] request: { "seq": 0, "type": "request", @@ -186,22 +185,21 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [00:01:08.000] Search path: /user/username/projects/myproject/b -Info 32 [00:01:09.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 33 [00:01:10.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 34 [00:01:11.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 36 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 37 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 38 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 39 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 40 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 41 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 42 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 43 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 44 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:22.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 46 [00:01:23.000] Files (2) +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 +Info 33 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 34 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 35 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 36 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 37 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 38 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 39 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 40 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 41 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 42 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:20.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 44 [00:01:21.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -212,22 +210,22 @@ Info 46 [00:01:23.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 47 [00:01:24.000] ----------------------------------------------- -Info 48 [00:01:25.000] Search path: /user/username/projects/myproject/b -Info 49 [00:01:26.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. -Info 50 [00:01:27.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 50 [00:01:28.000] Files (2) - -Info 50 [00:01:29.000] ----------------------------------------------- -Info 50 [00:01:30.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 50 [00:01:31.000] Files (2) - -Info 50 [00:01:32.000] ----------------------------------------------- -Info 50 [00:01:33.000] Open files: -Info 50 [00:01:34.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 50 [00:01:35.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 50 [00:01:36.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined -Info 50 [00:01:37.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 45 [00:01:22.000] ----------------------------------------------- +Info 46 [00:01:23.000] Search path: /user/username/projects/myproject/b +Info 47 [00:01:24.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. +Info 48 [00:01:25.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 48 [00:01:26.000] Files (2) + +Info 48 [00:01:27.000] ----------------------------------------------- +Info 48 [00:01:28.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 48 [00:01:29.000] Files (2) + +Info 48 [00:01:30.000] ----------------------------------------------- +Info 48 [00:01:31.000] Open files: +Info 48 [00:01:32.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 48 [00:01:33.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 48 [00:01:34.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined +Info 48 [00:01:35.000] Projects: /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -258,11 +256,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 50 [00:01:38.000] response: +Info 48 [00:01:36.000] response: { "responseRequired": false } -Info 51 [00:01:39.000] request: +Info 49 [00:01:37.000] request: { "command": "references", "arguments": { @@ -303,13 +301,13 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 52 [00:01:40.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 53 [00:01:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 500 undefined WatchType: Closed Script info +Info 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 +Info 53 [00:01:41.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json Info 54 [00:01:42.000] Search path: /user/username/projects/myproject/b Info 55 [00:01:43.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 56 [00:01:44.000] Search path: /user/username/projects/myproject/b -Info 57 [00:01:45.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 58 [00:01:46.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json +Info 56 [00:01:44.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -342,7 +340,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 59 [00:01:47.000] response: +Info 57 [00:01:45.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-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 bef09307e4905..6fa086443d90a 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 @@ -75,9 +75,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.js } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -89,20 +88,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (2) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/a/index.ts @@ -112,16 +111,16 @@ Info 25 [00:00:54.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Search path: /user/username/projects/myproject/a -Info 28 [00:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [00:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [00:00:59.000] Files (2) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Search path: /user/username/projects/myproject/a +Info 27 [00:00:56.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 28 [00:00:57.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 28 [00:00:58.000] Files (2) -Info 29 [00:01:00.000] ----------------------------------------------- -Info 29 [00:01:01.000] Open files: -Info 29 [00:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [00:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 28 [00:00:59.000] ----------------------------------------------- +Info 28 [00:01:00.000] Open files: +Info 28 [00:01:01.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 28 [00:01:02.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -146,11 +145,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [00:01:04.000] response: +Info 28 [00:01:03.000] response: { "responseRequired": false } -Info 30 [00:01:05.000] request: +Info 29 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -183,21 +182,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [00:01:06.000] Search path: /user/username/projects/myproject/b -Info 32 [00:01:07.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 33 [00:01:08.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 34 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 36 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 37 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 38 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 39 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 40 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 41 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 42 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 43 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [00:01:19.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 45 [00:01:20.000] Files (2) +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 +Info 33 [00:01:08.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 34 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 35 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 36 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 39 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 40 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 41 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:17.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 43 [00:01:18.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -208,22 +206,22 @@ Info 45 [00:01:20.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 46 [00:01:21.000] ----------------------------------------------- -Info 47 [00:01:22.000] Search path: /user/username/projects/myproject/b -Info 48 [00:01:23.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. -Info 49 [00:01:24.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 49 [00:01:25.000] Files (2) - -Info 49 [00:01:26.000] ----------------------------------------------- -Info 49 [00:01:27.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 49 [00:01:28.000] Files (2) - -Info 49 [00:01:29.000] ----------------------------------------------- -Info 49 [00:01:30.000] Open files: -Info 49 [00:01:31.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 49 [00:01:32.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 49 [00:01:33.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined -Info 49 [00:01:34.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 44 [00:01:19.000] ----------------------------------------------- +Info 45 [00:01:20.000] Search path: /user/username/projects/myproject/b +Info 46 [00:01:21.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. +Info 47 [00:01:22.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 47 [00:01:23.000] Files (2) + +Info 47 [00:01:24.000] ----------------------------------------------- +Info 47 [00:01:25.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 47 [00:01:26.000] Files (2) + +Info 47 [00:01:27.000] ----------------------------------------------- +Info 47 [00:01:28.000] Open files: +Info 47 [00:01:29.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 47 [00:01:30.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 47 [00:01:31.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined +Info 47 [00:01:32.000] Projects: /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -252,11 +250,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 49 [00:01:35.000] response: +Info 47 [00:01:33.000] response: { "responseRequired": false } -Info 50 [00:01:36.000] request: +Info 48 [00:01:34.000] request: { "command": "references", "arguments": { @@ -295,12 +293,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 51 [00:01:37.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json +Info 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 Info 52 [00:01:38.000] Search path: /user/username/projects/myproject/b Info 53 [00:01:39.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 54 [00:01:40.000] Search path: /user/username/projects/myproject/b -Info 55 [00:01:41.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 56 [00:01:42.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json +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:: @@ -329,7 +327,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 57 [00:01:43.000] response: +Info 55 [00:01:41.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js index 974ad23e860d4..b3c140d1d5ca4 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 @@ -78,9 +78,8 @@ Info 6 [00:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.js } Info 7 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory Info 8 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 9 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 10 [00:00:41.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -92,20 +91,20 @@ Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [00:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [00:00:56.000] Files (2) +Info 11 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 12 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 18 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 19 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:54.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 24 [00:00:55.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/a/index.ts @@ -115,16 +114,16 @@ Info 25 [00:00:56.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [00:00:57.000] ----------------------------------------------- -Info 27 [00:00:58.000] Search path: /user/username/projects/myproject/a -Info 28 [00:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [00:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [00:01:01.000] Files (2) +Info 25 [00:00:56.000] ----------------------------------------------- +Info 26 [00:00:57.000] Search path: /user/username/projects/myproject/a +Info 27 [00:00:58.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 28 [00:00:59.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 28 [00:01:00.000] Files (2) -Info 29 [00:01:02.000] ----------------------------------------------- -Info 29 [00:01:03.000] Open files: -Info 29 [00:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [00:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 28 [00:01:01.000] ----------------------------------------------- +Info 28 [00:01:02.000] Open files: +Info 28 [00:01:03.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 28 [00:01:04.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -149,11 +148,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [00:01:06.000] response: +Info 28 [00:01:05.000] response: { "responseRequired": false } -Info 30 [00:01:07.000] request: +Info 29 [00:01:06.000] request: { "seq": 0, "type": "request", @@ -186,21 +185,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [00:01:08.000] Search path: /user/username/projects/myproject/b -Info 32 [00:01:09.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 33 [00:01:10.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 34 [00:01:11.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 36 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 37 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 38 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 39 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 40 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 41 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 42 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 43 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [00:01:21.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 45 [00:01:22.000] Files (2) +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 +Info 33 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 34 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 35 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 36 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 37 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 38 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 39 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 40 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 41 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:19.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 43 [00:01:20.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -211,22 +209,22 @@ Info 45 [00:01:22.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 46 [00:01:23.000] ----------------------------------------------- -Info 47 [00:01:24.000] Search path: /user/username/projects/myproject/b -Info 48 [00:01:25.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. -Info 49 [00:01:26.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 49 [00:01:27.000] Files (2) - -Info 49 [00:01:28.000] ----------------------------------------------- -Info 49 [00:01:29.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 49 [00:01:30.000] Files (2) - -Info 49 [00:01:31.000] ----------------------------------------------- -Info 49 [00:01:32.000] Open files: -Info 49 [00:01:33.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 49 [00:01:34.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 49 [00:01:35.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined -Info 49 [00:01:36.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 44 [00:01:21.000] ----------------------------------------------- +Info 45 [00:01:22.000] Search path: /user/username/projects/myproject/b +Info 46 [00:01:23.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. +Info 47 [00:01:24.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 47 [00:01:25.000] Files (2) + +Info 47 [00:01:26.000] ----------------------------------------------- +Info 47 [00:01:27.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 47 [00:01:28.000] Files (2) + +Info 47 [00:01:29.000] ----------------------------------------------- +Info 47 [00:01:30.000] Open files: +Info 47 [00:01:31.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 47 [00:01:32.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 47 [00:01:33.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined +Info 47 [00:01:34.000] Projects: /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -255,11 +253,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 49 [00:01:37.000] response: +Info 47 [00:01:35.000] response: { "responseRequired": false } -Info 50 [00:01:38.000] request: +Info 48 [00:01:36.000] request: { "command": "references", "arguments": { @@ -298,12 +296,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 51 [00:01:39.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json +Info 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 Info 52 [00:01:40.000] Search path: /user/username/projects/myproject/b Info 53 [00:01:41.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 54 [00:01:42.000] Search path: /user/username/projects/myproject/b -Info 55 [00:01:43.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 56 [00:01:44.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json +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:: @@ -332,7 +330,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 57 [00:01:45.000] response: +Info 55 [00:01:43.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-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 30ad37cadc223..38f03fd83afe4 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 @@ -75,9 +75,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.js } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -89,20 +88,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (2) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (2) /user/username/projects/myproject/b/lib/index.d.ts /user/username/projects/myproject/a/index.ts @@ -112,16 +111,16 @@ Info 25 [00:00:54.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Search path: /user/username/projects/myproject/a -Info 28 [00:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [00:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [00:00:59.000] Files (2) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Search path: /user/username/projects/myproject/a +Info 27 [00:00:56.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 28 [00:00:57.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 28 [00:00:58.000] Files (2) -Info 29 [00:01:00.000] ----------------------------------------------- -Info 29 [00:01:01.000] Open files: -Info 29 [00:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [00:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 28 [00:00:59.000] ----------------------------------------------- +Info 28 [00:01:00.000] Open files: +Info 28 [00:01:01.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 28 [00:01:02.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -146,11 +145,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [00:01:04.000] response: +Info 28 [00:01:03.000] response: { "responseRequired": false } -Info 30 [00:01:05.000] request: +Info 29 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -183,22 +182,21 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [00:01:06.000] Search path: /user/username/projects/myproject/b -Info 32 [00:01:07.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 33 [00:01:08.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 34 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 36 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 39 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 40 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 41 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 42 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 43 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 44 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:20.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 46 [00:01:21.000] Files (2) +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 +Info 33 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 34 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 35 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 37 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 38 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 39 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 40 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 41 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 42 [00:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:18.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 44 [00:01:19.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -209,22 +207,22 @@ Info 46 [00:01:21.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 47 [00:01:22.000] ----------------------------------------------- -Info 48 [00:01:23.000] Search path: /user/username/projects/myproject/b -Info 49 [00:01:24.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. -Info 50 [00:01:25.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 50 [00:01:26.000] Files (2) - -Info 50 [00:01:27.000] ----------------------------------------------- -Info 50 [00:01:28.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 50 [00:01:29.000] Files (2) - -Info 50 [00:01:30.000] ----------------------------------------------- -Info 50 [00:01:31.000] Open files: -Info 50 [00:01:32.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 50 [00:01:33.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 50 [00:01:34.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined -Info 50 [00:01:35.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 45 [00:01:20.000] ----------------------------------------------- +Info 46 [00:01:21.000] Search path: /user/username/projects/myproject/b +Info 47 [00:01:22.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. +Info 48 [00:01:23.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 48 [00:01:24.000] Files (2) + +Info 48 [00:01:25.000] ----------------------------------------------- +Info 48 [00:01:26.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 48 [00:01:27.000] Files (2) + +Info 48 [00:01:28.000] ----------------------------------------------- +Info 48 [00:01:29.000] Open files: +Info 48 [00:01:30.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 48 [00:01:31.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 48 [00:01:32.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined +Info 48 [00:01:33.000] Projects: /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -255,11 +253,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 50 [00:01:36.000] response: +Info 48 [00:01:34.000] response: { "responseRequired": false } -Info 51 [00:01:37.000] request: +Info 49 [00:01:35.000] request: { "command": "references", "arguments": { @@ -300,8 +298,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 52 [00:01:38.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 53 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 2000 undefined WatchType: Missing source map file +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 PolledWatches:: @@ -334,7 +332,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 54 [00:01:40.000] response: +Info 52 [00:01:38.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js index 82a231c7cfe3a..4366fd48feefb 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 @@ -78,9 +78,8 @@ Info 6 [00:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.js } Info 7 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory Info 8 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 9 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 10 [00:00:41.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -92,20 +91,20 @@ Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [00:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [00:00:56.000] Files (2) +Info 11 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 12 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 18 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 19 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:54.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 24 [00:00:55.000] Files (2) /user/username/projects/myproject/b/lib/index.d.ts /user/username/projects/myproject/a/index.ts @@ -115,16 +114,16 @@ Info 25 [00:00:56.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [00:00:57.000] ----------------------------------------------- -Info 27 [00:00:58.000] Search path: /user/username/projects/myproject/a -Info 28 [00:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [00:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [00:01:01.000] Files (2) +Info 25 [00:00:56.000] ----------------------------------------------- +Info 26 [00:00:57.000] Search path: /user/username/projects/myproject/a +Info 27 [00:00:58.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 28 [00:00:59.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 28 [00:01:00.000] Files (2) -Info 29 [00:01:02.000] ----------------------------------------------- -Info 29 [00:01:03.000] Open files: -Info 29 [00:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [00:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 28 [00:01:01.000] ----------------------------------------------- +Info 28 [00:01:02.000] Open files: +Info 28 [00:01:03.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 28 [00:01:04.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -149,11 +148,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [00:01:06.000] response: +Info 28 [00:01:05.000] response: { "responseRequired": false } -Info 30 [00:01:07.000] request: +Info 29 [00:01:06.000] request: { "seq": 0, "type": "request", @@ -186,22 +185,21 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [00:01:08.000] Search path: /user/username/projects/myproject/b -Info 32 [00:01:09.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 33 [00:01:10.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 34 [00:01:11.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 36 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 37 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 38 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 39 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 40 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 41 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 42 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 43 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 44 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:22.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 46 [00:01:23.000] Files (2) +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 +Info 33 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 34 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 35 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 36 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 37 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 38 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 39 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 40 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 41 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 42 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:20.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 44 [00:01:21.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -212,22 +210,22 @@ Info 46 [00:01:23.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 47 [00:01:24.000] ----------------------------------------------- -Info 48 [00:01:25.000] Search path: /user/username/projects/myproject/b -Info 49 [00:01:26.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. -Info 50 [00:01:27.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 50 [00:01:28.000] Files (2) - -Info 50 [00:01:29.000] ----------------------------------------------- -Info 50 [00:01:30.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 50 [00:01:31.000] Files (2) - -Info 50 [00:01:32.000] ----------------------------------------------- -Info 50 [00:01:33.000] Open files: -Info 50 [00:01:34.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 50 [00:01:35.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 50 [00:01:36.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined -Info 50 [00:01:37.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 45 [00:01:22.000] ----------------------------------------------- +Info 46 [00:01:23.000] Search path: /user/username/projects/myproject/b +Info 47 [00:01:24.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. +Info 48 [00:01:25.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 48 [00:01:26.000] Files (2) + +Info 48 [00:01:27.000] ----------------------------------------------- +Info 48 [00:01:28.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 48 [00:01:29.000] Files (2) + +Info 48 [00:01:30.000] ----------------------------------------------- +Info 48 [00:01:31.000] Open files: +Info 48 [00:01:32.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 48 [00:01:33.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 48 [00:01:34.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined +Info 48 [00:01:35.000] Projects: /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -258,11 +256,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 50 [00:01:38.000] response: +Info 48 [00:01:36.000] response: { "responseRequired": false } -Info 51 [00:01:39.000] request: +Info 49 [00:01:37.000] request: { "command": "references", "arguments": { @@ -303,13 +301,13 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 52 [00:01:40.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 53 [00:01:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 500 undefined WatchType: Closed Script info +Info 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 +Info 53 [00:01:41.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json Info 54 [00:01:42.000] Search path: /user/username/projects/myproject/b Info 55 [00:01:43.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 56 [00:01:44.000] Search path: /user/username/projects/myproject/b -Info 57 [00:01:45.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 58 [00:01:46.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json +Info 56 [00:01:44.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -342,7 +340,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 59 [00:01:47.000] response: +Info 57 [00:01:45.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-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 e23d9416a2d04..c2e97dc6d2697 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 @@ -75,9 +75,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.js } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -89,20 +88,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (2) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/a/index.ts @@ -112,16 +111,16 @@ Info 25 [00:00:54.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Search path: /user/username/projects/myproject/a -Info 28 [00:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [00:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [00:00:59.000] Files (2) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Search path: /user/username/projects/myproject/a +Info 27 [00:00:56.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 28 [00:00:57.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 28 [00:00:58.000] Files (2) -Info 29 [00:01:00.000] ----------------------------------------------- -Info 29 [00:01:01.000] Open files: -Info 29 [00:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [00:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 28 [00:00:59.000] ----------------------------------------------- +Info 28 [00:01:00.000] Open files: +Info 28 [00:01:01.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 28 [00:01:02.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -146,11 +145,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [00:01:04.000] response: +Info 28 [00:01:03.000] response: { "responseRequired": false } -Info 30 [00:01:05.000] request: +Info 29 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -183,21 +182,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [00:01:06.000] Search path: /user/username/projects/myproject/b -Info 32 [00:01:07.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 33 [00:01:08.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 34 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 36 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 37 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 38 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 39 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 40 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 41 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 42 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 43 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [00:01:19.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 45 [00:01:20.000] Files (2) +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 +Info 33 [00:01:08.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 34 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 35 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 36 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 37 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 38 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 39 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 40 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 41 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:17.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 43 [00:01:18.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -208,22 +206,22 @@ Info 45 [00:01:20.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 46 [00:01:21.000] ----------------------------------------------- -Info 47 [00:01:22.000] Search path: /user/username/projects/myproject/b -Info 48 [00:01:23.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. -Info 49 [00:01:24.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 49 [00:01:25.000] Files (2) - -Info 49 [00:01:26.000] ----------------------------------------------- -Info 49 [00:01:27.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 49 [00:01:28.000] Files (2) - -Info 49 [00:01:29.000] ----------------------------------------------- -Info 49 [00:01:30.000] Open files: -Info 49 [00:01:31.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 49 [00:01:32.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 49 [00:01:33.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined -Info 49 [00:01:34.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 44 [00:01:19.000] ----------------------------------------------- +Info 45 [00:01:20.000] Search path: /user/username/projects/myproject/b +Info 46 [00:01:21.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. +Info 47 [00:01:22.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 47 [00:01:23.000] Files (2) + +Info 47 [00:01:24.000] ----------------------------------------------- +Info 47 [00:01:25.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 47 [00:01:26.000] Files (2) + +Info 47 [00:01:27.000] ----------------------------------------------- +Info 47 [00:01:28.000] Open files: +Info 47 [00:01:29.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 47 [00:01:30.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 47 [00:01:31.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined +Info 47 [00:01:32.000] Projects: /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -252,11 +250,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 49 [00:01:35.000] response: +Info 47 [00:01:33.000] response: { "responseRequired": false } -Info 50 [00:01:36.000] request: +Info 48 [00:01:34.000] request: { "command": "references", "arguments": { @@ -295,12 +293,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 51 [00:01:37.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json +Info 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 Info 52 [00:01:38.000] Search path: /user/username/projects/myproject/b Info 53 [00:01:39.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 54 [00:01:40.000] Search path: /user/username/projects/myproject/b -Info 55 [00:01:41.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 56 [00:01:42.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json +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:: @@ -329,7 +327,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 57 [00:01:43.000] response: +Info 55 [00:01:41.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js index 4659083bed3d5..736d8ff0e610b 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 @@ -78,9 +78,8 @@ Info 6 [00:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.js } Info 7 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory Info 8 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 9 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 10 [00:00:41.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -92,20 +91,20 @@ Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [00:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [00:00:56.000] Files (2) +Info 11 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 12 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 18 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 19 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:54.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 24 [00:00:55.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/a/index.ts @@ -115,16 +114,16 @@ Info 25 [00:00:56.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [00:00:57.000] ----------------------------------------------- -Info 27 [00:00:58.000] Search path: /user/username/projects/myproject/a -Info 28 [00:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [00:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [00:01:01.000] Files (2) +Info 25 [00:00:56.000] ----------------------------------------------- +Info 26 [00:00:57.000] Search path: /user/username/projects/myproject/a +Info 27 [00:00:58.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 28 [00:00:59.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 28 [00:01:00.000] Files (2) -Info 29 [00:01:02.000] ----------------------------------------------- -Info 29 [00:01:03.000] Open files: -Info 29 [00:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [00:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 28 [00:01:01.000] ----------------------------------------------- +Info 28 [00:01:02.000] Open files: +Info 28 [00:01:03.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 28 [00:01:04.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -149,11 +148,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [00:01:06.000] response: +Info 28 [00:01:05.000] response: { "responseRequired": false } -Info 30 [00:01:07.000] request: +Info 29 [00:01:06.000] request: { "seq": 0, "type": "request", @@ -186,21 +185,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [00:01:08.000] Search path: /user/username/projects/myproject/b -Info 32 [00:01:09.000] For info: /user/username/projects/myproject/b/helper.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 33 [00:01:10.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 34 [00:01:11.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 36 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 37 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 38 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 39 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 40 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 41 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 42 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 43 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [00:01:21.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 45 [00:01:22.000] Files (2) +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 +Info 33 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 34 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 35 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 36 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 37 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 38 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 39 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 40 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 41 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:19.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 43 [00:01:20.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -211,22 +209,22 @@ Info 45 [00:01:22.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 46 [00:01:23.000] ----------------------------------------------- -Info 47 [00:01:24.000] Search path: /user/username/projects/myproject/b -Info 48 [00:01:25.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. -Info 49 [00:01:26.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 49 [00:01:27.000] Files (2) - -Info 49 [00:01:28.000] ----------------------------------------------- -Info 49 [00:01:29.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 49 [00:01:30.000] Files (2) - -Info 49 [00:01:31.000] ----------------------------------------------- -Info 49 [00:01:32.000] Open files: -Info 49 [00:01:33.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 49 [00:01:34.000] Projects: /user/username/projects/myproject/a/tsconfig.json -Info 49 [00:01:35.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined -Info 49 [00:01:36.000] Projects: /user/username/projects/myproject/b/tsconfig.json +Info 44 [00:01:21.000] ----------------------------------------------- +Info 45 [00:01:22.000] Search path: /user/username/projects/myproject/b +Info 46 [00:01:23.000] For info: /user/username/projects/myproject/b/tsconfig.json :: No config files found. +Info 47 [00:01:24.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 47 [00:01:25.000] Files (2) + +Info 47 [00:01:26.000] ----------------------------------------------- +Info 47 [00:01:27.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 47 [00:01:28.000] Files (2) + +Info 47 [00:01:29.000] ----------------------------------------------- +Info 47 [00:01:30.000] Open files: +Info 47 [00:01:31.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 47 [00:01:32.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 47 [00:01:33.000] FileName: /user/username/projects/myproject/b/helper.ts ProjectRootPath: undefined +Info 47 [00:01:34.000] Projects: /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -255,11 +253,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 49 [00:01:37.000] response: +Info 47 [00:01:35.000] response: { "responseRequired": false } -Info 50 [00:01:38.000] request: +Info 48 [00:01:36.000] request: { "command": "references", "arguments": { @@ -298,12 +296,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 51 [00:01:39.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json +Info 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 Info 52 [00:01:40.000] Search path: /user/username/projects/myproject/b Info 53 [00:01:41.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 54 [00:01:42.000] Search path: /user/username/projects/myproject/b -Info 55 [00:01:43.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 56 [00:01:44.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json +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:: @@ -332,7 +330,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 57 [00:01:45.000] response: +Info 55 [00:01:43.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-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 a833e44cf1039..148e0d58550df 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 @@ -75,9 +75,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.js } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -89,20 +88,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (2) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (2) /user/username/projects/myproject/b/lib/index.d.ts /user/username/projects/myproject/a/index.ts @@ -112,16 +111,16 @@ Info 25 [00:00:54.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Search path: /user/username/projects/myproject/a -Info 28 [00:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [00:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [00:00:59.000] Files (2) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Search path: /user/username/projects/myproject/a +Info 27 [00:00:56.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 28 [00:00:57.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 28 [00:00:58.000] Files (2) -Info 29 [00:01:00.000] ----------------------------------------------- -Info 29 [00:01:01.000] Open files: -Info 29 [00:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [00:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 28 [00:00:59.000] ----------------------------------------------- +Info 28 [00:01:00.000] Open files: +Info 28 [00:01:01.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 28 [00:01:02.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -146,11 +145,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [00:01:04.000] response: +Info 28 [00:01:03.000] response: { "responseRequired": false } -Info 30 [00:01:05.000] request: +Info 29 [00:01:04.000] request: { "command": "references", "arguments": { @@ -185,8 +184,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [00:01:06.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 32 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 2000 undefined WatchType: Missing source map file +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 PolledWatches:: @@ -213,7 +212,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 33 [00:01:08.000] response: +Info 32 [00:01:07.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js index cf9096da904d7..fc0702c99ca9e 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 @@ -78,9 +78,8 @@ Info 6 [00:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.js } Info 7 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory Info 8 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 9 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 10 [00:00:41.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -92,20 +91,20 @@ Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [00:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [00:00:56.000] Files (2) +Info 11 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 12 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 18 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 19 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:54.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 24 [00:00:55.000] Files (2) /user/username/projects/myproject/b/lib/index.d.ts /user/username/projects/myproject/a/index.ts @@ -115,16 +114,16 @@ Info 25 [00:00:56.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [00:00:57.000] ----------------------------------------------- -Info 27 [00:00:58.000] Search path: /user/username/projects/myproject/a -Info 28 [00:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [00:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [00:01:01.000] Files (2) +Info 25 [00:00:56.000] ----------------------------------------------- +Info 26 [00:00:57.000] Search path: /user/username/projects/myproject/a +Info 27 [00:00:58.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 28 [00:00:59.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 28 [00:01:00.000] Files (2) -Info 29 [00:01:02.000] ----------------------------------------------- -Info 29 [00:01:03.000] Open files: -Info 29 [00:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [00:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 28 [00:01:01.000] ----------------------------------------------- +Info 28 [00:01:02.000] Open files: +Info 28 [00:01:03.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 28 [00:01:04.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -149,11 +148,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [00:01:06.000] response: +Info 28 [00:01:05.000] response: { "responseRequired": false } -Info 30 [00:01:07.000] request: +Info 29 [00:01:06.000] request: { "command": "references", "arguments": { @@ -188,13 +187,13 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [00:01:08.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 32 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 500 undefined WatchType: Closed Script info -Info 33 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 34 [00:01:11.000] Search path: /user/username/projects/myproject/b -Info 35 [00:01:12.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 36 [00:01:13.000] Search path: /user/username/projects/myproject/b -Info 37 [00:01:14.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +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 +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 +Info 35 [00:01:12.000] Search path: /user/username/projects/myproject/b +Info 36 [00:01:13.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -223,7 +222,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 38 [00:01:15.000] response: +Info 37 [00:01:14.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js index f0d6376d0985e..722d92b45dbea 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 @@ -75,9 +75,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.js } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -89,20 +88,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (2) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/a/index.ts @@ -112,16 +111,16 @@ Info 25 [00:00:54.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Search path: /user/username/projects/myproject/a -Info 28 [00:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [00:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [00:00:59.000] Files (2) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Search path: /user/username/projects/myproject/a +Info 27 [00:00:56.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 28 [00:00:57.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 28 [00:00:58.000] Files (2) -Info 29 [00:01:00.000] ----------------------------------------------- -Info 29 [00:01:01.000] Open files: -Info 29 [00:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [00:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 28 [00:00:59.000] ----------------------------------------------- +Info 28 [00:01:00.000] Open files: +Info 28 [00:01:01.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 28 [00:01:02.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -146,11 +145,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [00:01:04.000] response: +Info 28 [00:01:03.000] response: { "responseRequired": false } -Info 30 [00:01:05.000] request: +Info 29 [00:01:04.000] request: { "command": "references", "arguments": { @@ -185,11 +184,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [00:01:06.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 32 [00:01:07.000] Search path: /user/username/projects/myproject/b -Info 33 [00:01:08.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 34 [00:01:09.000] Search path: /user/username/projects/myproject/b -Info 35 [00:01:10.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +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 +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:: @@ -214,7 +213,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 36 [00:01:11.000] response: +Info 35 [00:01:10.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-disabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js index e25aeed59c965..568bc7ab92b7a 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 @@ -78,9 +78,8 @@ Info 6 [00:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.js } Info 7 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory Info 8 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 9 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 10 [00:00:41.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -92,20 +91,20 @@ Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [00:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [00:00:56.000] Files (2) +Info 11 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 12 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 18 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 19 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:54.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 24 [00:00:55.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/a/index.ts @@ -115,16 +114,16 @@ Info 25 [00:00:56.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [00:00:57.000] ----------------------------------------------- -Info 27 [00:00:58.000] Search path: /user/username/projects/myproject/a -Info 28 [00:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [00:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [00:01:01.000] Files (2) +Info 25 [00:00:56.000] ----------------------------------------------- +Info 26 [00:00:57.000] Search path: /user/username/projects/myproject/a +Info 27 [00:00:58.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 28 [00:00:59.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 28 [00:01:00.000] Files (2) -Info 29 [00:01:02.000] ----------------------------------------------- -Info 29 [00:01:03.000] Open files: -Info 29 [00:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [00:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 28 [00:01:01.000] ----------------------------------------------- +Info 28 [00:01:02.000] Open files: +Info 28 [00:01:03.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 28 [00:01:04.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -149,11 +148,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [00:01:06.000] response: +Info 28 [00:01:05.000] response: { "responseRequired": false } -Info 30 [00:01:07.000] request: +Info 29 [00:01:06.000] request: { "command": "references", "arguments": { @@ -188,11 +187,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [00:01:08.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 32 [00:01:09.000] Search path: /user/username/projects/myproject/b -Info 33 [00:01:10.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 34 [00:01:11.000] Search path: /user/username/projects/myproject/b -Info 35 [00:01:12.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +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 +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:: @@ -217,7 +216,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 36 [00:01:13.000] response: +Info 35 [00:01:12.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-missing.js index da02d1a157a23..ba071bbd262bf 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 @@ -75,9 +75,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.js } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -89,20 +88,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (2) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (2) /user/username/projects/myproject/b/lib/index.d.ts /user/username/projects/myproject/a/index.ts @@ -112,16 +111,16 @@ Info 25 [00:00:54.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Search path: /user/username/projects/myproject/a -Info 28 [00:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [00:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [00:00:59.000] Files (2) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Search path: /user/username/projects/myproject/a +Info 27 [00:00:56.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 28 [00:00:57.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 28 [00:00:58.000] Files (2) -Info 29 [00:01:00.000] ----------------------------------------------- -Info 29 [00:01:01.000] Open files: -Info 29 [00:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [00:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 28 [00:00:59.000] ----------------------------------------------- +Info 28 [00:01:00.000] Open files: +Info 28 [00:01:01.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 28 [00:01:02.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -146,11 +145,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [00:01:04.000] response: +Info 28 [00:01:03.000] response: { "responseRequired": false } -Info 30 [00:01:05.000] request: +Info 29 [00:01:04.000] request: { "command": "references", "arguments": { @@ -185,8 +184,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [00:01:06.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 32 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 2000 undefined WatchType: Missing source map file +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 PolledWatches:: @@ -213,7 +212,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 33 [00:01:08.000] response: +Info 32 [00:01:07.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-disabled-and-a-decl-map-is-present.js index 3183247dcf030..b9d1e534fe0da 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 @@ -78,9 +78,8 @@ Info 6 [00:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.js } Info 7 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory Info 8 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 9 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 10 [00:00:41.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -92,20 +91,20 @@ Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [00:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [00:00:56.000] Files (2) +Info 11 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 12 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 18 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 19 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:54.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 24 [00:00:55.000] Files (2) /user/username/projects/myproject/b/lib/index.d.ts /user/username/projects/myproject/a/index.ts @@ -115,16 +114,16 @@ Info 25 [00:00:56.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [00:00:57.000] ----------------------------------------------- -Info 27 [00:00:58.000] Search path: /user/username/projects/myproject/a -Info 28 [00:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [00:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [00:01:01.000] Files (2) +Info 25 [00:00:56.000] ----------------------------------------------- +Info 26 [00:00:57.000] Search path: /user/username/projects/myproject/a +Info 27 [00:00:58.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 28 [00:00:59.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 28 [00:01:00.000] Files (2) -Info 29 [00:01:02.000] ----------------------------------------------- -Info 29 [00:01:03.000] Open files: -Info 29 [00:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [00:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 28 [00:01:01.000] ----------------------------------------------- +Info 28 [00:01:02.000] Open files: +Info 28 [00:01:03.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 28 [00:01:04.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -149,11 +148,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [00:01:06.000] response: +Info 28 [00:01:05.000] response: { "responseRequired": false } -Info 30 [00:01:07.000] request: +Info 29 [00:01:06.000] request: { "command": "references", "arguments": { @@ -188,25 +187,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [00:01:08.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 32 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/lib/index.d.ts.map 500 undefined WatchType: Closed Script info -Info 33 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 34 [00:01:11.000] Search path: /user/username/projects/myproject/b -Info 35 [00:01:12.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 36 [00:01:13.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 37 [00:01:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 38 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/helper.ts 500 undefined WatchType: Closed Script info -Info 39 [00:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 40 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 41 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 42 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 43 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 44 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 45 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 46 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 47 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 48 [00:01:25.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 49 [00:01:26.000] Files (2) +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 +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 +Info 35 [00:01:12.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json +Info 36 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/helper.ts 500 undefined WatchType: Closed Script info +Info 37 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 38 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 39 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 40 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 41 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 42 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 43 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 44 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 45 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 46 [00:01:23.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 47 [00:01:24.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -217,10 +215,10 @@ Info 49 [00:01:26.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 50 [00:01:27.000] ----------------------------------------------- -Info 51 [00:01:28.000] Search path: /user/username/projects/myproject/b -Info 52 [00:01:29.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 53 [00:01:30.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json +Info 48 [00:01:25.000] ----------------------------------------------- +Info 49 [00:01:26.000] Search path: /user/username/projects/myproject/b +Info 50 [00:01:27.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 51 [00:01:28.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -255,7 +253,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 54 [00:01:31.000] response: +Info 52 [00:01:29.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-missing.js index f9c1aeb3daf20..d8f0a5c5dd7a3 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 @@ -75,9 +75,8 @@ Info 6 [00:00:35.000] Config: /user/username/projects/myproject/a/tsconfig.js } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 10 [00:00:39.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -89,20 +88,20 @@ Info 11 [00:00:40.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:53.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [00:00:54.000] Files (2) +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:52.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 24 [00:00:53.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/a/index.ts @@ -112,16 +111,16 @@ Info 25 [00:00:54.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [00:00:55.000] ----------------------------------------------- -Info 27 [00:00:56.000] Search path: /user/username/projects/myproject/a -Info 28 [00:00:57.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [00:00:58.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [00:00:59.000] Files (2) +Info 25 [00:00:54.000] ----------------------------------------------- +Info 26 [00:00:55.000] Search path: /user/username/projects/myproject/a +Info 27 [00:00:56.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 28 [00:00:57.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 28 [00:00:58.000] Files (2) -Info 29 [00:01:00.000] ----------------------------------------------- -Info 29 [00:01:01.000] Open files: -Info 29 [00:01:02.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [00:01:03.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 28 [00:00:59.000] ----------------------------------------------- +Info 28 [00:01:00.000] Open files: +Info 28 [00:01:01.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 28 [00:01:02.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -146,11 +145,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [00:01:04.000] response: +Info 28 [00:01:03.000] response: { "responseRequired": false } -Info 30 [00:01:05.000] request: +Info 29 [00:01:04.000] request: { "command": "references", "arguments": { @@ -185,23 +184,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [00:01:06.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 32 [00:01:07.000] Search path: /user/username/projects/myproject/b -Info 33 [00:01:08.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 34 [00:01:09.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 35 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/helper.ts 500 undefined WatchType: Closed Script info -Info 37 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 38 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 39 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 40 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 41 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 42 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 43 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 44 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 45 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 46 [00:01:21.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 47 [00:01:22.000] Files (2) +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 +Info 33 [00:01:08.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json +Info 34 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/helper.ts 500 undefined WatchType: Closed Script info +Info 35 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 36 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 37 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 38 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 39 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 40 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 41 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 42 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 43 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:19.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 45 [00:01:20.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -212,10 +210,10 @@ Info 47 [00:01:22.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 48 [00:01:23.000] ----------------------------------------------- -Info 49 [00:01:24.000] Search path: /user/username/projects/myproject/b -Info 50 [00:01:25.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 51 [00:01:26.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json +Info 46 [00:01:21.000] ----------------------------------------------- +Info 47 [00:01:22.000] Search path: /user/username/projects/myproject/b +Info 48 [00:01:23.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 49 [00:01:24.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -246,7 +244,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 52 [00:01:27.000] response: +Info 50 [00:01:25.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js b/tests/baselines/reference/tsserver/projectReferences/find-refs-to-decl-in-other-proj-when-proj-is-not-loaded-and-refd-proj-loading-is-enabled-and-proj-ref-redirects-are-enabled-and-a-decl-map-is-present.js index 3cea03506718f..8ca77317abbaa 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 @@ -78,9 +78,8 @@ Info 6 [00:00:37.000] Config: /user/username/projects/myproject/a/tsconfig.js } Info 7 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory Info 8 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json -Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 9 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json +Info 10 [00:00:41.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/helper.ts", "/user/username/projects/myproject/b/index.ts" @@ -92,20 +91,20 @@ Info 11 [00:00:42.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 12 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file -Info 13 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file -Info 19 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 20 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 21 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 22 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots -Info 23 [00:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:55.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 25 [00:00:56.000] Files (2) +Info 11 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Config file +Info 12 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Missing file +Info 18 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 19 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 20 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 21 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/a/tsconfig.json WatchType: Type roots +Info 22 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:54.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 24 [00:00:55.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/a/index.ts @@ -115,16 +114,16 @@ Info 25 [00:00:56.000] Files (2) index.ts Matched by default include pattern '**/*' -Info 26 [00:00:57.000] ----------------------------------------------- -Info 27 [00:00:58.000] Search path: /user/username/projects/myproject/a -Info 28 [00:00:59.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. -Info 29 [00:01:00.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) -Info 29 [00:01:01.000] Files (2) +Info 25 [00:00:56.000] ----------------------------------------------- +Info 26 [00:00:57.000] Search path: /user/username/projects/myproject/a +Info 27 [00:00:58.000] For info: /user/username/projects/myproject/a/tsconfig.json :: No config files found. +Info 28 [00:00:59.000] Project '/user/username/projects/myproject/a/tsconfig.json' (Configured) +Info 28 [00:01:00.000] Files (2) -Info 29 [00:01:02.000] ----------------------------------------------- -Info 29 [00:01:03.000] Open files: -Info 29 [00:01:04.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined -Info 29 [00:01:05.000] Projects: /user/username/projects/myproject/a/tsconfig.json +Info 28 [00:01:01.000] ----------------------------------------------- +Info 28 [00:01:02.000] Open files: +Info 28 [00:01:03.000] FileName: /user/username/projects/myproject/a/index.ts ProjectRootPath: undefined +Info 28 [00:01:04.000] Projects: /user/username/projects/myproject/a/tsconfig.json After request PolledWatches:: @@ -149,11 +148,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 29 [00:01:06.000] response: +Info 28 [00:01:05.000] response: { "responseRequired": false } -Info 30 [00:01:07.000] request: +Info 29 [00:01:06.000] request: { "command": "references", "arguments": { @@ -188,23 +187,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 31 [00:01:08.000] Finding references to /user/username/projects/myproject/a/index.ts position 40 in project /user/username/projects/myproject/a/tsconfig.json -Info 32 [00:01:09.000] Search path: /user/username/projects/myproject/b -Info 33 [00:01:10.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 34 [00:01:11.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json -Info 35 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/helper.ts 500 undefined WatchType: Closed Script info -Info 37 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json -Info 38 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 39 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations -Info 40 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file -Info 41 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 42 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 43 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 44 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots -Info 45 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 46 [00:01:23.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) -Info 47 [00:01:24.000] Files (2) +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 +Info 33 [00:01:10.000] Creating configuration project /user/username/projects/myproject/b/tsconfig.json +Info 34 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/helper.ts 500 undefined WatchType: Closed Script info +Info 35 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json +Info 36 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 37 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 0 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Failed Lookup Locations +Info 38 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Missing file +Info 39 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 40 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 41 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 42 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/b/tsconfig.json WatchType: Type roots +Info 43 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:21.000] Project '/user/username/projects/myproject/b/tsconfig.json' (Configured) +Info 45 [00:01:22.000] Files (2) /user/username/projects/myproject/b/index.ts /user/username/projects/myproject/b/helper.ts @@ -215,10 +213,10 @@ Info 47 [00:01:24.000] Files (2) helper.ts Matched by default include pattern '**/*' -Info 48 [00:01:25.000] ----------------------------------------------- -Info 49 [00:01:26.000] Search path: /user/username/projects/myproject/b -Info 50 [00:01:27.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json -Info 51 [00:01:28.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json +Info 46 [00:01:23.000] ----------------------------------------------- +Info 47 [00:01:24.000] Search path: /user/username/projects/myproject/b +Info 48 [00:01:25.000] For info: /user/username/projects/myproject/b/index.ts :: Config file name: /user/username/projects/myproject/b/tsconfig.json +Info 49 [00:01:26.000] Finding references to /user/username/projects/myproject/b/index.ts position 13 in project /user/username/projects/myproject/b/tsconfig.json After request PolledWatches:: @@ -249,7 +247,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/b: {} -Info 52 [00:01:29.000] response: +Info 50 [00:01:27.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/finding-local-reference-doesnt-load-ancestor/sibling-projects.js b/tests/baselines/reference/tsserver/projectReferences/finding-local-reference-doesnt-load-ancestor/sibling-projects.js index 345a427cbf10e..45a5a115acdc2 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 @@ -76,17 +76,16 @@ Info 6 [00:00:40.000] Config: /user/username/projects/solution/compiler/tscon "configFilePath": "/user/username/projects/solution/compiler/tsconfig.json" } } -Info 7 [00:00:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/types.ts 500 undefined WatchType: Closed Script info -Info 9 [00:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/solution/compiler/tsconfig.json -Info 10 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots -Info 12 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots -Info 13 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots -Info 14 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots -Info 15 [00:00:49.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/compiler/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:00:50.000] Project '/user/username/projects/solution/compiler/tsconfig.json' (Configured) -Info 17 [00:00:51.000] Files (3) +Info 7 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/types.ts 500 undefined WatchType: Closed Script info +Info 8 [00:00:42.000] Starting updateGraphWorker: Project: /user/username/projects/solution/compiler/tsconfig.json +Info 9 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots +Info 11 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots +Info 12 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots +Info 13 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots +Info 14 [00:00:48.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/compiler/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:49.000] Project '/user/username/projects/solution/compiler/tsconfig.json' (Configured) +Info 16 [00:00:50.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/compiler/types.ts /user/username/projects/solution/compiler/program.ts @@ -99,24 +98,24 @@ Info 17 [00:00:51.000] Files (3) program.ts Part of 'files' list in tsconfig.json -Info 18 [00:00:52.000] ----------------------------------------------- -Info 19 [00:00:53.000] Search path: /user/username/projects/solution/compiler -Info 20 [00:00:54.000] For info: /user/username/projects/solution/compiler/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json -Info 21 [00:00:55.000] Creating configuration project /user/username/projects/solution/tsconfig.json -Info 22 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 23 [00:00:57.000] Search path: /user/username/projects/solution -Info 24 [00:00:58.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. -Info 25 [00:00:59.000] Project '/user/username/projects/solution/compiler/tsconfig.json' (Configured) -Info 25 [00:01:00.000] Files (3) - -Info 25 [00:01:01.000] ----------------------------------------------- -Info 25 [00:01:02.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) -Info 25 [00:01:03.000] Files (0) InitialLoadPending - -Info 25 [00:01:04.000] ----------------------------------------------- -Info 25 [00:01:05.000] Open files: -Info 25 [00:01:06.000] FileName: /user/username/projects/solution/compiler/program.ts ProjectRootPath: undefined -Info 25 [00:01:07.000] Projects: /user/username/projects/solution/compiler/tsconfig.json +Info 17 [00:00:51.000] ----------------------------------------------- +Info 18 [00:00:52.000] Search path: /user/username/projects/solution/compiler +Info 19 [00:00:53.000] For info: /user/username/projects/solution/compiler/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json +Info 20 [00:00:54.000] Creating configuration project /user/username/projects/solution/tsconfig.json +Info 21 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 22 [00:00:56.000] Search path: /user/username/projects/solution +Info 23 [00:00:57.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. +Info 24 [00:00:58.000] Project '/user/username/projects/solution/compiler/tsconfig.json' (Configured) +Info 24 [00:00:59.000] Files (3) + +Info 24 [00:01:00.000] ----------------------------------------------- +Info 24 [00:01:01.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) +Info 24 [00:01:02.000] Files (0) InitialLoadPending + +Info 24 [00:01:03.000] ----------------------------------------------- +Info 24 [00:01:04.000] Open files: +Info 24 [00:01:05.000] FileName: /user/username/projects/solution/compiler/program.ts ProjectRootPath: undefined +Info 24 [00:01:06.000] Projects: /user/username/projects/solution/compiler/tsconfig.json After request PolledWatches:: @@ -137,11 +136,11 @@ FsWatches:: FsWatchesRecursive:: -Info 25 [00:01:08.000] response: +Info 24 [00:01:07.000] response: { "responseRequired": false } -Info 26 [00:01:09.000] request: +Info 25 [00:01:08.000] request: { "command": "references", "arguments": { @@ -172,7 +171,7 @@ FsWatches:: FsWatchesRecursive:: -Info 27 [00:01:10.000] Finding references to /user/username/projects/solution/compiler/program.ts position 133 in project /user/username/projects/solution/compiler/tsconfig.json +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:: @@ -193,7 +192,7 @@ FsWatches:: FsWatchesRecursive:: -Info 28 [00:01:11.000] response: +Info 27 [00:01:10.000] response: { "response": { "refs": [ @@ -238,7 +237,7 @@ Info 28 [00:01:11.000] response: }, "responseRequired": true } -Info 29 [00:01:12.000] request: +Info 28 [00:01:11.000] request: { "command": "references", "arguments": { @@ -269,9 +268,9 @@ FsWatches:: FsWatchesRecursive:: -Info 30 [00:01:13.000] Finding references to /user/username/projects/solution/compiler/program.ts position 110 in project /user/username/projects/solution/compiler/tsconfig.json -Info 31 [00:01:14.000] Loading configured project /user/username/projects/solution/tsconfig.json -Info 32 [00:01:15.000] Config: /user/username/projects/solution/tsconfig.json : { +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 : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/solution/tsconfig.json" @@ -287,9 +286,8 @@ Info 32 [00:01:15.000] Config: /user/username/projects/solution/tsconfig.json } ] } -Info 33 [00:01:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:17.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json -Info 35 [00:01:18.000] Config: /user/username/projects/solution/services/tsconfig.json : { +Info 32 [00:01:15.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json +Info 33 [00:01:16.000] Config: /user/username/projects/solution/services/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/services/services.ts" ], @@ -304,22 +302,21 @@ Info 35 [00:01:18.000] Config: /user/username/projects/solution/services/tscon } ] } -Info 36 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/services/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 37 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info 38 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info 39 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:23.000] Different program with same set of files -Info 41 [00:01:24.000] Creating configuration project /user/username/projects/solution/services/tsconfig.json -Info 42 [00:01:25.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 43 [00:01:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/services/services.ts 500 undefined WatchType: Closed Script info -Info 44 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/solution/services/tsconfig.json -Info 45 [00:01:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/services/node_modules/@types 1 undefined Project: /user/username/projects/solution/services/tsconfig.json WatchType: Type roots -Info 46 [00:01:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/services/node_modules/@types 1 undefined Project: /user/username/projects/solution/services/tsconfig.json WatchType: Type roots -Info 47 [00:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/services/tsconfig.json WatchType: Type roots -Info 48 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/services/tsconfig.json WatchType: Type roots -Info 49 [00:01:32.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/services/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 50 [00:01:33.000] Project '/user/username/projects/solution/services/tsconfig.json' (Configured) -Info 51 [00:01:34.000] Files (4) +Info 34 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/services/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 35 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots +Info 36 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots +Info 37 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:21.000] Different program with same set of files +Info 39 [00:01:22.000] Creating configuration project /user/username/projects/solution/services/tsconfig.json +Info 40 [00:01:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/services/services.ts 500 undefined WatchType: Closed Script info +Info 41 [00:01:24.000] Starting updateGraphWorker: Project: /user/username/projects/solution/services/tsconfig.json +Info 42 [00:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/services/node_modules/@types 1 undefined Project: /user/username/projects/solution/services/tsconfig.json WatchType: Type roots +Info 43 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/services/node_modules/@types 1 undefined Project: /user/username/projects/solution/services/tsconfig.json WatchType: Type roots +Info 44 [00:01:27.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/services/tsconfig.json WatchType: Type roots +Info 45 [00:01:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/services/tsconfig.json WatchType: Type roots +Info 46 [00:01:29.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/services/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 47 [00:01:30.000] Project '/user/username/projects/solution/services/tsconfig.json' (Configured) +Info 48 [00:01:31.000] Files (4) /a/lib/lib.d.ts /user/username/projects/solution/compiler/types.ts /user/username/projects/solution/compiler/program.ts @@ -335,15 +332,15 @@ Info 51 [00:01:34.000] Files (4) services.ts Part of 'files' list in tsconfig.json -Info 52 [00:01:35.000] ----------------------------------------------- -Info 53 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/types.d.ts 2000 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Missing generated file -Info 54 [00:01:37.000] Finding references to /user/username/projects/solution/compiler/types.ts position 103 in project /user/username/projects/solution/services/tsconfig.json -Info 55 [00:01:38.000] Search path: /user/username/projects/solution/compiler -Info 56 [00:01:39.000] For info: /user/username/projects/solution/compiler/types.ts :: Config file name: /user/username/projects/solution/compiler/tsconfig.json -Info 57 [00:01:40.000] Search path: /user/username/projects/solution/compiler -Info 58 [00:01:41.000] For info: /user/username/projects/solution/compiler/types.ts :: Config file name: /user/username/projects/solution/compiler/tsconfig.json -Info 59 [00:01:42.000] Search path: /user/username/projects/solution/compiler -Info 60 [00:01:43.000] For info: /user/username/projects/solution/compiler/program.ts :: Config file name: /user/username/projects/solution/compiler/tsconfig.json +Info 49 [00:01:32.000] ----------------------------------------------- +Info 50 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/types.d.ts 2000 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Missing generated file +Info 51 [00:01:34.000] Finding references to /user/username/projects/solution/compiler/types.ts position 103 in project /user/username/projects/solution/services/tsconfig.json +Info 52 [00:01:35.000] Search path: /user/username/projects/solution/compiler +Info 53 [00:01:36.000] For info: /user/username/projects/solution/compiler/types.ts :: Config file name: /user/username/projects/solution/compiler/tsconfig.json +Info 54 [00:01:37.000] Search path: /user/username/projects/solution/compiler +Info 55 [00:01:38.000] For info: /user/username/projects/solution/compiler/types.ts :: Config file name: /user/username/projects/solution/compiler/tsconfig.json +Info 56 [00:01:39.000] Search path: /user/username/projects/solution/compiler +Info 57 [00:01:40.000] For info: /user/username/projects/solution/compiler/program.ts :: Config file name: /user/username/projects/solution/compiler/tsconfig.json After request PolledWatches:: @@ -372,7 +369,7 @@ FsWatches:: FsWatchesRecursive:: -Info 61 [00:01:44.000] response: +Info 58 [00:01:41.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/finding-references-in-overlapping-projects.js b/tests/baselines/reference/tsserver/projectReferences/finding-references-in-overlapping-projects.js index fabcb37fd7e8e..3ae4a124569f0 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 @@ -93,9 +93,8 @@ Info 6 [00:00:50.000] Config: /user/username/projects/solution/b/tsconfig.jso } ] } -Info 7 [00:00:51.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [00:00:52.000] Starting updateGraphWorker: Project: /user/username/projects/solution/b/tsconfig.json -Info 9 [00:00:53.000] Config: /user/username/projects/solution/a/tsconfig.json : { +Info 7 [00:00:51.000] Starting updateGraphWorker: Project: /user/username/projects/solution/b/tsconfig.json +Info 8 [00:00:52.000] Config: /user/username/projects/solution/a/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/a/index.ts" ], @@ -105,20 +104,20 @@ Info 9 [00:00:53.000] Config: /user/username/projects/solution/a/tsconfig.jso "configFilePath": "/user/username/projects/solution/a/tsconfig.json" } } -Info 10 [00:00:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/a/tsconfig.json 2000 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Config file -Info 11 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/a/index.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 17 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b/node_modules/@types 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Type roots -Info 18 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b/node_modules/@types 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Type roots -Info 19 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Type roots -Info 20 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Type roots -Info 21 [00:01:05.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 22 [00:01:06.000] Project '/user/username/projects/solution/b/tsconfig.json' (Configured) -Info 23 [00:01:07.000] Files (3) +Info 9 [00:00:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/a/tsconfig.json 2000 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Config file +Info 10 [00:00:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/a/index.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:59.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 16 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b/node_modules/@types 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Type roots +Info 17 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b/node_modules/@types 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Type roots +Info 18 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Type roots +Info 19 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/b/tsconfig.json WatchType: Type roots +Info 20 [00:01:04.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 21 [00:01:05.000] Project '/user/username/projects/solution/b/tsconfig.json' (Configured) +Info 22 [00:01:06.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/a/index.ts /user/username/projects/solution/b/index.ts @@ -132,24 +131,24 @@ Info 23 [00:01:07.000] Files (3) index.ts Part of 'files' list in tsconfig.json -Info 24 [00:01:08.000] ----------------------------------------------- -Info 25 [00:01:09.000] Search path: /user/username/projects/solution/b -Info 26 [00:01:10.000] For info: /user/username/projects/solution/b/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json -Info 27 [00:01:11.000] Creating configuration project /user/username/projects/solution/tsconfig.json -Info 28 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 29 [00:01:13.000] Search path: /user/username/projects/solution -Info 30 [00:01:14.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. -Info 31 [00:01:15.000] Project '/user/username/projects/solution/b/tsconfig.json' (Configured) -Info 31 [00:01:16.000] Files (3) - -Info 31 [00:01:17.000] ----------------------------------------------- -Info 31 [00:01:18.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) -Info 31 [00:01:19.000] Files (0) InitialLoadPending - -Info 31 [00:01:20.000] ----------------------------------------------- -Info 31 [00:01:21.000] Open files: -Info 31 [00:01:22.000] FileName: /user/username/projects/solution/b/index.ts ProjectRootPath: undefined -Info 31 [00:01:23.000] Projects: /user/username/projects/solution/b/tsconfig.json +Info 23 [00:01:07.000] ----------------------------------------------- +Info 24 [00:01:08.000] Search path: /user/username/projects/solution/b +Info 25 [00:01:09.000] For info: /user/username/projects/solution/b/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json +Info 26 [00:01:10.000] Creating configuration project /user/username/projects/solution/tsconfig.json +Info 27 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 28 [00:01:12.000] Search path: /user/username/projects/solution +Info 29 [00:01:13.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. +Info 30 [00:01:14.000] Project '/user/username/projects/solution/b/tsconfig.json' (Configured) +Info 30 [00:01:15.000] Files (3) + +Info 30 [00:01:16.000] ----------------------------------------------- +Info 30 [00:01:17.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) +Info 30 [00:01:18.000] Files (0) InitialLoadPending + +Info 30 [00:01:19.000] ----------------------------------------------- +Info 30 [00:01:20.000] Open files: +Info 30 [00:01:21.000] FileName: /user/username/projects/solution/b/index.ts ProjectRootPath: undefined +Info 30 [00:01:22.000] Projects: /user/username/projects/solution/b/tsconfig.json After request PolledWatches:: @@ -176,11 +175,11 @@ FsWatchesRecursive:: /user/username/projects/solution/a: {} -Info 31 [00:01:24.000] response: +Info 30 [00:01:23.000] response: { "responseRequired": false } -Info 32 [00:01:25.000] request: +Info 31 [00:01:24.000] request: { "command": "references", "arguments": { @@ -217,19 +216,18 @@ FsWatchesRecursive:: /user/username/projects/solution/a: {} -Info 33 [00:01:26.000] Finding references to /user/username/projects/solution/b/index.ts position 86 in project /user/username/projects/solution/b/tsconfig.json -Info 34 [00:01:27.000] Search path: /user/username/projects/solution/a -Info 35 [00:01:28.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 36 [00:01:29.000] Creating configuration project /user/username/projects/solution/a/tsconfig.json -Info 37 [00:01:30.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 38 [00:01:31.000] Starting updateGraphWorker: Project: /user/username/projects/solution/a/tsconfig.json -Info 39 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a/node_modules/@types 1 undefined Project: /user/username/projects/solution/a/tsconfig.json WatchType: Type roots -Info 40 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a/node_modules/@types 1 undefined Project: /user/username/projects/solution/a/tsconfig.json WatchType: Type roots -Info 41 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/a/tsconfig.json WatchType: Type roots -Info 42 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/a/tsconfig.json WatchType: Type roots -Info 43 [00:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [00:01:37.000] Project '/user/username/projects/solution/a/tsconfig.json' (Configured) -Info 45 [00:01:38.000] Files (2) +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 +Info 35 [00:01:28.000] Creating configuration project /user/username/projects/solution/a/tsconfig.json +Info 36 [00:01:29.000] Starting updateGraphWorker: Project: /user/username/projects/solution/a/tsconfig.json +Info 37 [00:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a/node_modules/@types 1 undefined Project: /user/username/projects/solution/a/tsconfig.json WatchType: Type roots +Info 38 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a/node_modules/@types 1 undefined Project: /user/username/projects/solution/a/tsconfig.json WatchType: Type roots +Info 39 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/a/tsconfig.json WatchType: Type roots +Info 40 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/a/tsconfig.json WatchType: Type roots +Info 41 [00:01:34.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:35.000] Project '/user/username/projects/solution/a/tsconfig.json' (Configured) +Info 43 [00:01:36.000] Files (2) /a/lib/lib.d.ts /user/username/projects/solution/a/index.ts @@ -239,12 +237,12 @@ Info 45 [00:01:38.000] Files (2) index.ts Part of 'files' list in tsconfig.json -Info 46 [00:01:39.000] ----------------------------------------------- -Info 47 [00:01:40.000] Search path: /user/username/projects/solution/a -Info 48 [00:01:41.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 49 [00:01:42.000] Finding references to /user/username/projects/solution/a/index.ts position 34 in project /user/username/projects/solution/a/tsconfig.json -Info 50 [00:01:43.000] Loading configured project /user/username/projects/solution/tsconfig.json -Info 51 [00:01:44.000] Config: /user/username/projects/solution/tsconfig.json : { +Info 44 [00:01:37.000] ----------------------------------------------- +Info 45 [00:01:38.000] Search path: /user/username/projects/solution/a +Info 46 [00:01:39.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 47 [00:01:40.000] Finding references to /user/username/projects/solution/a/index.ts position 34 in project /user/username/projects/solution/a/tsconfig.json +Info 48 [00:01:41.000] Loading configured project /user/username/projects/solution/tsconfig.json +Info 49 [00:01:42.000] Config: /user/username/projects/solution/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/solution/tsconfig.json" @@ -268,9 +266,8 @@ Info 51 [00:01:44.000] Config: /user/username/projects/solution/tsconfig.json } ] } -Info 52 [00:01:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 53 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json -Info 54 [00:01:47.000] Config: /user/username/projects/solution/c/tsconfig.json : { +Info 50 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json +Info 51 [00:01:44.000] Config: /user/username/projects/solution/c/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/c/index.ts" ], @@ -285,8 +282,8 @@ Info 54 [00:01:47.000] Config: /user/username/projects/solution/c/tsconfig.jso } ] } -Info 55 [00:01:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/c/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 56 [00:01:49.000] Config: /user/username/projects/solution/d/tsconfig.json : { +Info 52 [00:01:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/c/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 53 [00:01:46.000] Config: /user/username/projects/solution/d/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/d/index.ts" ], @@ -301,28 +298,27 @@ Info 56 [00:01:49.000] Config: /user/username/projects/solution/d/tsconfig.jso } ] } -Info 57 [00:01:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/d/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 58 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info 59 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info 60 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 61 [00:01:54.000] Different program with same set of files -Info 62 [00:01:55.000] Creating configuration project /user/username/projects/solution/c/tsconfig.json -Info 63 [00:01:56.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 64 [00:01:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/c/index.ts 500 undefined WatchType: Closed Script info -Info 65 [00:01:58.000] Starting updateGraphWorker: Project: /user/username/projects/solution/c/tsconfig.json -Info 66 [00:01:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations -Info 67 [00:02:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations -Info 68 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [00:02:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [00:02:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations -Info 71 [00:02:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations -Info 72 [00:02:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/c/node_modules/@types 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Type roots -Info 73 [00:02:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/c/node_modules/@types 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Type roots -Info 74 [00:02:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Type roots -Info 75 [00:02:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Type roots -Info 76 [00:02:09.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 77 [00:02:10.000] Project '/user/username/projects/solution/c/tsconfig.json' (Configured) -Info 78 [00:02:11.000] Files (4) +Info 54 [00:01:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/d/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 55 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots +Info 56 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots +Info 57 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 58 [00:01:51.000] Different program with same set of files +Info 59 [00:01:52.000] Creating configuration project /user/username/projects/solution/c/tsconfig.json +Info 60 [00:01:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/c/index.ts 500 undefined WatchType: Closed Script info +Info 61 [00:01:54.000] Starting updateGraphWorker: Project: /user/username/projects/solution/c/tsconfig.json +Info 62 [00:01:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations +Info 63 [00:01:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations +Info 64 [00:01:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:01:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations +Info 66 [00:01:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations +Info 67 [00:02:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Failed Lookup Locations +Info 68 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/c/node_modules/@types 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Type roots +Info 69 [00:02:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/c/node_modules/@types 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Type roots +Info 70 [00:02:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Type roots +Info 71 [00:02:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/c/tsconfig.json WatchType: Type roots +Info 72 [00:02:05.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 73 [00:02:06.000] Project '/user/username/projects/solution/c/tsconfig.json' (Configured) +Info 74 [00:02:07.000] Files (4) /a/lib/lib.d.ts /user/username/projects/solution/a/index.ts /user/username/projects/solution/b/index.ts @@ -339,26 +335,25 @@ Info 78 [00:02:11.000] Files (4) index.ts Part of 'files' list in tsconfig.json -Info 79 [00:02:12.000] ----------------------------------------------- -Info 80 [00:02:13.000] Creating configuration project /user/username/projects/solution/d/tsconfig.json -Info 81 [00:02:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 82 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/d/index.ts 500 undefined WatchType: Closed Script info -Info 83 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/solution/d/tsconfig.json -Info 84 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations -Info 85 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations -Info 86 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations -Info 87 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations -Info 88 [00:02:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/c 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations -Info 89 [00:02:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/c 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations -Info 90 [00:02:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations -Info 91 [00:02:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations -Info 92 [00:02:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/d/node_modules/@types 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Type roots -Info 93 [00:02:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/d/node_modules/@types 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Type roots -Info 94 [00:02:27.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Type roots -Info 95 [00:02:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Type roots -Info 96 [00:02:29.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/d/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 97 [00:02:30.000] Project '/user/username/projects/solution/d/tsconfig.json' (Configured) -Info 98 [00:02:31.000] Files (5) +Info 75 [00:02:08.000] ----------------------------------------------- +Info 76 [00:02:09.000] Creating configuration project /user/username/projects/solution/d/tsconfig.json +Info 77 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/d/index.ts 500 undefined WatchType: Closed Script info +Info 78 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/solution/d/tsconfig.json +Info 79 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations +Info 80 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution 0 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations +Info 81 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations +Info 82 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/a 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations +Info 83 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/c 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations +Info 84 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/c 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations +Info 85 [00:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations +Info 86 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/b 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Failed Lookup Locations +Info 87 [00:02:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/d/node_modules/@types 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Type roots +Info 88 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/d/node_modules/@types 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Type roots +Info 89 [00:02:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Type roots +Info 90 [00:02:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/d/tsconfig.json WatchType: Type roots +Info 91 [00:02:24.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/d/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 92 [00:02:25.000] Project '/user/username/projects/solution/d/tsconfig.json' (Configured) +Info 93 [00:02:26.000] Files (5) /a/lib/lib.d.ts /user/username/projects/solution/a/index.ts /user/username/projects/solution/b/index.ts @@ -379,35 +374,35 @@ Info 98 [00:02:31.000] Files (5) index.ts Part of 'files' list in tsconfig.json -Info 99 [00:02:32.000] ----------------------------------------------- -Info 100 [00:02:33.000] Finding references to /user/username/projects/solution/a/index.ts position 34 in project /user/username/projects/solution/c/tsconfig.json -Info 101 [00:02:34.000] Search path: /user/username/projects/solution/a -Info 102 [00:02:35.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 103 [00:02:36.000] Search path: /user/username/projects/solution/a -Info 104 [00:02:37.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 105 [00:02:38.000] Search path: /user/username/projects/solution/b -Info 106 [00:02:39.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 107 [00:02:40.000] Search path: /user/username/projects/solution/b -Info 108 [00:02:41.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 109 [00:02:42.000] Search path: /user/username/projects/solution/b -Info 110 [00:02:43.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 111 [00:02:44.000] Finding references to /user/username/projects/solution/a/index.ts position 34 in project /user/username/projects/solution/d/tsconfig.json -Info 112 [00:02:45.000] Search path: /user/username/projects/solution/a -Info 113 [00:02:46.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 114 [00:02:47.000] Search path: /user/username/projects/solution/a -Info 115 [00:02:48.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 116 [00:02:49.000] Search path: /user/username/projects/solution/b -Info 117 [00:02:50.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 118 [00:02:51.000] Search path: /user/username/projects/solution/b -Info 119 [00:02:52.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 120 [00:02:53.000] Search path: /user/username/projects/solution/b -Info 121 [00:02:54.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 122 [00:02:55.000] Search path: /user/username/projects/solution/c -Info 123 [00:02:56.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json -Info 124 [00:02:57.000] Search path: /user/username/projects/solution/c -Info 125 [00:02:58.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json -Info 126 [00:02:59.000] Search path: /user/username/projects/solution/c -Info 127 [00:03:00.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json +Info 94 [00:02:27.000] ----------------------------------------------- +Info 95 [00:02:28.000] Finding references to /user/username/projects/solution/a/index.ts position 34 in project /user/username/projects/solution/c/tsconfig.json +Info 96 [00:02:29.000] Search path: /user/username/projects/solution/a +Info 97 [00:02:30.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 98 [00:02:31.000] Search path: /user/username/projects/solution/a +Info 99 [00:02:32.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 100 [00:02:33.000] Search path: /user/username/projects/solution/b +Info 101 [00:02:34.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 102 [00:02:35.000] Search path: /user/username/projects/solution/b +Info 103 [00:02:36.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 104 [00:02:37.000] Search path: /user/username/projects/solution/b +Info 105 [00:02:38.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 106 [00:02:39.000] Finding references to /user/username/projects/solution/a/index.ts position 34 in project /user/username/projects/solution/d/tsconfig.json +Info 107 [00:02:40.000] Search path: /user/username/projects/solution/a +Info 108 [00:02:41.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 109 [00:02:42.000] Search path: /user/username/projects/solution/a +Info 110 [00:02:43.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 111 [00:02:44.000] Search path: /user/username/projects/solution/b +Info 112 [00:02:45.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 113 [00:02:46.000] Search path: /user/username/projects/solution/b +Info 114 [00:02:47.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 115 [00:02:48.000] Search path: /user/username/projects/solution/b +Info 116 [00:02:49.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 117 [00:02:50.000] Search path: /user/username/projects/solution/c +Info 118 [00:02:51.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json +Info 119 [00:02:52.000] Search path: /user/username/projects/solution/c +Info 120 [00:02:53.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json +Info 121 [00:02:54.000] Search path: /user/username/projects/solution/c +Info 122 [00:02:55.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json After request PolledWatches:: @@ -452,7 +447,7 @@ FsWatchesRecursive:: /user/username/projects/solution/c: {} -Info 128 [00:03:01.000] response: +Info 123 [00:02:56.000] response: { "response": { "refs": [ @@ -586,7 +581,7 @@ Info 128 [00:03:01.000] response: }, "responseRequired": true } -Info 129 [00:03:02.000] request: +Info 124 [00:02:57.000] request: { "command": "references", "arguments": { @@ -641,40 +636,40 @@ FsWatchesRecursive:: /user/username/projects/solution/c: {} -Info 130 [00:03:03.000] Finding references to /user/username/projects/solution/b/index.ts position 86 in project /user/username/projects/solution/b/tsconfig.json -Info 131 [00:03:04.000] Search path: /user/username/projects/solution/a -Info 132 [00:03:05.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 133 [00:03:06.000] Search path: /user/username/projects/solution/a -Info 134 [00:03:07.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 135 [00:03:08.000] Finding references to /user/username/projects/solution/b/index.ts position 86 in project /user/username/projects/solution/c/tsconfig.json -Info 136 [00:03:09.000] Search path: /user/username/projects/solution/b -Info 137 [00:03:10.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 138 [00:03:11.000] Search path: /user/username/projects/solution/b -Info 139 [00:03:12.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 140 [00:03:13.000] Search path: /user/username/projects/solution/b -Info 141 [00:03:14.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 142 [00:03:15.000] Search path: /user/username/projects/solution/a -Info 143 [00:03:16.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 144 [00:03:17.000] Search path: /user/username/projects/solution/a -Info 145 [00:03:18.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 146 [00:03:19.000] Finding references to /user/username/projects/solution/b/index.ts position 86 in project /user/username/projects/solution/d/tsconfig.json -Info 147 [00:03:20.000] Search path: /user/username/projects/solution/b -Info 148 [00:03:21.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 149 [00:03:22.000] Search path: /user/username/projects/solution/b -Info 150 [00:03:23.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 151 [00:03:24.000] Search path: /user/username/projects/solution/b -Info 152 [00:03:25.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json -Info 153 [00:03:26.000] Search path: /user/username/projects/solution/a -Info 154 [00:03:27.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 155 [00:03:28.000] Search path: /user/username/projects/solution/a -Info 156 [00:03:29.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json -Info 157 [00:03:30.000] Search path: /user/username/projects/solution/c -Info 158 [00:03:31.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json -Info 159 [00:03:32.000] Search path: /user/username/projects/solution/c -Info 160 [00:03:33.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json -Info 161 [00:03:34.000] Search path: /user/username/projects/solution/c -Info 162 [00:03:35.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json -Info 163 [00:03:36.000] Finding references to /user/username/projects/solution/a/index.ts position 34 in project /user/username/projects/solution/a/tsconfig.json +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 +Info 128 [00:03:01.000] Search path: /user/username/projects/solution/a +Info 129 [00:03:02.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 130 [00:03:03.000] Finding references to /user/username/projects/solution/b/index.ts position 86 in project /user/username/projects/solution/c/tsconfig.json +Info 131 [00:03:04.000] Search path: /user/username/projects/solution/b +Info 132 [00:03:05.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 133 [00:03:06.000] Search path: /user/username/projects/solution/b +Info 134 [00:03:07.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 135 [00:03:08.000] Search path: /user/username/projects/solution/b +Info 136 [00:03:09.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 137 [00:03:10.000] Search path: /user/username/projects/solution/a +Info 138 [00:03:11.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 139 [00:03:12.000] Search path: /user/username/projects/solution/a +Info 140 [00:03:13.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 141 [00:03:14.000] Finding references to /user/username/projects/solution/b/index.ts position 86 in project /user/username/projects/solution/d/tsconfig.json +Info 142 [00:03:15.000] Search path: /user/username/projects/solution/b +Info 143 [00:03:16.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 144 [00:03:17.000] Search path: /user/username/projects/solution/b +Info 145 [00:03:18.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 146 [00:03:19.000] Search path: /user/username/projects/solution/b +Info 147 [00:03:20.000] For info: /user/username/projects/solution/b/index.ts :: Config file name: /user/username/projects/solution/b/tsconfig.json +Info 148 [00:03:21.000] Search path: /user/username/projects/solution/a +Info 149 [00:03:22.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 150 [00:03:23.000] Search path: /user/username/projects/solution/a +Info 151 [00:03:24.000] For info: /user/username/projects/solution/a/index.ts :: Config file name: /user/username/projects/solution/a/tsconfig.json +Info 152 [00:03:25.000] Search path: /user/username/projects/solution/c +Info 153 [00:03:26.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json +Info 154 [00:03:27.000] Search path: /user/username/projects/solution/c +Info 155 [00:03:28.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json +Info 156 [00:03:29.000] Search path: /user/username/projects/solution/c +Info 157 [00:03:30.000] For info: /user/username/projects/solution/c/index.ts :: Config file name: /user/username/projects/solution/c/tsconfig.json +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:: @@ -719,7 +714,7 @@ FsWatchesRecursive:: /user/username/projects/solution/c: {} -Info 164 [00:03:37.000] response: +Info 159 [00:03:32.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built-with-preserveSymlinks.js index 85d7dba477c73..42b67999bbbfb 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 @@ -220,9 +220,8 @@ Info 7 [00:01:18.000] Config: /user/username/projects/myproject/packages/A/ts } Info 8 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory Info 9 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [00:01:21.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [00:01:23.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 10 [00:01:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 11 [00:01:22.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/bar.ts", "/user/username/projects/myproject/packages/B/src/index.ts" @@ -235,30 +234,30 @@ Info 12 [00:01:23.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [00:01:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 14 [00:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 16 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info 17 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution -Info 28 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 29 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 30 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 31 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 32 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:46.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [00:01:47.000] Files (4) +Info 12 [00:01:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 13 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info 16 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:01:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:01:31.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info 27 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 28 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 29 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 30 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 31 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 32 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:45.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 35 [00:01:46.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/index.ts /user/username/projects/myproject/packages/B/src/bar.ts @@ -274,22 +273,22 @@ Info 36 [00:01:47.000] Files (4) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [00:01:48.000] ----------------------------------------------- -Info 38 [00:01:49.000] event: +Info 36 [00:01:47.000] ----------------------------------------------- +Info 37 [00:01:48.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [00:01:50.000] event: +Info 38 [00:01:49.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":122,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true,"preserveSymlinks":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [00:01:51.000] event: +Info 39 [00:01:50.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/index.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [00:01:52.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [00:01:53.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [00:01:54.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [00:01:55.000] Files (4) - -Info 43 [00:01:56.000] ----------------------------------------------- -Info 43 [00:01:57.000] Open files: -Info 43 [00:01:58.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined -Info 43 [00:01:59.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 40 [00:01:51.000] Search path: /user/username/projects/myproject/packages/A +Info 41 [00:01:52.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 42 [00:01:53.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 42 [00:01:54.000] Files (4) + +Info 42 [00:01:55.000] ----------------------------------------------- +Info 42 [00:01:56.000] Open files: +Info 42 [00:01:57.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined +Info 42 [00:01:58.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -326,11 +325,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [00:02:00.000] response: +Info 42 [00:01:59.000] response: { "responseRequired": false } -Info 44 [00:02:01.000] request: +Info 43 [00:02:00.000] request: { "command": "geterr", "arguments": { @@ -414,7 +413,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [00:02:02.000] response: +Info 44 [00:02:01.000] response: { "responseRequired": false } @@ -454,7 +453,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [00:02:03.000] event: +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 @@ -528,7 +527,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [00:02:04.000] event: +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) @@ -602,9 +601,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [00:02:05.000] event: +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 49 [00:02:06.000] event: +Info 48 [00:02:05.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -642,7 +641,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [00:02:07.000] request: +Info 49 [00:02:06.000] request: { "command": "updateOpen", "arguments": { @@ -740,12 +739,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [00:02:08.000] response: +Info 50 [00:02:07.000] response: { "response": true, "responseRequired": true } -Info 52 [00:02:09.000] request: +Info 51 [00:02:08.000] request: { "command": "geterr", "arguments": { @@ -829,7 +828,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [00:02:10.000] response: +Info 52 [00:02:09.000] response: { "responseRequired": false } @@ -869,10 +868,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [00:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [00:02:13.000] Different program with same set of files -Info 57 [00:02:14.000] event: +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 +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 @@ -946,7 +945,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [00:02:15.000] event: +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) @@ -1020,9 +1019,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [00:02:16.000] event: +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 60 [00:02:17.000] event: +Info 59 [00:02:16.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-built.js index 7b49753486f39..a14306181a309 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 @@ -219,9 +219,8 @@ Info 7 [00:01:18.000] Config: /user/username/projects/myproject/packages/A/ts } Info 8 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory Info 9 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [00:01:21.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [00:01:23.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 10 [00:01:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 11 [00:01:22.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/bar.ts", "/user/username/projects/myproject/packages/B/src/index.ts" @@ -233,30 +232,30 @@ Info 12 [00:01:23.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [00:01:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 14 [00:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 16 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info 17 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution -Info 28 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 29 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 30 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 31 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 32 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:46.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [00:01:47.000] Files (4) +Info 12 [00:01:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 13 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info 16 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:01:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:01:31.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info 27 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 28 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 29 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 30 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 31 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 32 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:45.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 35 [00:01:46.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/index.ts /user/username/projects/myproject/packages/B/src/bar.ts @@ -272,22 +271,22 @@ Info 36 [00:01:47.000] Files (4) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [00:01:48.000] ----------------------------------------------- -Info 38 [00:01:49.000] event: +Info 36 [00:01:47.000] ----------------------------------------------- +Info 37 [00:01:48.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [00:01:50.000] event: +Info 38 [00:01:49.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":122,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [00:01:51.000] event: +Info 39 [00:01:50.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/index.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [00:01:52.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [00:01:53.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [00:01:54.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [00:01:55.000] Files (4) - -Info 43 [00:01:56.000] ----------------------------------------------- -Info 43 [00:01:57.000] Open files: -Info 43 [00:01:58.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined -Info 43 [00:01:59.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 40 [00:01:51.000] Search path: /user/username/projects/myproject/packages/A +Info 41 [00:01:52.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 42 [00:01:53.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 42 [00:01:54.000] Files (4) + +Info 42 [00:01:55.000] ----------------------------------------------- +Info 42 [00:01:56.000] Open files: +Info 42 [00:01:57.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined +Info 42 [00:01:58.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -324,11 +323,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [00:02:00.000] response: +Info 42 [00:01:59.000] response: { "responseRequired": false } -Info 44 [00:02:01.000] request: +Info 43 [00:02:00.000] request: { "command": "geterr", "arguments": { @@ -412,7 +411,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [00:02:02.000] response: +Info 44 [00:02:01.000] response: { "responseRequired": false } @@ -452,7 +451,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [00:02:03.000] event: +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 @@ -526,7 +525,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [00:02:04.000] event: +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) @@ -600,9 +599,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [00:02:05.000] event: +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 49 [00:02:06.000] event: +Info 48 [00:02:05.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -640,7 +639,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [00:02:07.000] request: +Info 49 [00:02:06.000] request: { "command": "updateOpen", "arguments": { @@ -738,12 +737,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [00:02:08.000] response: +Info 50 [00:02:07.000] response: { "response": true, "responseRequired": true } -Info 52 [00:02:09.000] request: +Info 51 [00:02:08.000] request: { "command": "geterr", "arguments": { @@ -827,7 +826,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [00:02:10.000] response: +Info 52 [00:02:09.000] response: { "responseRequired": false } @@ -867,10 +866,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [00:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [00:02:13.000] Different program with same set of files -Info 57 [00:02:14.000] event: +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 +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 @@ -944,7 +943,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [00:02:15.000] event: +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) @@ -1018,9 +1017,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [00:02:16.000] event: +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 60 [00:02:17.000] event: +Info 59 [00:02:16.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built-with-preserveSymlinks.js index be11413f4405d..b133a5efea940 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 @@ -78,9 +78,8 @@ Info 7 [00:00:50.000] Config: /user/username/projects/myproject/packages/A/ts } Info 8 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory Info 9 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [00:00:55.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 10 [00:00:53.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 11 [00:00:54.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/bar.ts", "/user/username/projects/myproject/packages/B/src/index.ts" @@ -93,30 +92,30 @@ Info 12 [00:00:55.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 14 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 16 [00:00:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info 17 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution -Info 28 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 29 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 30 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 31 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 32 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [00:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:18.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [00:01:19.000] Files (4) +Info 12 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 13 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info 27 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 28 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 29 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 30 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 31 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 32 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:17.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 35 [00:01:18.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/index.ts /user/username/projects/myproject/packages/B/src/bar.ts @@ -132,22 +131,22 @@ Info 36 [00:01:19.000] Files (4) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [00:01:20.000] ----------------------------------------------- -Info 38 [00:01:21.000] event: +Info 36 [00:01:19.000] ----------------------------------------------- +Info 37 [00:01:20.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [00:01:22.000] event: +Info 38 [00:01:21.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":122,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true,"preserveSymlinks":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [00:01:23.000] event: +Info 39 [00:01:22.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/index.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [00:01:24.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [00:01:25.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [00:01:26.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [00:01:27.000] Files (4) - -Info 43 [00:01:28.000] ----------------------------------------------- -Info 43 [00:01:29.000] Open files: -Info 43 [00:01:30.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined -Info 43 [00:01:31.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 40 [00:01:23.000] Search path: /user/username/projects/myproject/packages/A +Info 41 [00:01:24.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 42 [00:01:25.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 42 [00:01:26.000] Files (4) + +Info 42 [00:01:27.000] ----------------------------------------------- +Info 42 [00:01:28.000] Open files: +Info 42 [00:01:29.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined +Info 42 [00:01:30.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -184,11 +183,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [00:01:32.000] response: +Info 42 [00:01:31.000] response: { "responseRequired": false } -Info 44 [00:01:33.000] request: +Info 43 [00:01:32.000] request: { "command": "geterr", "arguments": { @@ -272,7 +271,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [00:01:34.000] response: +Info 44 [00:01:33.000] response: { "responseRequired": false } @@ -312,7 +311,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [00:01:35.000] event: +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 @@ -386,7 +385,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [00:01:36.000] event: +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) @@ -460,9 +459,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [00:01:37.000] event: +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 49 [00:01:38.000] event: +Info 48 [00:01:37.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -500,7 +499,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [00:01:39.000] request: +Info 49 [00:01:38.000] request: { "command": "updateOpen", "arguments": { @@ -598,12 +597,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [00:01:40.000] response: +Info 50 [00:01:39.000] response: { "response": true, "responseRequired": true } -Info 52 [00:01:41.000] request: +Info 51 [00:01:40.000] request: { "command": "geterr", "arguments": { @@ -687,7 +686,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [00:01:42.000] response: +Info 52 [00:01:41.000] response: { "responseRequired": false } @@ -727,10 +726,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [00:01:45.000] Different program with same set of files -Info 57 [00:01:46.000] event: +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 +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 @@ -804,7 +803,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [00:01:47.000] event: +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) @@ -878,9 +877,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [00:01:48.000] event: +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 60 [00:01:49.000] event: +Info 59 [00:01:48.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-and-solution-is-not-built.js index 7dce3e3a21ac1..f5a08da0c6b67 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 @@ -77,9 +77,8 @@ Info 7 [00:00:50.000] Config: /user/username/projects/myproject/packages/A/ts } Info 8 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory Info 9 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [00:00:55.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 10 [00:00:53.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 11 [00:00:54.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/bar.ts", "/user/username/projects/myproject/packages/B/src/index.ts" @@ -91,30 +90,30 @@ Info 12 [00:00:55.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 14 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 16 [00:00:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info 17 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution -Info 28 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 29 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 30 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 31 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 32 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [00:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:18.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [00:01:19.000] Files (4) +Info 12 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 13 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info 27 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 28 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 29 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 30 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 31 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 32 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:17.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 35 [00:01:18.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/index.ts /user/username/projects/myproject/packages/B/src/bar.ts @@ -130,22 +129,22 @@ Info 36 [00:01:19.000] Files (4) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [00:01:20.000] ----------------------------------------------- -Info 38 [00:01:21.000] event: +Info 36 [00:01:19.000] ----------------------------------------------- +Info 37 [00:01:20.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [00:01:22.000] event: +Info 38 [00:01:21.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":122,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [00:01:23.000] event: +Info 39 [00:01:22.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/index.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [00:01:24.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [00:01:25.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [00:01:26.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [00:01:27.000] Files (4) - -Info 43 [00:01:28.000] ----------------------------------------------- -Info 43 [00:01:29.000] Open files: -Info 43 [00:01:30.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined -Info 43 [00:01:31.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 40 [00:01:23.000] Search path: /user/username/projects/myproject/packages/A +Info 41 [00:01:24.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 42 [00:01:25.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 42 [00:01:26.000] Files (4) + +Info 42 [00:01:27.000] ----------------------------------------------- +Info 42 [00:01:28.000] Open files: +Info 42 [00:01:29.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined +Info 42 [00:01:30.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -182,11 +181,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [00:01:32.000] response: +Info 42 [00:01:31.000] response: { "responseRequired": false } -Info 44 [00:01:33.000] request: +Info 43 [00:01:32.000] request: { "command": "geterr", "arguments": { @@ -270,7 +269,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [00:01:34.000] response: +Info 44 [00:01:33.000] response: { "responseRequired": false } @@ -310,7 +309,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [00:01:35.000] event: +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 @@ -384,7 +383,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [00:01:36.000] event: +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) @@ -458,9 +457,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [00:01:37.000] event: +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 49 [00:01:38.000] event: +Info 48 [00:01:37.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -498,7 +497,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [00:01:39.000] request: +Info 49 [00:01:38.000] request: { "command": "updateOpen", "arguments": { @@ -596,12 +595,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [00:01:40.000] response: +Info 50 [00:01:39.000] response: { "response": true, "responseRequired": true } -Info 52 [00:01:41.000] request: +Info 51 [00:01:40.000] request: { "command": "geterr", "arguments": { @@ -685,7 +684,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [00:01:42.000] response: +Info 52 [00:01:41.000] response: { "responseRequired": false } @@ -725,10 +724,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [00:01:45.000] Different program with same set of files -Info 57 [00:01:46.000] event: +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 +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 @@ -802,7 +801,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [00:01:47.000] event: +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) @@ -876,9 +875,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [00:01:48.000] event: +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 60 [00:01:49.000] event: +Info 59 [00:01:48.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js index b338809584611..bd04345296fb5 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 @@ -220,9 +220,8 @@ Info 7 [00:01:20.000] Config: /user/username/projects/myproject/packages/A/ts } Info 8 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory Info 9 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [00:01:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:01:24.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [00:01:25.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 10 [00:01:23.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 11 [00:01:24.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/bar.ts", "/user/username/projects/myproject/packages/B/src/index.ts" @@ -235,30 +234,30 @@ Info 12 [00:01:25.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [00:01:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 14 [00:01:27.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 16 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info 17 [00:01:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution -Info 28 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 29 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 30 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 31 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 32 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:48.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [00:01:49.000] Files (4) +Info 12 [00:01:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 13 [00:01:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info 16 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:30.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:31.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:01:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info 27 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 28 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 29 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 30 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 31 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 32 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:47.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 35 [00:01:48.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/index.ts /user/username/projects/myproject/packages/B/src/bar.ts @@ -274,22 +273,22 @@ Info 36 [00:01:49.000] Files (4) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [00:01:50.000] ----------------------------------------------- -Info 38 [00:01:51.000] event: +Info 36 [00:01:49.000] ----------------------------------------------- +Info 37 [00:01:50.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [00:01:52.000] event: +Info 38 [00:01:51.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":136,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true,"preserveSymlinks":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [00:01:53.000] event: +Info 39 [00:01:52.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/index.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [00:01:54.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [00:01:55.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [00:01:56.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [00:01:57.000] Files (4) - -Info 43 [00:01:58.000] ----------------------------------------------- -Info 43 [00:01:59.000] Open files: -Info 43 [00:02:00.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined -Info 43 [00:02:01.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 40 [00:01:53.000] Search path: /user/username/projects/myproject/packages/A +Info 41 [00:01:54.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 42 [00:01:55.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 42 [00:01:56.000] Files (4) + +Info 42 [00:01:57.000] ----------------------------------------------- +Info 42 [00:01:58.000] Open files: +Info 42 [00:01:59.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined +Info 42 [00:02:00.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -326,11 +325,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [00:02:02.000] response: +Info 42 [00:02:01.000] response: { "responseRequired": false } -Info 44 [00:02:03.000] request: +Info 43 [00:02:02.000] request: { "command": "geterr", "arguments": { @@ -414,7 +413,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [00:02:04.000] response: +Info 44 [00:02:03.000] response: { "responseRequired": false } @@ -454,7 +453,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [00:02:05.000] event: +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 @@ -528,7 +527,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [00:02:06.000] event: +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) @@ -602,9 +601,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [00:02:07.000] event: +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 49 [00:02:08.000] event: +Info 48 [00:02:07.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -642,7 +641,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [00:02:09.000] request: +Info 49 [00:02:08.000] request: { "command": "updateOpen", "arguments": { @@ -740,12 +739,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [00:02:10.000] response: +Info 50 [00:02:09.000] response: { "response": true, "responseRequired": true } -Info 52 [00:02:11.000] request: +Info 51 [00:02:10.000] request: { "command": "geterr", "arguments": { @@ -829,7 +828,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [00:02:12.000] response: +Info 52 [00:02:11.000] response: { "responseRequired": false } @@ -869,10 +868,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [00:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [00:02:15.000] Different program with same set of files -Info 57 [00:02:16.000] event: +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 +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 @@ -946,7 +945,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [00:02:17.000] event: +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) @@ -1020,9 +1019,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [00:02:18.000] event: +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 60 [00:02:19.000] event: +Info 59 [00:02:18.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-built.js index 88766b8e736a7..cdb686d523cb0 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 @@ -219,9 +219,8 @@ Info 7 [00:01:20.000] Config: /user/username/projects/myproject/packages/A/ts } Info 8 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory Info 9 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [00:01:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:01:24.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [00:01:25.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 10 [00:01:23.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 11 [00:01:24.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/bar.ts", "/user/username/projects/myproject/packages/B/src/index.ts" @@ -233,30 +232,30 @@ Info 12 [00:01:25.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [00:01:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 14 [00:01:27.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 16 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info 17 [00:01:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution -Info 28 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 29 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 30 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 31 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 32 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:48.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [00:01:49.000] Files (4) +Info 12 [00:01:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 13 [00:01:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info 16 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:30.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:31.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:01:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info 27 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 28 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 29 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 30 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 31 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 32 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:47.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 35 [00:01:48.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/index.ts /user/username/projects/myproject/packages/B/src/bar.ts @@ -272,22 +271,22 @@ Info 36 [00:01:49.000] Files (4) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [00:01:50.000] ----------------------------------------------- -Info 38 [00:01:51.000] event: +Info 36 [00:01:49.000] ----------------------------------------------- +Info 37 [00:01:50.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [00:01:52.000] event: +Info 38 [00:01:51.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":136,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [00:01:53.000] event: +Info 39 [00:01:52.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/index.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [00:01:54.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [00:01:55.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [00:01:56.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [00:01:57.000] Files (4) - -Info 43 [00:01:58.000] ----------------------------------------------- -Info 43 [00:01:59.000] Open files: -Info 43 [00:02:00.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined -Info 43 [00:02:01.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 40 [00:01:53.000] Search path: /user/username/projects/myproject/packages/A +Info 41 [00:01:54.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 42 [00:01:55.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 42 [00:01:56.000] Files (4) + +Info 42 [00:01:57.000] ----------------------------------------------- +Info 42 [00:01:58.000] Open files: +Info 42 [00:01:59.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined +Info 42 [00:02:00.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -324,11 +323,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [00:02:02.000] response: +Info 42 [00:02:01.000] response: { "responseRequired": false } -Info 44 [00:02:03.000] request: +Info 43 [00:02:02.000] request: { "command": "geterr", "arguments": { @@ -412,7 +411,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [00:02:04.000] response: +Info 44 [00:02:03.000] response: { "responseRequired": false } @@ -452,7 +451,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [00:02:05.000] event: +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 @@ -526,7 +525,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [00:02:06.000] event: +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) @@ -600,9 +599,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [00:02:07.000] event: +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 49 [00:02:08.000] event: +Info 48 [00:02:07.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -640,7 +639,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [00:02:09.000] request: +Info 49 [00:02:08.000] request: { "command": "updateOpen", "arguments": { @@ -738,12 +737,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [00:02:10.000] response: +Info 50 [00:02:09.000] response: { "response": true, "responseRequired": true } -Info 52 [00:02:11.000] request: +Info 51 [00:02:10.000] request: { "command": "geterr", "arguments": { @@ -827,7 +826,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [00:02:12.000] response: +Info 52 [00:02:11.000] response: { "responseRequired": false } @@ -867,10 +866,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [00:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [00:02:15.000] Different program with same set of files -Info 57 [00:02:16.000] event: +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 +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 @@ -944,7 +943,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [00:02:17.000] event: +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) @@ -1018,9 +1017,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [00:02:18.000] event: +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 60 [00:02:19.000] event: +Info 59 [00:02:18.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js index bd5b3d49a9e03..cd4b47eb4746f 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 @@ -78,9 +78,8 @@ Info 7 [00:00:52.000] Config: /user/username/projects/myproject/packages/A/ts } Info 8 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory Info 9 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:55.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [00:00:57.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 10 [00:00:55.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 11 [00:00:56.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/bar.ts", "/user/username/projects/myproject/packages/B/src/index.ts" @@ -93,30 +92,30 @@ Info 12 [00:00:57.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 14 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 16 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info 17 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution -Info 28 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 29 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 30 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 31 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 32 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:20.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [00:01:21.000] Files (4) +Info 12 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 13 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info 16 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info 27 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 28 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 29 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 30 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 31 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 32 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:19.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 35 [00:01:20.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/index.ts /user/username/projects/myproject/packages/B/src/bar.ts @@ -132,22 +131,22 @@ Info 36 [00:01:21.000] Files (4) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [00:01:22.000] ----------------------------------------------- -Info 38 [00:01:23.000] event: +Info 36 [00:01:21.000] ----------------------------------------------- +Info 37 [00:01:22.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [00:01:24.000] event: +Info 38 [00:01:23.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":136,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true,"preserveSymlinks":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [00:01:25.000] event: +Info 39 [00:01:24.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/index.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [00:01:26.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [00:01:27.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [00:01:28.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [00:01:29.000] Files (4) - -Info 43 [00:01:30.000] ----------------------------------------------- -Info 43 [00:01:31.000] Open files: -Info 43 [00:01:32.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined -Info 43 [00:01:33.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 40 [00:01:25.000] Search path: /user/username/projects/myproject/packages/A +Info 41 [00:01:26.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 42 [00:01:27.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 42 [00:01:28.000] Files (4) + +Info 42 [00:01:29.000] ----------------------------------------------- +Info 42 [00:01:30.000] Open files: +Info 42 [00:01:31.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined +Info 42 [00:01:32.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -184,11 +183,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [00:01:34.000] response: +Info 42 [00:01:33.000] response: { "responseRequired": false } -Info 44 [00:01:35.000] request: +Info 43 [00:01:34.000] request: { "command": "geterr", "arguments": { @@ -272,7 +271,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [00:01:36.000] response: +Info 44 [00:01:35.000] response: { "responseRequired": false } @@ -312,7 +311,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [00:01:37.000] event: +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 @@ -386,7 +385,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [00:01:38.000] event: +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) @@ -460,9 +459,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [00:01:39.000] event: +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 49 [00:01:40.000] event: +Info 48 [00:01:39.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -500,7 +499,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [00:01:41.000] request: +Info 49 [00:01:40.000] request: { "command": "updateOpen", "arguments": { @@ -598,12 +597,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [00:01:42.000] response: +Info 50 [00:01:41.000] response: { "response": true, "responseRequired": true } -Info 52 [00:01:43.000] request: +Info 51 [00:01:42.000] request: { "command": "geterr", "arguments": { @@ -687,7 +686,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [00:01:44.000] response: +Info 52 [00:01:43.000] response: { "responseRequired": false } @@ -727,10 +726,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [00:01:47.000] Different program with same set of files -Info 57 [00:01:48.000] event: +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 +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 @@ -804,7 +803,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [00:01:49.000] event: +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) @@ -878,9 +877,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [00:01:50.000] event: +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 60 [00:01:51.000] event: +Info 59 [00:01:50.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-packageJson-has-types-field-and-has-index.ts-with-scoped-package-and-solution-is-not-built.js index 54bb95b90b028..16ef4db7d78dc 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 @@ -77,9 +77,8 @@ Info 7 [00:00:52.000] Config: /user/username/projects/myproject/packages/A/ts } Info 8 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory Info 9 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:55.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [00:00:57.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 10 [00:00:55.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 11 [00:00:56.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/bar.ts", "/user/username/projects/myproject/packages/B/src/index.ts" @@ -91,30 +90,30 @@ Info 12 [00:00:57.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 14 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 16 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info -Info 17 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution -Info 28 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 29 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 30 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 31 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 32 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:20.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [00:01:21.000] Files (4) +Info 12 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 13 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/index.ts 500 undefined WatchType: Closed Script info +Info 16 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info 27 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 28 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 29 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 30 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 31 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 32 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:19.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 35 [00:01:20.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/index.ts /user/username/projects/myproject/packages/B/src/bar.ts @@ -130,22 +129,22 @@ Info 36 [00:01:21.000] Files (4) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [00:01:22.000] ----------------------------------------------- -Info 38 [00:01:23.000] event: +Info 36 [00:01:21.000] ----------------------------------------------- +Info 37 [00:01:22.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [00:01:24.000] event: +Info 38 [00:01:23.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":136,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [00:01:25.000] event: +Info 39 [00:01:24.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/index.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [00:01:26.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [00:01:27.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [00:01:28.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [00:01:29.000] Files (4) - -Info 43 [00:01:30.000] ----------------------------------------------- -Info 43 [00:01:31.000] Open files: -Info 43 [00:01:32.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined -Info 43 [00:01:33.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 40 [00:01:25.000] Search path: /user/username/projects/myproject/packages/A +Info 41 [00:01:26.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 42 [00:01:27.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 42 [00:01:28.000] Files (4) + +Info 42 [00:01:29.000] ----------------------------------------------- +Info 42 [00:01:30.000] Open files: +Info 42 [00:01:31.000] FileName: /user/username/projects/myproject/packages/A/src/index.ts ProjectRootPath: undefined +Info 42 [00:01:32.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -182,11 +181,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [00:01:34.000] response: +Info 42 [00:01:33.000] response: { "responseRequired": false } -Info 44 [00:01:35.000] request: +Info 43 [00:01:34.000] request: { "command": "geterr", "arguments": { @@ -270,7 +269,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [00:01:36.000] response: +Info 44 [00:01:35.000] response: { "responseRequired": false } @@ -310,7 +309,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [00:01:37.000] event: +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 @@ -384,7 +383,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [00:01:38.000] event: +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) @@ -458,9 +457,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [00:01:39.000] event: +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 49 [00:01:40.000] event: +Info 48 [00:01:39.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -498,7 +497,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [00:01:41.000] request: +Info 49 [00:01:40.000] request: { "command": "updateOpen", "arguments": { @@ -596,12 +595,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [00:01:42.000] response: +Info 50 [00:01:41.000] response: { "response": true, "responseRequired": true } -Info 52 [00:01:43.000] request: +Info 51 [00:01:42.000] request: { "command": "geterr", "arguments": { @@ -685,7 +684,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [00:01:44.000] response: +Info 52 [00:01:43.000] response: { "responseRequired": false } @@ -725,10 +724,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [00:01:47.000] Different program with same set of files -Info 57 [00:01:48.000] event: +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 +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 @@ -802,7 +801,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [00:01:49.000] event: +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) @@ -876,9 +875,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [00:01:50.000] event: +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 60 [00:01:51.000] event: +Info 59 [00:01:50.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built-with-preserveSymlinks.js index 038473bb0bee9..f0d60a46e8205 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 @@ -220,9 +220,8 @@ Info 7 [00:01:23.000] Config: /user/username/projects/myproject/packages/A/ts } Info 8 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory Info 9 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [00:01:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [00:01:28.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 10 [00:01:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 11 [00:01:27.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/foo.ts", "/user/username/projects/myproject/packages/B/src/bar/foo.ts" @@ -235,30 +234,30 @@ Info 12 [00:01:28.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 14 [00:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 16 [00:01:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info 17 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution -Info 28 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 29 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 30 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 31 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 32 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:51.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [00:01:52.000] Files (4) +Info 12 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 13 [00:01:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info 16 [00:01:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info 27 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 28 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 29 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 30 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 31 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 32 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:50.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 35 [00:01:51.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/foo.ts /user/username/projects/myproject/packages/B/src/bar/foo.ts @@ -274,22 +273,22 @@ Info 36 [00:01:52.000] Files (4) src/test.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [00:01:53.000] ----------------------------------------------- -Info 38 [00:01:54.000] event: +Info 36 [00:01:52.000] ----------------------------------------------- +Info 37 [00:01:53.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [00:01:55.000] event: +Info 38 [00:01:54.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true,"preserveSymlinks":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [00:01:56.000] event: +Info 39 [00:01:55.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/test.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [00:01:57.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [00:01:58.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [00:01:59.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [00:02:00.000] Files (4) - -Info 43 [00:02:01.000] ----------------------------------------------- -Info 43 [00:02:02.000] Open files: -Info 43 [00:02:03.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined -Info 43 [00:02:04.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 40 [00:01:56.000] Search path: /user/username/projects/myproject/packages/A +Info 41 [00:01:57.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 42 [00:01:58.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 42 [00:01:59.000] Files (4) + +Info 42 [00:02:00.000] ----------------------------------------------- +Info 42 [00:02:01.000] Open files: +Info 42 [00:02:02.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined +Info 42 [00:02:03.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -326,11 +325,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [00:02:05.000] response: +Info 42 [00:02:04.000] response: { "responseRequired": false } -Info 44 [00:02:06.000] request: +Info 43 [00:02:05.000] request: { "command": "geterr", "arguments": { @@ -414,7 +413,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [00:02:07.000] response: +Info 44 [00:02:06.000] response: { "responseRequired": false } @@ -454,7 +453,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [00:02:08.000] event: +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 @@ -528,7 +527,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [00:02:09.000] event: +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) @@ -602,9 +601,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [00:02:10.000] event: +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 49 [00:02:11.000] event: +Info 48 [00:02:10.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -642,7 +641,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [00:02:12.000] request: +Info 49 [00:02:11.000] request: { "command": "updateOpen", "arguments": { @@ -740,12 +739,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [00:02:13.000] response: +Info 50 [00:02:12.000] response: { "response": true, "responseRequired": true } -Info 52 [00:02:14.000] request: +Info 51 [00:02:13.000] request: { "command": "geterr", "arguments": { @@ -829,7 +828,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [00:02:15.000] response: +Info 52 [00:02:14.000] response: { "responseRequired": false } @@ -869,10 +868,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [00:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [00:02:18.000] Different program with same set of files -Info 57 [00:02:19.000] event: +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 +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 @@ -946,7 +945,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [00:02:20.000] event: +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) @@ -1020,9 +1019,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [00:02:21.000] event: +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 60 [00:02:22.000] event: +Info 59 [00:02:21.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-built.js index 626f273cccace..817a9e6242e7b 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 @@ -219,9 +219,8 @@ Info 7 [00:01:23.000] Config: /user/username/projects/myproject/packages/A/ts } Info 8 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory Info 9 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [00:01:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [00:01:28.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 10 [00:01:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 11 [00:01:27.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/foo.ts", "/user/username/projects/myproject/packages/B/src/bar/foo.ts" @@ -233,30 +232,30 @@ Info 12 [00:01:28.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 14 [00:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 16 [00:01:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info 17 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:34.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution -Info 28 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 29 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 30 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 31 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 32 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:51.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [00:01:52.000] Files (4) +Info 12 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 13 [00:01:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info 16 [00:01:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info 27 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 28 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 29 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 30 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 31 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 32 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:50.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 35 [00:01:51.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/foo.ts /user/username/projects/myproject/packages/B/src/bar/foo.ts @@ -272,22 +271,22 @@ Info 36 [00:01:52.000] Files (4) src/test.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [00:01:53.000] ----------------------------------------------- -Info 38 [00:01:54.000] event: +Info 36 [00:01:52.000] ----------------------------------------------- +Info 37 [00:01:53.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [00:01:55.000] event: +Info 38 [00:01:54.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [00:01:56.000] event: +Info 39 [00:01:55.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/test.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [00:01:57.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [00:01:58.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [00:01:59.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [00:02:00.000] Files (4) - -Info 43 [00:02:01.000] ----------------------------------------------- -Info 43 [00:02:02.000] Open files: -Info 43 [00:02:03.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined -Info 43 [00:02:04.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 40 [00:01:56.000] Search path: /user/username/projects/myproject/packages/A +Info 41 [00:01:57.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 42 [00:01:58.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 42 [00:01:59.000] Files (4) + +Info 42 [00:02:00.000] ----------------------------------------------- +Info 42 [00:02:01.000] Open files: +Info 42 [00:02:02.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined +Info 42 [00:02:03.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -324,11 +323,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [00:02:05.000] response: +Info 42 [00:02:04.000] response: { "responseRequired": false } -Info 44 [00:02:06.000] request: +Info 43 [00:02:05.000] request: { "command": "geterr", "arguments": { @@ -412,7 +411,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [00:02:07.000] response: +Info 44 [00:02:06.000] response: { "responseRequired": false } @@ -452,7 +451,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [00:02:08.000] event: +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 @@ -526,7 +525,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [00:02:09.000] event: +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) @@ -600,9 +599,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [00:02:10.000] event: +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 49 [00:02:11.000] event: +Info 48 [00:02:10.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -640,7 +639,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [00:02:12.000] request: +Info 49 [00:02:11.000] request: { "command": "updateOpen", "arguments": { @@ -738,12 +737,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [00:02:13.000] response: +Info 50 [00:02:12.000] response: { "response": true, "responseRequired": true } -Info 52 [00:02:14.000] request: +Info 51 [00:02:13.000] request: { "command": "geterr", "arguments": { @@ -827,7 +826,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [00:02:15.000] response: +Info 52 [00:02:14.000] response: { "responseRequired": false } @@ -867,10 +866,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [00:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [00:02:18.000] Different program with same set of files -Info 57 [00:02:19.000] event: +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 +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 @@ -944,7 +943,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [00:02:20.000] event: +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) @@ -1018,9 +1017,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [00:02:21.000] event: +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 60 [00:02:22.000] event: +Info 59 [00:02:21.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built-with-preserveSymlinks.js index 48cc83b34601a..4bdce3059ddba 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 @@ -78,9 +78,8 @@ Info 7 [00:00:52.000] Config: /user/username/projects/myproject/packages/A/ts } Info 8 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory Info 9 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:55.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [00:00:57.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 10 [00:00:55.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 11 [00:00:56.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/foo.ts", "/user/username/projects/myproject/packages/B/src/bar/foo.ts" @@ -93,30 +92,30 @@ Info 12 [00:00:57.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 14 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 16 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info 17 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution -Info 28 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 29 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 30 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 31 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 32 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:20.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [00:01:21.000] Files (4) +Info 12 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 13 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info 16 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info 27 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 28 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 29 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 30 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 31 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 32 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:19.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 35 [00:01:20.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/foo.ts /user/username/projects/myproject/packages/B/src/bar/foo.ts @@ -132,22 +131,22 @@ Info 36 [00:01:21.000] Files (4) src/test.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [00:01:22.000] ----------------------------------------------- -Info 38 [00:01:23.000] event: +Info 36 [00:01:21.000] ----------------------------------------------- +Info 37 [00:01:22.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [00:01:24.000] event: +Info 38 [00:01:23.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true,"preserveSymlinks":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [00:01:25.000] event: +Info 39 [00:01:24.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/test.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [00:01:26.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [00:01:27.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [00:01:28.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [00:01:29.000] Files (4) - -Info 43 [00:01:30.000] ----------------------------------------------- -Info 43 [00:01:31.000] Open files: -Info 43 [00:01:32.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined -Info 43 [00:01:33.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 40 [00:01:25.000] Search path: /user/username/projects/myproject/packages/A +Info 41 [00:01:26.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 42 [00:01:27.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 42 [00:01:28.000] Files (4) + +Info 42 [00:01:29.000] ----------------------------------------------- +Info 42 [00:01:30.000] Open files: +Info 42 [00:01:31.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined +Info 42 [00:01:32.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -184,11 +183,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [00:01:34.000] response: +Info 42 [00:01:33.000] response: { "responseRequired": false } -Info 44 [00:01:35.000] request: +Info 43 [00:01:34.000] request: { "command": "geterr", "arguments": { @@ -272,7 +271,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [00:01:36.000] response: +Info 44 [00:01:35.000] response: { "responseRequired": false } @@ -312,7 +311,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [00:01:37.000] event: +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 @@ -386,7 +385,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [00:01:38.000] event: +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) @@ -460,9 +459,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [00:01:39.000] event: +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 49 [00:01:40.000] event: +Info 48 [00:01:39.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -500,7 +499,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [00:01:41.000] request: +Info 49 [00:01:40.000] request: { "command": "updateOpen", "arguments": { @@ -598,12 +597,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [00:01:42.000] response: +Info 50 [00:01:41.000] response: { "response": true, "responseRequired": true } -Info 52 [00:01:43.000] request: +Info 51 [00:01:42.000] request: { "command": "geterr", "arguments": { @@ -687,7 +686,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [00:01:44.000] response: +Info 52 [00:01:43.000] response: { "responseRequired": false } @@ -727,10 +726,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [00:01:47.000] Different program with same set of files -Info 57 [00:01:48.000] event: +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 +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 @@ -804,7 +803,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [00:01:49.000] event: +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) @@ -878,9 +877,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [00:01:50.000] event: +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 60 [00:01:51.000] event: +Info 59 [00:01:50.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-and-solution-is-not-built.js index 965feba1830e4..6db969314cd3b 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 @@ -77,9 +77,8 @@ Info 7 [00:00:52.000] Config: /user/username/projects/myproject/packages/A/ts } Info 8 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory Info 9 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:55.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [00:00:57.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 10 [00:00:55.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 11 [00:00:56.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/foo.ts", "/user/username/projects/myproject/packages/B/src/bar/foo.ts" @@ -91,30 +90,30 @@ Info 12 [00:00:57.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 14 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 16 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info 17 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution -Info 28 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 29 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 30 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 31 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 32 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:20.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [00:01:21.000] Files (4) +Info 12 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 13 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info 16 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info 27 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 28 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 29 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 30 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 31 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 32 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:19.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 35 [00:01:20.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/foo.ts /user/username/projects/myproject/packages/B/src/bar/foo.ts @@ -130,22 +129,22 @@ Info 36 [00:01:21.000] Files (4) src/test.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [00:01:22.000] ----------------------------------------------- -Info 38 [00:01:23.000] event: +Info 36 [00:01:21.000] ----------------------------------------------- +Info 37 [00:01:22.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [00:01:24.000] event: +Info 38 [00:01:23.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [00:01:25.000] event: +Info 39 [00:01:24.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/test.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [00:01:26.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [00:01:27.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [00:01:28.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [00:01:29.000] Files (4) - -Info 43 [00:01:30.000] ----------------------------------------------- -Info 43 [00:01:31.000] Open files: -Info 43 [00:01:32.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined -Info 43 [00:01:33.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 40 [00:01:25.000] Search path: /user/username/projects/myproject/packages/A +Info 41 [00:01:26.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 42 [00:01:27.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 42 [00:01:28.000] Files (4) + +Info 42 [00:01:29.000] ----------------------------------------------- +Info 42 [00:01:30.000] Open files: +Info 42 [00:01:31.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined +Info 42 [00:01:32.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -182,11 +181,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [00:01:34.000] response: +Info 42 [00:01:33.000] response: { "responseRequired": false } -Info 44 [00:01:35.000] request: +Info 43 [00:01:34.000] request: { "command": "geterr", "arguments": { @@ -270,7 +269,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [00:01:36.000] response: +Info 44 [00:01:35.000] response: { "responseRequired": false } @@ -310,7 +309,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [00:01:37.000] event: +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 @@ -384,7 +383,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [00:01:38.000] event: +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) @@ -458,9 +457,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [00:01:39.000] event: +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 49 [00:01:40.000] event: +Info 48 [00:01:39.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -498,7 +497,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [00:01:41.000] request: +Info 49 [00:01:40.000] request: { "command": "updateOpen", "arguments": { @@ -596,12 +595,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [00:01:42.000] response: +Info 50 [00:01:41.000] response: { "response": true, "responseRequired": true } -Info 52 [00:01:43.000] request: +Info 51 [00:01:42.000] request: { "command": "geterr", "arguments": { @@ -685,7 +684,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [00:01:44.000] response: +Info 52 [00:01:43.000] response: { "responseRequired": false } @@ -725,10 +724,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [00:01:47.000] Different program with same set of files -Info 57 [00:01:48.000] event: +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 +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 @@ -802,7 +801,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [00:01:49.000] event: +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) @@ -876,9 +875,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [00:01:50.000] event: +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 60 [00:01:51.000] event: +Info 59 [00:01:50.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built-with-preserveSymlinks.js index ba2437a0ae632..533087a347ac3 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 @@ -220,9 +220,8 @@ Info 7 [00:01:25.000] Config: /user/username/projects/myproject/packages/A/ts } Info 8 [00:01:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory Info 9 [00:01:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [00:01:28.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:01:29.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [00:01:30.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 10 [00:01:28.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 11 [00:01:29.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/foo.ts", "/user/username/projects/myproject/packages/B/src/bar/foo.ts" @@ -235,30 +234,30 @@ Info 12 [00:01:30.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [00:01:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 14 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 16 [00:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info 17 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution -Info 28 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 29 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 30 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 31 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 32 [00:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [00:01:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:53.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [00:01:54.000] Files (4) +Info 12 [00:01:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 13 [00:01:31.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info 16 [00:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info 27 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 28 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 29 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 30 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 31 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 32 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:52.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 35 [00:01:53.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/foo.ts /user/username/projects/myproject/packages/B/src/bar/foo.ts @@ -274,22 +273,22 @@ Info 36 [00:01:54.000] Files (4) src/test.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [00:01:55.000] ----------------------------------------------- -Info 38 [00:01:56.000] event: +Info 36 [00:01:54.000] ----------------------------------------------- +Info 37 [00:01:55.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [00:01:57.000] event: +Info 38 [00:01:56.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":148,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true,"preserveSymlinks":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [00:01:58.000] event: +Info 39 [00:01:57.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/test.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [00:01:59.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [00:02:00.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [00:02:01.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [00:02:02.000] Files (4) - -Info 43 [00:02:03.000] ----------------------------------------------- -Info 43 [00:02:04.000] Open files: -Info 43 [00:02:05.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined -Info 43 [00:02:06.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 40 [00:01:58.000] Search path: /user/username/projects/myproject/packages/A +Info 41 [00:01:59.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 42 [00:02:00.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 42 [00:02:01.000] Files (4) + +Info 42 [00:02:02.000] ----------------------------------------------- +Info 42 [00:02:03.000] Open files: +Info 42 [00:02:04.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined +Info 42 [00:02:05.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -326,11 +325,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [00:02:07.000] response: +Info 42 [00:02:06.000] response: { "responseRequired": false } -Info 44 [00:02:08.000] request: +Info 43 [00:02:07.000] request: { "command": "geterr", "arguments": { @@ -414,7 +413,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [00:02:09.000] response: +Info 44 [00:02:08.000] response: { "responseRequired": false } @@ -454,7 +453,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [00:02:10.000] event: +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 @@ -528,7 +527,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [00:02:11.000] event: +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) @@ -602,9 +601,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [00:02:12.000] event: +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 49 [00:02:13.000] event: +Info 48 [00:02:12.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -642,7 +641,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [00:02:14.000] request: +Info 49 [00:02:13.000] request: { "command": "updateOpen", "arguments": { @@ -740,12 +739,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [00:02:15.000] response: +Info 50 [00:02:14.000] response: { "response": true, "responseRequired": true } -Info 52 [00:02:16.000] request: +Info 51 [00:02:15.000] request: { "command": "geterr", "arguments": { @@ -829,7 +828,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [00:02:17.000] response: +Info 52 [00:02:16.000] response: { "responseRequired": false } @@ -869,10 +868,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [00:02:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [00:02:20.000] Different program with same set of files -Info 57 [00:02:21.000] event: +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 +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 @@ -946,7 +945,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [00:02:22.000] event: +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) @@ -1020,9 +1019,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [00:02:23.000] event: +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 60 [00:02:24.000] event: +Info 59 [00:02:23.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-built.js index a5a24b79141ca..692feeed516bc 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 @@ -219,9 +219,8 @@ Info 7 [00:01:25.000] Config: /user/username/projects/myproject/packages/A/ts } Info 8 [00:01:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory Info 9 [00:01:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [00:01:28.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:01:29.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [00:01:30.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 10 [00:01:28.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 11 [00:01:29.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/foo.ts", "/user/username/projects/myproject/packages/B/src/bar/foo.ts" @@ -233,30 +232,30 @@ Info 12 [00:01:30.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [00:01:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 14 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 16 [00:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info 17 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution -Info 28 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 29 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 30 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 31 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 32 [00:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [00:01:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:53.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [00:01:54.000] Files (4) +Info 12 [00:01:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 13 [00:01:31.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info 16 [00:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info 27 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 28 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 29 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 30 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 31 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 32 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:52.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 35 [00:01:53.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/foo.ts /user/username/projects/myproject/packages/B/src/bar/foo.ts @@ -272,22 +271,22 @@ Info 36 [00:01:54.000] Files (4) src/test.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [00:01:55.000] ----------------------------------------------- -Info 38 [00:01:56.000] event: +Info 36 [00:01:54.000] ----------------------------------------------- +Info 37 [00:01:55.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [00:01:57.000] event: +Info 38 [00:01:56.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":148,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [00:01:58.000] event: +Info 39 [00:01:57.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/test.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [00:01:59.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [00:02:00.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [00:02:01.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [00:02:02.000] Files (4) - -Info 43 [00:02:03.000] ----------------------------------------------- -Info 43 [00:02:04.000] Open files: -Info 43 [00:02:05.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined -Info 43 [00:02:06.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 40 [00:01:58.000] Search path: /user/username/projects/myproject/packages/A +Info 41 [00:01:59.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 42 [00:02:00.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 42 [00:02:01.000] Files (4) + +Info 42 [00:02:02.000] ----------------------------------------------- +Info 42 [00:02:03.000] Open files: +Info 42 [00:02:04.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined +Info 42 [00:02:05.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -324,11 +323,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [00:02:07.000] response: +Info 42 [00:02:06.000] response: { "responseRequired": false } -Info 44 [00:02:08.000] request: +Info 43 [00:02:07.000] request: { "command": "geterr", "arguments": { @@ -412,7 +411,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [00:02:09.000] response: +Info 44 [00:02:08.000] response: { "responseRequired": false } @@ -452,7 +451,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [00:02:10.000] event: +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 @@ -526,7 +525,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [00:02:11.000] event: +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) @@ -600,9 +599,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [00:02:12.000] event: +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 49 [00:02:13.000] event: +Info 48 [00:02:12.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -640,7 +639,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [00:02:14.000] request: +Info 49 [00:02:13.000] request: { "command": "updateOpen", "arguments": { @@ -738,12 +737,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [00:02:15.000] response: +Info 50 [00:02:14.000] response: { "response": true, "responseRequired": true } -Info 52 [00:02:16.000] request: +Info 51 [00:02:15.000] request: { "command": "geterr", "arguments": { @@ -827,7 +826,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [00:02:17.000] response: +Info 52 [00:02:16.000] response: { "responseRequired": false } @@ -867,10 +866,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [00:02:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [00:02:20.000] Different program with same set of files -Info 57 [00:02:21.000] event: +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 +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 @@ -944,7 +943,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [00:02:22.000] event: +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) @@ -1018,9 +1017,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [00:02:23.000] event: +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 60 [00:02:24.000] event: +Info 59 [00:02:23.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built-with-preserveSymlinks.js index 691f33aa15eec..a2e4f3a950f27 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 @@ -78,9 +78,8 @@ Info 7 [00:00:54.000] Config: /user/username/projects/myproject/packages/A/ts } Info 8 [00:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory Info 9 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:57.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [00:00:59.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 10 [00:00:57.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 11 [00:00:58.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/foo.ts", "/user/username/projects/myproject/packages/B/src/bar/foo.ts" @@ -93,30 +92,30 @@ Info 12 [00:00:59.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 14 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 16 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info 17 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution -Info 28 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 29 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 30 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 31 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 32 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:22.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [00:01:23.000] Files (4) +Info 12 [00:00:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 13 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info 16 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info 27 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 28 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 29 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 30 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 31 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 32 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:21.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 35 [00:01:22.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/foo.ts /user/username/projects/myproject/packages/B/src/bar/foo.ts @@ -132,22 +131,22 @@ Info 36 [00:01:23.000] Files (4) src/test.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [00:01:24.000] ----------------------------------------------- -Info 38 [00:01:25.000] event: +Info 36 [00:01:23.000] ----------------------------------------------- +Info 37 [00:01:24.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [00:01:26.000] event: +Info 38 [00:01:25.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":148,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true,"preserveSymlinks":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [00:01:27.000] event: +Info 39 [00:01:26.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/test.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [00:01:28.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [00:01:29.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [00:01:30.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [00:01:31.000] Files (4) - -Info 43 [00:01:32.000] ----------------------------------------------- -Info 43 [00:01:33.000] Open files: -Info 43 [00:01:34.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined -Info 43 [00:01:35.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 40 [00:01:27.000] Search path: /user/username/projects/myproject/packages/A +Info 41 [00:01:28.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 42 [00:01:29.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 42 [00:01:30.000] Files (4) + +Info 42 [00:01:31.000] ----------------------------------------------- +Info 42 [00:01:32.000] Open files: +Info 42 [00:01:33.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined +Info 42 [00:01:34.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -184,11 +183,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [00:01:36.000] response: +Info 42 [00:01:35.000] response: { "responseRequired": false } -Info 44 [00:01:37.000] request: +Info 43 [00:01:36.000] request: { "command": "geterr", "arguments": { @@ -272,7 +271,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [00:01:38.000] response: +Info 44 [00:01:37.000] response: { "responseRequired": false } @@ -312,7 +311,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [00:01:39.000] event: +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 @@ -386,7 +385,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [00:01:40.000] event: +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) @@ -460,9 +459,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [00:01:41.000] event: +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 49 [00:01:42.000] event: +Info 48 [00:01:41.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -500,7 +499,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [00:01:43.000] request: +Info 49 [00:01:42.000] request: { "command": "updateOpen", "arguments": { @@ -598,12 +597,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [00:01:44.000] response: +Info 50 [00:01:43.000] response: { "response": true, "responseRequired": true } -Info 52 [00:01:45.000] request: +Info 51 [00:01:44.000] request: { "command": "geterr", "arguments": { @@ -687,7 +686,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [00:01:46.000] response: +Info 52 [00:01:45.000] response: { "responseRequired": false } @@ -727,10 +726,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [00:01:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [00:01:49.000] Different program with same set of files -Info 57 [00:01:50.000] event: +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 +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 @@ -804,7 +803,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [00:01:51.000] event: +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) @@ -878,9 +877,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [00:01:52.000] event: +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 60 [00:01:53.000] event: +Info 59 [00:01:52.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built.js b/tests/baselines/reference/tsserver/projectReferences/monorepo-like-with-symlinks-when-referencing-file-from-subFolder-with-scoped-package-and-solution-is-not-built.js index 2f8276f94f61c..14c5ca1946eee 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 @@ -77,9 +77,8 @@ Info 7 [00:00:54.000] Config: /user/username/projects/myproject/packages/A/ts } Info 8 [00:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory Info 9 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/a/src 1 undefined Config: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:57.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 12 [00:00:59.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { +Info 10 [00:00:57.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json +Info 11 [00:00:58.000] Config: /user/username/projects/myproject/packages/B/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/B/src/foo.ts", "/user/username/projects/myproject/packages/B/src/bar/foo.ts" @@ -91,30 +90,30 @@ Info 12 [00:00:59.000] Config: /user/username/projects/myproject/packages/B/ts "configFilePath": "/user/username/projects/myproject/packages/B/tsconfig.json" } } -Info 13 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file -Info 14 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory -Info 16 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info -Info 17 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution -Info 28 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 29 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 30 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 31 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 32 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 33 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots -Info 34 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:22.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 36 [00:01:23.000] Files (4) +Info 12 [00:00:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Config file +Info 13 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/b/src 1 undefined Config: /user/username/projects/myproject/packages/B/tsconfig.json WatchType: Wild card directory +Info 15 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/foo.ts 500 undefined WatchType: Closed Script info +Info 16 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/src/bar/foo.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/src 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/B/package.json 2000 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: File location affecting resolution +Info 27 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 28 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/A/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 29 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 30 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 31 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 32 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/A/tsconfig.json WatchType: Type roots +Info 33 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:21.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 35 [00:01:22.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/B/src/foo.ts /user/username/projects/myproject/packages/B/src/bar/foo.ts @@ -130,22 +129,22 @@ Info 36 [00:01:23.000] Files (4) src/test.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 37 [00:01:24.000] ----------------------------------------------- -Info 38 [00:01:25.000] event: +Info 36 [00:01:23.000] ----------------------------------------------- +Info 37 [00:01:24.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/A/tsconfig.json"}} -Info 39 [00:01:26.000] event: +Info 38 [00:01:25.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"8c5cfb88fb6a6125ddaca4c198af63d261c8feb2786e348cbf3223fcf8461e16","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":148,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","rootDir":"","composite":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 40 [00:01:27.000] event: +Info 39 [00:01:26.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/A/src/test.ts","configFile":"/user/username/projects/myproject/packages/A/tsconfig.json","diagnostics":[]}} -Info 41 [00:01:28.000] Search path: /user/username/projects/myproject/packages/A -Info 42 [00:01:29.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. -Info 43 [00:01:30.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) -Info 43 [00:01:31.000] Files (4) - -Info 43 [00:01:32.000] ----------------------------------------------- -Info 43 [00:01:33.000] Open files: -Info 43 [00:01:34.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined -Info 43 [00:01:35.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json +Info 40 [00:01:27.000] Search path: /user/username/projects/myproject/packages/A +Info 41 [00:01:28.000] For info: /user/username/projects/myproject/packages/A/tsconfig.json :: No config files found. +Info 42 [00:01:29.000] Project '/user/username/projects/myproject/packages/A/tsconfig.json' (Configured) +Info 42 [00:01:30.000] Files (4) + +Info 42 [00:01:31.000] ----------------------------------------------- +Info 42 [00:01:32.000] Open files: +Info 42 [00:01:33.000] FileName: /user/username/projects/myproject/packages/A/src/test.ts ProjectRootPath: undefined +Info 42 [00:01:34.000] Projects: /user/username/projects/myproject/packages/A/tsconfig.json After request PolledWatches:: @@ -182,11 +181,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [00:01:36.000] response: +Info 42 [00:01:35.000] response: { "responseRequired": false } -Info 44 [00:01:37.000] request: +Info 43 [00:01:36.000] request: { "command": "geterr", "arguments": { @@ -270,7 +269,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [00:01:38.000] response: +Info 44 [00:01:37.000] response: { "responseRequired": false } @@ -310,7 +309,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [00:01:39.000] event: +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 @@ -384,7 +383,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [00:01:40.000] event: +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) @@ -458,9 +457,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [00:01:41.000] event: +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 49 [00:01:42.000] event: +Info 48 [00:01:41.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) @@ -498,7 +497,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 50 [00:01:43.000] request: +Info 49 [00:01:42.000] request: { "command": "updateOpen", "arguments": { @@ -596,12 +595,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 51 [00:01:44.000] response: +Info 50 [00:01:43.000] response: { "response": true, "responseRequired": true } -Info 52 [00:01:45.000] request: +Info 51 [00:01:44.000] request: { "command": "geterr", "arguments": { @@ -685,7 +684,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 53 [00:01:46.000] response: +Info 52 [00:01:45.000] response: { "responseRequired": false } @@ -725,10 +724,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 54 [00:01:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json -Info 55 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/A/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [00:01:49.000] Different program with same set of files -Info 57 [00:01:50.000] event: +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 +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 @@ -802,7 +801,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 58 [00:01:51.000] event: +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) @@ -876,9 +875,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 59 [00:01:52.000] event: +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 60 [00:01:53.000] event: +Info 59 [00:01:52.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open-with-disableSourceOfProjectReferenceRedirect.js b/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open-with-disableSourceOfProjectReferenceRedirect.js index 8d719602f473a..079ec690f55b2 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 @@ -67,9 +67,8 @@ Info 6 [00:00:39.000] Config: /user/username/projects/myproject/projects/proj } Info 7 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory Info 8 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 11 [00:00:44.000] Config: /user/username/projects/myproject/projects/project1/tsconfig.json : { +Info 9 [00:00:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 10 [00:00:43.000] Config: /user/username/projects/myproject/projects/project1/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/projects/project1/class1.ts" ], @@ -79,20 +78,20 @@ Info 11 [00:00:44.000] Config: /user/username/projects/myproject/projects/proj "configFilePath": "/user/username/projects/myproject/projects/project1/tsconfig.json" } } -Info 12 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file -Info 13 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class1.d.ts 500 undefined WatchType: Closed Script info -Info 16 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 18 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 19 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 20 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 21 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 22 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 23 [00:00:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:57.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 25 [00:00:58.000] Files (3) +Info 11 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file +Info 12 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class1.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 17 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 18 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 19 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 20 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 21 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 22 [00:00:55.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:56.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 24 [00:00:57.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.d.ts /user/username/projects/myproject/projects/project2/class2.ts @@ -105,16 +104,16 @@ Info 25 [00:00:58.000] Files (3) class2.ts Matched by default include pattern '**/*' -Info 26 [00:00:59.000] ----------------------------------------------- -Info 27 [00:01:00.000] Search path: /user/username/projects/myproject/projects/project2 -Info 28 [00:01:01.000] For info: /user/username/projects/myproject/projects/project2/tsconfig.json :: No config files found. -Info 29 [00:01:02.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 29 [00:01:03.000] Files (3) +Info 25 [00:00:58.000] ----------------------------------------------- +Info 26 [00:00:59.000] Search path: /user/username/projects/myproject/projects/project2 +Info 27 [00:01:00.000] For info: /user/username/projects/myproject/projects/project2/tsconfig.json :: No config files found. +Info 28 [00:01:01.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 28 [00:01:02.000] Files (3) -Info 29 [00:01:04.000] ----------------------------------------------- -Info 29 [00:01:05.000] Open files: -Info 29 [00:01:06.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 29 [00:01:07.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 28 [00:01:03.000] ----------------------------------------------- +Info 28 [00:01:04.000] Open files: +Info 28 [00:01:05.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 28 [00:01:06.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json After request PolledWatches:: @@ -141,14 +140,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 29 [00:01:08.000] response: +Info 28 [00:01:07.000] response: { "responseRequired": false } -Info 30 [00:01:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:12.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 32 [00:01:13.000] Scheduled: *ensureProjectForOpenFiles* -Info 33 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:10.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:11.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 31 [00:01:12.000] Scheduled: *ensureProjectForOpenFiles* +Info 32 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/projects/project1/class3.ts] class class3 {} @@ -178,28 +177,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 34 [00:01:15.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 35 [00:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 36 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 37 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:19.000] Different program with same set of files -Info 39 [00:01:20.000] Running: *ensureProjectForOpenFiles* -Info 40 [00:01:21.000] Before ensureProjectForOpenFiles: -Info 41 [00:01:22.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 41 [00:01:23.000] Files (3) - -Info 41 [00:01:24.000] ----------------------------------------------- -Info 41 [00:01:25.000] Open files: -Info 41 [00:01:26.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 41 [00:01:27.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 41 [00:01:28.000] After ensureProjectForOpenFiles: -Info 42 [00:01:29.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 42 [00:01:30.000] Files (3) - -Info 42 [00:01:31.000] ----------------------------------------------- -Info 42 [00:01:32.000] Open files: -Info 42 [00:01:33.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 42 [00:01:34.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +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 +Info 36 [00:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 37 [00:01:18.000] Different program with same set of files +Info 38 [00:01:19.000] Running: *ensureProjectForOpenFiles* +Info 39 [00:01:20.000] Before ensureProjectForOpenFiles: +Info 40 [00:01:21.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 40 [00:01:22.000] Files (3) + +Info 40 [00:01:23.000] ----------------------------------------------- +Info 40 [00:01:24.000] Open files: +Info 40 [00:01:25.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 40 [00:01:26.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 40 [00:01:27.000] After ensureProjectForOpenFiles: +Info 41 [00:01:28.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 41 [00:01:29.000] Files (3) + +Info 41 [00:01:30.000] ----------------------------------------------- +Info 41 [00:01:31.000] Open files: +Info 41 [00:01:32.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 41 [00:01:33.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -228,14 +227,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 42 [00:01:37.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 43 [00:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 44 [00:01:39.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 45 [00:01:40.000] Scheduled: *ensureProjectForOpenFiles* -Info 46 [00:01:41.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 47 [00:01:42.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 48 [00:01:43.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts -Info 49 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 41 [00:01:36.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 42 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 43 [00:01:38.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 44 [00:01:39.000] Scheduled: *ensureProjectForOpenFiles* +Info 45 [00:01:40.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 46 [00:01:41.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 47 [00:01:42.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts +Info 48 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/projects/project1/class3.d.ts] declare class class3 {} @@ -265,12 +264,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 50 [00:01:45.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 51 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 52 [00:01:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info -Info 53 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 54 [00:01:49.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 55 [00:01:50.000] Files (4) +Info 49 [00:01:44.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 50 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 51 [00:01:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info +Info 52 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 53 [00:01:48.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 54 [00:01:49.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.d.ts /user/username/projects/myproject/projects/project1/class3.d.ts @@ -286,24 +285,24 @@ Info 55 [00:01:50.000] Files (4) class2.ts Matched by default include pattern '**/*' -Info 56 [00:01:51.000] ----------------------------------------------- -Info 57 [00:01:52.000] Running: *ensureProjectForOpenFiles* -Info 58 [00:01:53.000] Before ensureProjectForOpenFiles: -Info 59 [00:01:54.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 59 [00:01:55.000] Files (4) - -Info 59 [00:01:56.000] ----------------------------------------------- -Info 59 [00:01:57.000] Open files: -Info 59 [00:01:58.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 59 [00:01:59.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 59 [00:02:00.000] After ensureProjectForOpenFiles: -Info 60 [00:02:01.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 60 [00:02:02.000] Files (4) - -Info 60 [00:02:03.000] ----------------------------------------------- -Info 60 [00:02:04.000] Open files: -Info 60 [00:02:05.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 60 [00:02:06.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 55 [00:01:50.000] ----------------------------------------------- +Info 56 [00:01:51.000] Running: *ensureProjectForOpenFiles* +Info 57 [00:01:52.000] Before ensureProjectForOpenFiles: +Info 58 [00:01:53.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 58 [00:01:54.000] Files (4) + +Info 58 [00:01:55.000] ----------------------------------------------- +Info 58 [00:01:56.000] Open files: +Info 58 [00:01:57.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 58 [00:01:58.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 58 [00:01:59.000] After ensureProjectForOpenFiles: +Info 59 [00:02:00.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 59 [00:02:01.000] Files (4) + +Info 59 [00:02:02.000] ----------------------------------------------- +Info 59 [00:02:03.000] Open files: +Info 59 [00:02:04.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 59 [00:02:05.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -332,12 +331,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 60 [00:02:10.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 61 [00:02:11.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp -Info 62 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 63 [00:02:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 64 [00:02:15.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp/file.d.ts -Info 65 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 59 [00:02:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 60 [00:02:10.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp +Info 61 [00:02:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 62 [00:02:13.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 63 [00:02:14.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp/file.d.ts +Info 64 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (0) and running //// [/user/username/projects/myproject/projects/project1/temp/file.d.ts] declare class file {} @@ -397,14 +396,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 66 [00:02:18.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 2:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info -Info 67 [00:02:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info -Info 68 [00:02:20.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 69 [00:02:21.000] Scheduled: *ensureProjectForOpenFiles* -Info 70 [00:02:22.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 2:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info -Info 71 [00:02:23.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 72 [00:02:24.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts -Info 73 [00:02:25.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +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 +Info 68 [00:02:20.000] Scheduled: *ensureProjectForOpenFiles* +Info 69 [00:02:21.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 2:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info +Info 70 [00:02:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 71 [00:02:23.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts +Info 72 [00:02:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/projects/project1/class3.d.ts] deleted @@ -432,12 +431,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 74 [00:02:26.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 75 [00:02:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 76 [00:02:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 77 [00:02:29.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 78 [00:02:30.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 79 [00:02:31.000] Files (3) +Info 73 [00:02:25.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 74 [00:02:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 75 [00:02:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 76 [00:02:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 77 [00:02:29.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 78 [00:02:30.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.d.ts /user/username/projects/myproject/projects/project2/class2.ts @@ -450,24 +449,24 @@ Info 79 [00:02:31.000] Files (3) class2.ts Matched by default include pattern '**/*' -Info 80 [00:02:32.000] ----------------------------------------------- -Info 81 [00:02:33.000] Running: *ensureProjectForOpenFiles* -Info 82 [00:02:34.000] Before ensureProjectForOpenFiles: -Info 83 [00:02:35.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 83 [00:02:36.000] Files (3) - -Info 83 [00:02:37.000] ----------------------------------------------- -Info 83 [00:02:38.000] Open files: -Info 83 [00:02:39.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 83 [00:02:40.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 83 [00:02:41.000] After ensureProjectForOpenFiles: -Info 84 [00:02:42.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 84 [00:02:43.000] Files (3) - -Info 84 [00:02:44.000] ----------------------------------------------- -Info 84 [00:02:45.000] Open files: -Info 84 [00:02:46.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 84 [00:02:47.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 79 [00:02:31.000] ----------------------------------------------- +Info 80 [00:02:32.000] Running: *ensureProjectForOpenFiles* +Info 81 [00:02:33.000] Before ensureProjectForOpenFiles: +Info 82 [00:02:34.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 82 [00:02:35.000] Files (3) + +Info 82 [00:02:36.000] ----------------------------------------------- +Info 82 [00:02:37.000] Open files: +Info 82 [00:02:38.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 82 [00:02:39.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 82 [00:02:40.000] After ensureProjectForOpenFiles: +Info 83 [00:02:41.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 83 [00:02:42.000] Files (3) + +Info 83 [00:02:43.000] ----------------------------------------------- +Info 83 [00:02:44.000] Open files: +Info 83 [00:02:45.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 83 [00:02:46.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -496,14 +495,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 84 [00:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 85 [00:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 86 [00:02:52.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 87 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles* -Info 88 [00:02:54.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 89 [00:02:55.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 90 [00:02:56.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts -Info 91 [00:02:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 83 [00:02:49.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 84 [00:02:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 85 [00:02:51.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 86 [00:02:52.000] Scheduled: *ensureProjectForOpenFiles* +Info 87 [00:02:53.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 88 [00:02:54.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 89 [00:02:55.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts +Info 90 [00:02:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/projects/project1/class3.d.ts] declare class class3 {} @@ -533,12 +532,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 92 [00:02:58.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 93 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 94 [00:03:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info -Info 95 [00:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 5 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 96 [00:03:02.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 97 [00:03:03.000] Files (4) +Info 91 [00:02:57.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 92 [00:02:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 93 [00:02:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info +Info 94 [00:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 5 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 95 [00:03:01.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 96 [00:03:02.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.d.ts /user/username/projects/myproject/projects/project1/class3.d.ts @@ -554,24 +553,24 @@ Info 97 [00:03:03.000] Files (4) class2.ts Matched by default include pattern '**/*' -Info 98 [00:03:04.000] ----------------------------------------------- -Info 99 [00:03:05.000] Running: *ensureProjectForOpenFiles* -Info 100 [00:03:06.000] Before ensureProjectForOpenFiles: -Info 101 [00:03:07.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 101 [00:03:08.000] Files (4) - -Info 101 [00:03:09.000] ----------------------------------------------- -Info 101 [00:03:10.000] Open files: -Info 101 [00:03:11.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 101 [00:03:12.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 101 [00:03:13.000] After ensureProjectForOpenFiles: -Info 102 [00:03:14.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 102 [00:03:15.000] Files (4) - -Info 102 [00:03:16.000] ----------------------------------------------- -Info 102 [00:03:17.000] Open files: -Info 102 [00:03:18.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 102 [00:03:19.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 97 [00:03:03.000] ----------------------------------------------- +Info 98 [00:03:04.000] Running: *ensureProjectForOpenFiles* +Info 99 [00:03:05.000] Before ensureProjectForOpenFiles: +Info 100 [00:03:06.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 100 [00:03:07.000] Files (4) + +Info 100 [00:03:08.000] ----------------------------------------------- +Info 100 [00:03:09.000] Open files: +Info 100 [00:03:10.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 100 [00:03:11.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 100 [00:03:12.000] After ensureProjectForOpenFiles: +Info 101 [00:03:13.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 101 [00:03:14.000] Files (4) + +Info 101 [00:03:15.000] ----------------------------------------------- +Info 101 [00:03:16.000] Open files: +Info 101 [00:03:17.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 101 [00:03:18.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open.js b/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-not-open.js index 8e7b7b1d312e5..2b42f860abf01 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 @@ -66,9 +66,8 @@ Info 6 [00:00:39.000] Config: /user/username/projects/myproject/projects/proj } Info 7 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory Info 8 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 11 [00:00:44.000] Config: /user/username/projects/myproject/projects/project1/tsconfig.json : { +Info 9 [00:00:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 10 [00:00:43.000] Config: /user/username/projects/myproject/projects/project1/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/projects/project1/class1.ts" ], @@ -78,20 +77,20 @@ Info 11 [00:00:44.000] Config: /user/username/projects/myproject/projects/proj "configFilePath": "/user/username/projects/myproject/projects/project1/tsconfig.json" } } -Info 12 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file -Info 13 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class1.ts 500 undefined WatchType: Closed Script info -Info 16 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 18 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 19 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 20 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 21 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 22 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 23 [00:00:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:57.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 25 [00:00:58.000] Files (3) +Info 11 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file +Info 12 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class1.ts 500 undefined WatchType: Closed Script info +Info 15 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 17 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 18 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 19 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 20 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 21 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 22 [00:00:55.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:56.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 24 [00:00:57.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.ts /user/username/projects/myproject/projects/project2/class2.ts @@ -104,16 +103,16 @@ Info 25 [00:00:58.000] Files (3) class2.ts Matched by default include pattern '**/*' -Info 26 [00:00:59.000] ----------------------------------------------- -Info 27 [00:01:00.000] Search path: /user/username/projects/myproject/projects/project2 -Info 28 [00:01:01.000] For info: /user/username/projects/myproject/projects/project2/tsconfig.json :: No config files found. -Info 29 [00:01:02.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 29 [00:01:03.000] Files (3) +Info 25 [00:00:58.000] ----------------------------------------------- +Info 26 [00:00:59.000] Search path: /user/username/projects/myproject/projects/project2 +Info 27 [00:01:00.000] For info: /user/username/projects/myproject/projects/project2/tsconfig.json :: No config files found. +Info 28 [00:01:01.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 28 [00:01:02.000] Files (3) -Info 29 [00:01:04.000] ----------------------------------------------- -Info 29 [00:01:05.000] Open files: -Info 29 [00:01:06.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 29 [00:01:07.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 28 [00:01:03.000] ----------------------------------------------- +Info 28 [00:01:04.000] Open files: +Info 28 [00:01:05.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 28 [00:01:06.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json After request PolledWatches:: @@ -140,14 +139,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 29 [00:01:08.000] response: +Info 28 [00:01:07.000] response: { "responseRequired": false } -Info 30 [00:01:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:12.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 32 [00:01:13.000] Scheduled: *ensureProjectForOpenFiles* -Info 33 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:10.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:11.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 31 [00:01:12.000] Scheduled: *ensureProjectForOpenFiles* +Info 32 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/projects/project1/class3.ts] class class3 {} @@ -177,12 +176,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 34 [00:01:15.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 35 [00:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 36 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.ts 500 undefined WatchType: Closed Script info -Info 37 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:19.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 39 [00:01:20.000] Files (4) +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 +Info 36 [00:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 37 [00:01:18.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 38 [00:01:19.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.ts /user/username/projects/myproject/projects/project1/class3.ts @@ -198,24 +197,24 @@ Info 39 [00:01:20.000] Files (4) class2.ts Matched by default include pattern '**/*' -Info 40 [00:01:21.000] ----------------------------------------------- -Info 41 [00:01:22.000] Running: *ensureProjectForOpenFiles* -Info 42 [00:01:23.000] Before ensureProjectForOpenFiles: -Info 43 [00:01:24.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 43 [00:01:25.000] Files (4) - -Info 43 [00:01:26.000] ----------------------------------------------- -Info 43 [00:01:27.000] Open files: -Info 43 [00:01:28.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 43 [00:01:29.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 43 [00:01:30.000] After ensureProjectForOpenFiles: -Info 44 [00:01:31.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 44 [00:01:32.000] Files (4) - -Info 44 [00:01:33.000] ----------------------------------------------- -Info 44 [00:01:34.000] Open files: -Info 44 [00:01:35.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 44 [00:01:36.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 39 [00:01:20.000] ----------------------------------------------- +Info 40 [00:01:21.000] Running: *ensureProjectForOpenFiles* +Info 41 [00:01:22.000] Before ensureProjectForOpenFiles: +Info 42 [00:01:23.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 42 [00:01:24.000] Files (4) + +Info 42 [00:01:25.000] ----------------------------------------------- +Info 42 [00:01:26.000] Open files: +Info 42 [00:01:27.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 42 [00:01:28.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 42 [00:01:29.000] After ensureProjectForOpenFiles: +Info 43 [00:01:30.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 43 [00:01:31.000] Files (4) + +Info 43 [00:01:32.000] ----------------------------------------------- +Info 43 [00:01:33.000] Open files: +Info 43 [00:01:34.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 43 [00:01:35.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -244,12 +243,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 44 [00:01:40.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 45 [00:01:41.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp -Info 46 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 47 [00:01:44.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 48 [00:01:45.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp/file.d.ts -Info 49 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 43 [00:01:39.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 44 [00:01:40.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp +Info 45 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 46 [00:01:43.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 47 [00:01:44.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp/file.d.ts +Info 48 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (0) and running //// [/user/username/projects/myproject/projects/project1/temp/file.d.ts] declare class file {} @@ -309,9 +308,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 50 [00:01:49.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 51 [00:01:50.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts -Info 52 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +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 Before checking timeout queue length (0) and running //// [/user/username/projects/myproject/projects/project1/class3.d.ts] declare class class3 {} diff --git a/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-open-with-disableSourceOfProjectReferenceRedirect.js b/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-open-with-disableSourceOfProjectReferenceRedirect.js index 0254915b21d31..f1367dae65414 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 @@ -67,9 +67,8 @@ Info 6 [00:00:39.000] Config: /user/username/projects/myproject/projects/proj } Info 7 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory Info 8 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 11 [00:00:44.000] Config: /user/username/projects/myproject/projects/project1/tsconfig.json : { +Info 9 [00:00:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 10 [00:00:43.000] Config: /user/username/projects/myproject/projects/project1/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/projects/project1/class1.ts" ], @@ -79,20 +78,20 @@ Info 11 [00:00:44.000] Config: /user/username/projects/myproject/projects/proj "configFilePath": "/user/username/projects/myproject/projects/project1/tsconfig.json" } } -Info 12 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file -Info 13 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class1.d.ts 500 undefined WatchType: Closed Script info -Info 16 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 18 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 19 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 20 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 21 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 22 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 23 [00:00:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:57.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 25 [00:00:58.000] Files (3) +Info 11 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file +Info 12 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class1.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 17 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 18 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 19 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 20 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 21 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 22 [00:00:55.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:56.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 24 [00:00:57.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.d.ts /user/username/projects/myproject/projects/project2/class2.ts @@ -105,16 +104,16 @@ Info 25 [00:00:58.000] Files (3) class2.ts Matched by default include pattern '**/*' -Info 26 [00:00:59.000] ----------------------------------------------- -Info 27 [00:01:00.000] Search path: /user/username/projects/myproject/projects/project2 -Info 28 [00:01:01.000] For info: /user/username/projects/myproject/projects/project2/tsconfig.json :: No config files found. -Info 29 [00:01:02.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 29 [00:01:03.000] Files (3) +Info 25 [00:00:58.000] ----------------------------------------------- +Info 26 [00:00:59.000] Search path: /user/username/projects/myproject/projects/project2 +Info 27 [00:01:00.000] For info: /user/username/projects/myproject/projects/project2/tsconfig.json :: No config files found. +Info 28 [00:01:01.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 28 [00:01:02.000] Files (3) -Info 29 [00:01:04.000] ----------------------------------------------- -Info 29 [00:01:05.000] Open files: -Info 29 [00:01:06.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 29 [00:01:07.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 28 [00:01:03.000] ----------------------------------------------- +Info 28 [00:01:04.000] Open files: +Info 28 [00:01:05.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 28 [00:01:06.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json After request PolledWatches:: @@ -141,11 +140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 29 [00:01:08.000] response: +Info 28 [00:01:07.000] response: { "responseRequired": false } -Info 30 [00:01:09.000] request: +Info 29 [00:01:08.000] request: { "seq": 0, "type": "request", @@ -180,20 +179,19 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 31 [00:01:10.000] Search path: /user/username/projects/myproject/projects/project1 -Info 32 [00:01:11.000] For info: /user/username/projects/myproject/projects/project1/class1.ts :: Config file name: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 33 [00:01:12.000] Creating configuration project /user/username/projects/myproject/projects/project1/tsconfig.json -Info 34 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 36 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info 37 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info 38 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info 39 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info 40 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info 41 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info 42 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 43 [00:01:22.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 44 [00:01:23.000] Files (2) +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 +Info 33 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 34 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots +Info 35 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots +Info 36 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots +Info 37 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots +Info 38 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots +Info 39 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots +Info 40 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 41 [00:01:20.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 42 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.ts @@ -203,22 +201,22 @@ Info 44 [00:01:23.000] Files (2) class1.ts Matched by default include pattern '**/*' -Info 45 [00:01:24.000] ----------------------------------------------- -Info 46 [00:01:25.000] Search path: /user/username/projects/myproject/projects/project1 -Info 47 [00:01:26.000] For info: /user/username/projects/myproject/projects/project1/tsconfig.json :: No config files found. -Info 48 [00:01:27.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 48 [00:01:28.000] Files (3) - -Info 48 [00:01:29.000] ----------------------------------------------- -Info 48 [00:01:30.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 48 [00:01:31.000] Files (2) - -Info 48 [00:01:32.000] ----------------------------------------------- -Info 48 [00:01:33.000] Open files: -Info 48 [00:01:34.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 48 [00:01:35.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 48 [00:01:36.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 48 [00:01:37.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 43 [00:01:22.000] ----------------------------------------------- +Info 44 [00:01:23.000] Search path: /user/username/projects/myproject/projects/project1 +Info 45 [00:01:24.000] For info: /user/username/projects/myproject/projects/project1/tsconfig.json :: No config files found. +Info 46 [00:01:25.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 46 [00:01:26.000] Files (3) + +Info 46 [00:01:27.000] ----------------------------------------------- +Info 46 [00:01:28.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 46 [00:01:29.000] Files (2) + +Info 46 [00:01:30.000] ----------------------------------------------- +Info 46 [00:01:31.000] Open files: +Info 46 [00:01:32.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 46 [00:01:33.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 46 [00:01:34.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 46 [00:01:35.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json After request PolledWatches:: @@ -247,16 +245,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 48 [00:01:38.000] response: +Info 46 [00:01:36.000] response: { "responseRequired": false } -Info 49 [00:01:41.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 50 [00:01:42.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 51 [00:01:43.000] Scheduled: *ensureProjectForOpenFiles* -Info 52 [00:01:44.000] Scheduled: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 53 [00:01:45.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 54 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 47 [00:01:39.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 48 [00:01:40.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 49 [00:01:41.000] Scheduled: *ensureProjectForOpenFiles* +Info 50 [00:01:42.000] Scheduled: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 51 [00:01:43.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 52 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/projects/project1/class3.ts] class class3 {} @@ -288,17 +286,17 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 55 [00:01:47.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 56 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 57 [00:01:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 58 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 59 [00:01:51.000] Different program with same set of files -Info 60 [00:01:52.000] Running: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 61 [00:01:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.ts 500 undefined WatchType: Closed Script info -Info 62 [00:01:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 63 [00:01:55.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 64 [00:01:56.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 65 [00:01:57.000] Files (3) +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 +Info 56 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 57 [00:01:49.000] Different program with same set of files +Info 58 [00:01:50.000] Running: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 59 [00:01:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.ts 500 undefined WatchType: Closed Script info +Info 60 [00:01:52.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 61 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:01:54.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 63 [00:01:55.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.ts /user/username/projects/myproject/projects/project1/class3.ts @@ -311,36 +309,36 @@ Info 65 [00:01:57.000] Files (3) class3.ts Matched by default include pattern '**/*' -Info 66 [00:01:58.000] ----------------------------------------------- -Info 67 [00:01:59.000] Running: *ensureProjectForOpenFiles* -Info 68 [00:02:00.000] Before ensureProjectForOpenFiles: -Info 69 [00:02:01.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 69 [00:02:02.000] Files (3) - -Info 69 [00:02:03.000] ----------------------------------------------- -Info 69 [00:02:04.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 69 [00:02:05.000] Files (3) - -Info 69 [00:02:06.000] ----------------------------------------------- -Info 69 [00:02:07.000] Open files: -Info 69 [00:02:08.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 69 [00:02:09.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 69 [00:02:10.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 69 [00:02:11.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 69 [00:02:12.000] After ensureProjectForOpenFiles: -Info 70 [00:02:13.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 70 [00:02:14.000] Files (3) - -Info 70 [00:02:15.000] ----------------------------------------------- -Info 70 [00:02:16.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 70 [00:02:17.000] Files (3) - -Info 70 [00:02:18.000] ----------------------------------------------- -Info 70 [00:02:19.000] Open files: -Info 70 [00:02:20.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 70 [00:02:21.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 70 [00:02:22.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 70 [00:02:23.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 64 [00:01:56.000] ----------------------------------------------- +Info 65 [00:01:57.000] Running: *ensureProjectForOpenFiles* +Info 66 [00:01:58.000] Before ensureProjectForOpenFiles: +Info 67 [00:01:59.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 67 [00:02:00.000] Files (3) + +Info 67 [00:02:01.000] ----------------------------------------------- +Info 67 [00:02:02.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 67 [00:02:03.000] Files (3) + +Info 67 [00:02:04.000] ----------------------------------------------- +Info 67 [00:02:05.000] Open files: +Info 67 [00:02:06.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 67 [00:02:07.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 67 [00:02:08.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 67 [00:02:09.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 67 [00:02:10.000] After ensureProjectForOpenFiles: +Info 68 [00:02:11.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 68 [00:02:12.000] Files (3) + +Info 68 [00:02:13.000] ----------------------------------------------- +Info 68 [00:02:14.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 68 [00:02:15.000] Files (3) + +Info 68 [00:02:16.000] ----------------------------------------------- +Info 68 [00:02:17.000] Open files: +Info 68 [00:02:18.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 68 [00:02:19.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 68 [00:02:20.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 68 [00:02:21.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json After checking timeout queue length (3) and running PolledWatches:: @@ -373,14 +371,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 70 [00:02:26.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 71 [00:02:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 72 [00:02:28.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 73 [00:02:29.000] Scheduled: *ensureProjectForOpenFiles* -Info 74 [00:02:30.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 75 [00:02:31.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 76 [00:02:32.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts -Info 77 [00:02:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 68 [00:02:24.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 69 [00:02:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 70 [00:02:26.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 71 [00:02:27.000] Scheduled: *ensureProjectForOpenFiles* +Info 72 [00:02:28.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 73 [00:02:29.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 74 [00:02:30.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts +Info 75 [00:02:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/projects/project1/class3.d.ts] declare class class3 {} @@ -414,12 +412,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 78 [00:02:34.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 79 [00:02:35.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 80 [00:02:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info -Info 81 [00:02:37.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 82 [00:02:38.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 83 [00:02:39.000] Files (4) +Info 76 [00:02:32.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 77 [00:02:33.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 78 [00:02:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info +Info 79 [00:02:35.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 80 [00:02:36.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 81 [00:02:37.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.d.ts /user/username/projects/myproject/projects/project1/class3.d.ts @@ -435,36 +433,36 @@ Info 83 [00:02:39.000] Files (4) class2.ts Matched by default include pattern '**/*' -Info 84 [00:02:40.000] ----------------------------------------------- -Info 85 [00:02:41.000] Running: *ensureProjectForOpenFiles* -Info 86 [00:02:42.000] Before ensureProjectForOpenFiles: -Info 87 [00:02:43.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 87 [00:02:44.000] Files (4) - -Info 87 [00:02:45.000] ----------------------------------------------- -Info 87 [00:02:46.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 87 [00:02:47.000] Files (3) - -Info 87 [00:02:48.000] ----------------------------------------------- -Info 87 [00:02:49.000] Open files: -Info 87 [00:02:50.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 87 [00:02:51.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 87 [00:02:52.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 87 [00:02:53.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 87 [00:02:54.000] After ensureProjectForOpenFiles: -Info 88 [00:02:55.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 88 [00:02:56.000] Files (4) - -Info 88 [00:02:57.000] ----------------------------------------------- -Info 88 [00:02:58.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 88 [00:02:59.000] Files (3) - -Info 88 [00:03:00.000] ----------------------------------------------- -Info 88 [00:03:01.000] Open files: -Info 88 [00:03:02.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 88 [00:03:03.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 88 [00:03:04.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 88 [00:03:05.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 82 [00:02:38.000] ----------------------------------------------- +Info 83 [00:02:39.000] Running: *ensureProjectForOpenFiles* +Info 84 [00:02:40.000] Before ensureProjectForOpenFiles: +Info 85 [00:02:41.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 85 [00:02:42.000] Files (4) + +Info 85 [00:02:43.000] ----------------------------------------------- +Info 85 [00:02:44.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 85 [00:02:45.000] Files (3) + +Info 85 [00:02:46.000] ----------------------------------------------- +Info 85 [00:02:47.000] Open files: +Info 85 [00:02:48.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 85 [00:02:49.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 85 [00:02:50.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 85 [00:02:51.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 85 [00:02:52.000] After ensureProjectForOpenFiles: +Info 86 [00:02:53.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 86 [00:02:54.000] Files (4) + +Info 86 [00:02:55.000] ----------------------------------------------- +Info 86 [00:02:56.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 86 [00:02:57.000] Files (3) + +Info 86 [00:02:58.000] ----------------------------------------------- +Info 86 [00:02:59.000] Open files: +Info 86 [00:03:00.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 86 [00:03:01.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 86 [00:03:02.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 86 [00:03:03.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -497,12 +495,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 88 [00:03:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 89 [00:03:10.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp -Info 90 [00:03:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 91 [00:03:13.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 92 [00:03:14.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp/file.d.ts -Info 93 [00:03:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 86 [00:03:07.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 87 [00:03:08.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp +Info 88 [00:03:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 89 [00:03:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 90 [00:03:12.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp/file.d.ts +Info 91 [00:03:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (0) and running //// [/user/username/projects/myproject/projects/project1/temp/file.d.ts] declare class file {} @@ -570,14 +568,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 94 [00:03:17.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 2:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info -Info 95 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info -Info 96 [00:03:19.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 97 [00:03:20.000] Scheduled: *ensureProjectForOpenFiles* -Info 98 [00:03:21.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 2:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info -Info 99 [00:03:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 100 [00:03:23.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts -Info 101 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +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 +Info 95 [00:03:18.000] Scheduled: *ensureProjectForOpenFiles* +Info 96 [00:03:19.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 2:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info +Info 97 [00:03:20.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 98 [00:03:21.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts +Info 99 [00:03:22.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/projects/project1/class3.d.ts] deleted @@ -609,12 +607,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 102 [00:03:25.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 103 [00:03:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 104 [00:03:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 105 [00:03:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 106 [00:03:29.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 107 [00:03:30.000] Files (3) +Info 100 [00:03:23.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 101 [00:03:24.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 102 [00:03:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 103 [00:03:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 104 [00:03:27.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 105 [00:03:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.d.ts /user/username/projects/myproject/projects/project2/class2.ts @@ -627,36 +625,36 @@ Info 107 [00:03:30.000] Files (3) class2.ts Matched by default include pattern '**/*' -Info 108 [00:03:31.000] ----------------------------------------------- -Info 109 [00:03:32.000] Running: *ensureProjectForOpenFiles* -Info 110 [00:03:33.000] Before ensureProjectForOpenFiles: -Info 111 [00:03:34.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 111 [00:03:35.000] Files (3) - -Info 111 [00:03:36.000] ----------------------------------------------- -Info 111 [00:03:37.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 111 [00:03:38.000] Files (3) - -Info 111 [00:03:39.000] ----------------------------------------------- -Info 111 [00:03:40.000] Open files: -Info 111 [00:03:41.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 111 [00:03:42.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 111 [00:03:43.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 111 [00:03:44.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 111 [00:03:45.000] After ensureProjectForOpenFiles: -Info 112 [00:03:46.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 112 [00:03:47.000] Files (3) - -Info 112 [00:03:48.000] ----------------------------------------------- -Info 112 [00:03:49.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 112 [00:03:50.000] Files (3) - -Info 112 [00:03:51.000] ----------------------------------------------- -Info 112 [00:03:52.000] Open files: -Info 112 [00:03:53.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 112 [00:03:54.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 112 [00:03:55.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 112 [00:03:56.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 106 [00:03:29.000] ----------------------------------------------- +Info 107 [00:03:30.000] Running: *ensureProjectForOpenFiles* +Info 108 [00:03:31.000] Before ensureProjectForOpenFiles: +Info 109 [00:03:32.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 109 [00:03:33.000] Files (3) + +Info 109 [00:03:34.000] ----------------------------------------------- +Info 109 [00:03:35.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 109 [00:03:36.000] Files (3) + +Info 109 [00:03:37.000] ----------------------------------------------- +Info 109 [00:03:38.000] Open files: +Info 109 [00:03:39.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 109 [00:03:40.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 109 [00:03:41.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 109 [00:03:42.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 109 [00:03:43.000] After ensureProjectForOpenFiles: +Info 110 [00:03:44.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 110 [00:03:45.000] Files (3) + +Info 110 [00:03:46.000] ----------------------------------------------- +Info 110 [00:03:47.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 110 [00:03:48.000] Files (3) + +Info 110 [00:03:49.000] ----------------------------------------------- +Info 110 [00:03:50.000] Open files: +Info 110 [00:03:51.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 110 [00:03:52.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 110 [00:03:53.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 110 [00:03:54.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -689,14 +687,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 112 [00:03:59.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 113 [00:04:00.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 114 [00:04:01.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 115 [00:04:02.000] Scheduled: *ensureProjectForOpenFiles* -Info 116 [00:04:03.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file -Info 117 [00:04:04.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 118 [00:04:05.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts -Info 119 [00:04:06.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 110 [00:03:57.000] FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 111 [00:03:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 112 [00:03:59.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 113 [00:04:00.000] Scheduled: *ensureProjectForOpenFiles* +Info 114 [00:04:01.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts 0:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Missing file +Info 115 [00:04:02.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 116 [00:04:03.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts +Info 117 [00:04:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/projects/project1/class3.d.ts] declare class class3 {} @@ -730,12 +728,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 120 [00:04:07.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 121 [00:04:08.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 122 [00:04:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info -Info 123 [00:04:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 5 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 124 [00:04:11.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 125 [00:04:12.000] Files (4) +Info 118 [00:04:05.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 119 [00:04:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 120 [00:04:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.d.ts 500 undefined WatchType: Closed Script info +Info 121 [00:04:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 5 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 122 [00:04:09.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 123 [00:04:10.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.d.ts /user/username/projects/myproject/projects/project1/class3.d.ts @@ -751,36 +749,36 @@ Info 125 [00:04:12.000] Files (4) class2.ts Matched by default include pattern '**/*' -Info 126 [00:04:13.000] ----------------------------------------------- -Info 127 [00:04:14.000] Running: *ensureProjectForOpenFiles* -Info 128 [00:04:15.000] Before ensureProjectForOpenFiles: -Info 129 [00:04:16.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 129 [00:04:17.000] Files (4) - -Info 129 [00:04:18.000] ----------------------------------------------- -Info 129 [00:04:19.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 129 [00:04:20.000] Files (3) - -Info 129 [00:04:21.000] ----------------------------------------------- -Info 129 [00:04:22.000] Open files: -Info 129 [00:04:23.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 129 [00:04:24.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 129 [00:04:25.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 129 [00:04:26.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 129 [00:04:27.000] After ensureProjectForOpenFiles: -Info 130 [00:04:28.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 130 [00:04:29.000] Files (4) - -Info 130 [00:04:30.000] ----------------------------------------------- -Info 130 [00:04:31.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 130 [00:04:32.000] Files (3) - -Info 130 [00:04:33.000] ----------------------------------------------- -Info 130 [00:04:34.000] Open files: -Info 130 [00:04:35.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 130 [00:04:36.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 130 [00:04:37.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 130 [00:04:38.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 124 [00:04:11.000] ----------------------------------------------- +Info 125 [00:04:12.000] Running: *ensureProjectForOpenFiles* +Info 126 [00:04:13.000] Before ensureProjectForOpenFiles: +Info 127 [00:04:14.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 127 [00:04:15.000] Files (4) + +Info 127 [00:04:16.000] ----------------------------------------------- +Info 127 [00:04:17.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 127 [00:04:18.000] Files (3) + +Info 127 [00:04:19.000] ----------------------------------------------- +Info 127 [00:04:20.000] Open files: +Info 127 [00:04:21.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 127 [00:04:22.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 127 [00:04:23.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 127 [00:04:24.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 127 [00:04:25.000] After ensureProjectForOpenFiles: +Info 128 [00:04:26.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 128 [00:04:27.000] Files (4) + +Info 128 [00:04:28.000] ----------------------------------------------- +Info 128 [00:04:29.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 128 [00:04:30.000] Files (3) + +Info 128 [00:04:31.000] ----------------------------------------------- +Info 128 [00:04:32.000] Open files: +Info 128 [00:04:33.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 128 [00:04:34.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 128 [00:04:35.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 128 [00:04:36.000] Projects: /user/username/projects/myproject/projects/project1/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-open.js b/tests/baselines/reference/tsserver/projectReferences/new-file-is-added-to-the-referenced-project-when-referenced-project-is-open.js index 457b9f61fa21b..ecbcb471f738b 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 @@ -66,9 +66,8 @@ Info 6 [00:00:39.000] Config: /user/username/projects/myproject/projects/proj } Info 7 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory Info 8 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2 1 undefined Config: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 11 [00:00:44.000] Config: /user/username/projects/myproject/projects/project1/tsconfig.json : { +Info 9 [00:00:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 10 [00:00:43.000] Config: /user/username/projects/myproject/projects/project1/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/projects/project1/class1.ts" ], @@ -78,20 +77,20 @@ Info 11 [00:00:44.000] Config: /user/username/projects/myproject/projects/proj "configFilePath": "/user/username/projects/myproject/projects/project1/tsconfig.json" } } -Info 12 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file -Info 13 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class1.ts 500 undefined WatchType: Closed Script info -Info 16 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 18 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 19 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 20 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 21 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 22 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots -Info 23 [00:00:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:57.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 25 [00:00:58.000] Files (3) +Info 11 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Config file +Info 12 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class1.ts 500 undefined WatchType: Closed Script info +Info 15 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 17 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 18 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 19 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 20 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 21 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project2/tsconfig.json WatchType: Type roots +Info 22 [00:00:55.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:56.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 24 [00:00:57.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.ts /user/username/projects/myproject/projects/project2/class2.ts @@ -104,16 +103,16 @@ Info 25 [00:00:58.000] Files (3) class2.ts Matched by default include pattern '**/*' -Info 26 [00:00:59.000] ----------------------------------------------- -Info 27 [00:01:00.000] Search path: /user/username/projects/myproject/projects/project2 -Info 28 [00:01:01.000] For info: /user/username/projects/myproject/projects/project2/tsconfig.json :: No config files found. -Info 29 [00:01:02.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 29 [00:01:03.000] Files (3) +Info 25 [00:00:58.000] ----------------------------------------------- +Info 26 [00:00:59.000] Search path: /user/username/projects/myproject/projects/project2 +Info 27 [00:01:00.000] For info: /user/username/projects/myproject/projects/project2/tsconfig.json :: No config files found. +Info 28 [00:01:01.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 28 [00:01:02.000] Files (3) -Info 29 [00:01:04.000] ----------------------------------------------- -Info 29 [00:01:05.000] Open files: -Info 29 [00:01:06.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 29 [00:01:07.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 28 [00:01:03.000] ----------------------------------------------- +Info 28 [00:01:04.000] Open files: +Info 28 [00:01:05.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 28 [00:01:06.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json After request PolledWatches:: @@ -140,11 +139,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 29 [00:01:08.000] response: +Info 28 [00:01:07.000] response: { "responseRequired": false } -Info 30 [00:01:09.000] request: +Info 29 [00:01:08.000] request: { "seq": 0, "type": "request", @@ -179,21 +178,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 31 [00:01:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/projects/project1/class1.ts 500 undefined WatchType: Closed Script info -Info 32 [00:01:11.000] Search path: /user/username/projects/myproject/projects/project1 -Info 33 [00:01:12.000] For info: /user/username/projects/myproject/projects/project1/class1.ts :: Config file name: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 34 [00:01:13.000] Creating configuration project /user/username/projects/myproject/projects/project1/tsconfig.json -Info 35 [00:01:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 37 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info 38 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info 39 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info 40 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info 41 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info 42 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots -Info 43 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [00:01:23.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 45 [00:01:24.000] Files (2) +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 +Info 33 [00:01:12.000] Creating configuration project /user/username/projects/myproject/projects/project1/tsconfig.json +Info 34 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 35 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots +Info 36 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots +Info 37 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots +Info 38 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots +Info 39 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots +Info 40 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Type roots +Info 41 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:21.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 43 [00:01:22.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.ts @@ -203,22 +201,22 @@ Info 45 [00:01:24.000] Files (2) class1.ts Matched by default include pattern '**/*' -Info 46 [00:01:25.000] ----------------------------------------------- -Info 47 [00:01:26.000] Search path: /user/username/projects/myproject/projects/project1 -Info 48 [00:01:27.000] For info: /user/username/projects/myproject/projects/project1/tsconfig.json :: No config files found. -Info 49 [00:01:28.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 49 [00:01:29.000] Files (3) - -Info 49 [00:01:30.000] ----------------------------------------------- -Info 49 [00:01:31.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 49 [00:01:32.000] Files (2) - -Info 49 [00:01:33.000] ----------------------------------------------- -Info 49 [00:01:34.000] Open files: -Info 49 [00:01:35.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 49 [00:01:36.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 49 [00:01:37.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 49 [00:01:38.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json,/user/username/projects/myproject/projects/project1/tsconfig.json +Info 44 [00:01:23.000] ----------------------------------------------- +Info 45 [00:01:24.000] Search path: /user/username/projects/myproject/projects/project1 +Info 46 [00:01:25.000] For info: /user/username/projects/myproject/projects/project1/tsconfig.json :: No config files found. +Info 47 [00:01:26.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 47 [00:01:27.000] Files (3) + +Info 47 [00:01:28.000] ----------------------------------------------- +Info 47 [00:01:29.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 47 [00:01:30.000] Files (2) + +Info 47 [00:01:31.000] ----------------------------------------------- +Info 47 [00:01:32.000] Open files: +Info 47 [00:01:33.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 47 [00:01:34.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 47 [00:01:35.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 47 [00:01:36.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json,/user/username/projects/myproject/projects/project1/tsconfig.json After request PolledWatches:: @@ -245,16 +243,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 49 [00:01:39.000] response: +Info 47 [00:01:37.000] response: { "responseRequired": false } -Info 50 [00:01:42.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 51 [00:01:43.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 52 [00:01:44.000] Scheduled: *ensureProjectForOpenFiles* -Info 53 [00:01:45.000] Scheduled: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 54 [00:01:46.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 55 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 48 [00:01:40.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 49 [00:01:41.000] Scheduled: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 50 [00:01:42.000] Scheduled: *ensureProjectForOpenFiles* +Info 51 [00:01:43.000] Scheduled: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 52 [00:01:44.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 53 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/projects/project1/class3.ts] class class3 {} @@ -284,12 +282,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 56 [00:01:48.000] Running: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 57 [00:01:49.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 58 [00:01:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/projects/project1/class3.ts 500 undefined WatchType: Closed Script info -Info 59 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 60 [00:01:52.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 61 [00:01:53.000] Files (4) +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 +Info 57 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project2/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 58 [00:01:50.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 59 [00:01:51.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.ts /user/username/projects/myproject/projects/project1/class3.ts @@ -305,12 +303,12 @@ Info 61 [00:01:53.000] Files (4) class2.ts Matched by default include pattern '**/*' -Info 62 [00:01:54.000] ----------------------------------------------- -Info 63 [00:01:55.000] Running: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 64 [00:01:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json -Info 65 [00:01:57.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 66 [00:01:58.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 67 [00:01:59.000] Files (3) +Info 60 [00:01:52.000] ----------------------------------------------- +Info 61 [00:01:53.000] Running: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 62 [00:01:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json +Info 63 [00:01:55.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/projects/project1/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 64 [00:01:56.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 65 [00:01:57.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/projects/project1/class1.ts /user/username/projects/myproject/projects/project1/class3.ts @@ -323,36 +321,36 @@ Info 67 [00:01:59.000] Files (3) class3.ts Matched by default include pattern '**/*' -Info 68 [00:02:00.000] ----------------------------------------------- -Info 69 [00:02:01.000] Running: *ensureProjectForOpenFiles* -Info 70 [00:02:02.000] Before ensureProjectForOpenFiles: -Info 71 [00:02:03.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 71 [00:02:04.000] Files (4) - -Info 71 [00:02:05.000] ----------------------------------------------- -Info 71 [00:02:06.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 71 [00:02:07.000] Files (3) - -Info 71 [00:02:08.000] ----------------------------------------------- -Info 71 [00:02:09.000] Open files: -Info 71 [00:02:10.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 71 [00:02:11.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 71 [00:02:12.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 71 [00:02:13.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json,/user/username/projects/myproject/projects/project1/tsconfig.json -Info 71 [00:02:14.000] After ensureProjectForOpenFiles: -Info 72 [00:02:15.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) -Info 72 [00:02:16.000] Files (4) - -Info 72 [00:02:17.000] ----------------------------------------------- -Info 72 [00:02:18.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) -Info 72 [00:02:19.000] Files (3) - -Info 72 [00:02:20.000] ----------------------------------------------- -Info 72 [00:02:21.000] Open files: -Info 72 [00:02:22.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined -Info 72 [00:02:23.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json -Info 72 [00:02:24.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined -Info 72 [00:02:25.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json,/user/username/projects/myproject/projects/project1/tsconfig.json +Info 66 [00:01:58.000] ----------------------------------------------- +Info 67 [00:01:59.000] Running: *ensureProjectForOpenFiles* +Info 68 [00:02:00.000] Before ensureProjectForOpenFiles: +Info 69 [00:02:01.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 69 [00:02:02.000] Files (4) + +Info 69 [00:02:03.000] ----------------------------------------------- +Info 69 [00:02:04.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 69 [00:02:05.000] Files (3) + +Info 69 [00:02:06.000] ----------------------------------------------- +Info 69 [00:02:07.000] Open files: +Info 69 [00:02:08.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 69 [00:02:09.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 69 [00:02:10.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 69 [00:02:11.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json,/user/username/projects/myproject/projects/project1/tsconfig.json +Info 69 [00:02:12.000] After ensureProjectForOpenFiles: +Info 70 [00:02:13.000] Project '/user/username/projects/myproject/projects/project2/tsconfig.json' (Configured) +Info 70 [00:02:14.000] Files (4) + +Info 70 [00:02:15.000] ----------------------------------------------- +Info 70 [00:02:16.000] Project '/user/username/projects/myproject/projects/project1/tsconfig.json' (Configured) +Info 70 [00:02:17.000] Files (3) + +Info 70 [00:02:18.000] ----------------------------------------------- +Info 70 [00:02:19.000] Open files: +Info 70 [00:02:20.000] FileName: /user/username/projects/myproject/projects/project2/class2.ts ProjectRootPath: undefined +Info 70 [00:02:21.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json +Info 70 [00:02:22.000] FileName: /user/username/projects/myproject/projects/project1/class1.ts ProjectRootPath: undefined +Info 70 [00:02:23.000] Projects: /user/username/projects/myproject/projects/project2/tsconfig.json,/user/username/projects/myproject/projects/project1/tsconfig.json After checking timeout queue length (3) and running PolledWatches:: @@ -381,12 +379,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 72 [00:02:29.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 73 [00:02:30.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp -Info 74 [00:02:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 75 [00:02:33.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 76 [00:02:34.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp/file.d.ts -Info 77 [00:02:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 70 [00:02:27.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 71 [00:02:28.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp +Info 72 [00:02:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 73 [00:02:31.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +Info 74 [00:02:32.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected excluded file: /user/username/projects/myproject/projects/project1/temp/file.d.ts +Info 75 [00:02:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/temp/file.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (0) and running //// [/user/username/projects/myproject/projects/project1/temp/file.d.ts] declare class file {} @@ -446,9 +444,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/projects/project1: {} -Info 78 [00:02:38.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory -Info 79 [00:02:39.000] Project: /user/username/projects/myproject/projects/project1/tsconfig.json Detected output file: /user/username/projects/myproject/projects/project1/class3.d.ts -Info 80 [00:02:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/projects/project1/class3.d.ts :: WatchInfo: /user/username/projects/myproject/projects/project1 1 undefined Config: /user/username/projects/myproject/projects/project1/tsconfig.json WatchType: Wild card directory +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 Before checking timeout queue length (0) and running //// [/user/username/projects/myproject/projects/project1/class3.d.ts] declare class class3 {} diff --git a/tests/baselines/reference/tsserver/projectReferences/project-is-directly-referenced-by-solution.js b/tests/baselines/reference/tsserver/projectReferences/project-is-directly-referenced-by-solution.js index af2dd410b01f3..ef9a041f6e9d4 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 @@ -17,9 +17,8 @@ Info 6 [00:00:59.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 7 [00:01:00.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [00:01:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 9 [00:01:02.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 7 [00:01:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 8 [00:01:01.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -31,29 +30,28 @@ Info 9 [00:01:02.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 10 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 11 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 12 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 13 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 14 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 15 [00:01:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:01:09.000] Different program with same set of files -Info 17 [00:01:10.000] event: +Info 9 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 10 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 11 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 12 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 13 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 14 [00:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:01:08.000] Different program with same set of files +Info 16 [00:01:09.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 18 [00:01:11.000] event: +Info 17 [00:01:10.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":0,"tsSize":0,"tsx":0,"tsxSize":0,"dts":0,"dtsSize":0,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":true,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 19 [00:01:12.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 20 [00:01:13.000] event: +Info 18 [00:01:11.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 19 [00:01:12.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 21 [00:01:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 22 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 23 [00:01:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 24 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 25 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 26 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 27 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 28 [00:01:21.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 29 [00:01:22.000] Files (3) +Info 20 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 21 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 22 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 23 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 24 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 25 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 26 [00:01:19.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 27 [00:01:20.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -67,27 +65,27 @@ Info 29 [00:01:22.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 30 [00:01:23.000] ----------------------------------------------- -Info 31 [00:01:24.000] event: +Info 28 [00:01:21.000] ----------------------------------------------- +Info 29 [00:01:22.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 32 [00:01:25.000] event: +Info 30 [00:01:23.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"75d5ba36c0a162a329bf40235b10e96d2d129b95469e1f02c08da775fb38a2b4","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":77,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"other","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 33 [00:01:26.000] event: +Info 31 [00:01:24.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 34 [00:01:27.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 34 [00:01:28.000] Files (0) - -Info 34 [00:01:29.000] ----------------------------------------------- -Info 34 [00:01:30.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 34 [00:01:31.000] Files (3) - -Info 34 [00:01:32.000] ----------------------------------------------- -Info 34 [00:01:33.000] Open files: -Info 34 [00:01:34.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 34 [00:01:35.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 34 [00:01:36.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 34 [00:01:37.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 34 [00:01:38.000] request: +Info 32 [00:01:25.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 32 [00:01:26.000] Files (0) + +Info 32 [00:01:27.000] ----------------------------------------------- +Info 32 [00:01:28.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 32 [00:01:29.000] Files (3) + +Info 32 [00:01:30.000] ----------------------------------------------- +Info 32 [00:01:31.000] Open files: +Info 32 [00:01:32.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 32 [00:01:33.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 32 [00:01:34.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 32 [00:01:35.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 32 [00:01:36.000] request: { "command": "geterr", "arguments": { @@ -191,7 +189,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 35 [00:01:39.000] response: +Info 33 [00:01:37.000] response: { "responseRequired": false } @@ -215,7 +213,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 36 [00:01:40.000] event: +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 @@ -257,7 +255,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 37 [00:01:41.000] event: +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) @@ -299,9 +297,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 38 [00:01:42.000] event: +Info 36 [00:01:40.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 39 [00:01:43.000] event: +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) @@ -323,15 +321,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 40 [00:01:44.000] Search path: /dummy -Info 41 [00:01:45.000] For info: /dummy/dummy.ts :: No config files found. -Info 42 [00:01:46.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 43 [00:01:47.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 44 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 45 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 46 [00:01:50.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 47 [00:01:51.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 48 [00:01:52.000] Files (2) +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* +Info 41 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 42 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 43 [00:01:47.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:48.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 45 [00:01:49.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -341,61 +338,61 @@ Info 48 [00:01:52.000] Files (2) dummy.ts Root file specified for compilation -Info 49 [00:01:53.000] ----------------------------------------------- -Info 50 [00:01:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 50 [00:01:55.000] Files (0) - -Info 50 [00:01:56.000] ----------------------------------------------- -Info 50 [00:01:57.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 50 [00:01:58.000] Files (3) - -Info 50 [00:01:59.000] ----------------------------------------------- -Info 50 [00:02:00.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 50 [00:02:01.000] Files (2) - -Info 50 [00:02:02.000] ----------------------------------------------- -Info 50 [00:02:03.000] Open files: -Info 50 [00:02:04.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 50 [00:02:05.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 50 [00:02:06.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 50 [00:02:07.000] Projects: /dev/null/inferredProject1* -Info 50 [00:02:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 51 [00:02:09.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 51 [00:02:10.000] Files (0) - -Info 51 [00:02:11.000] ----------------------------------------------- -Info 51 [00:02:12.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 51 [00:02:13.000] Files (3) - -Info 51 [00:02:14.000] ----------------------------------------------- -Info 51 [00:02:15.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 51 [00:02:16.000] Files (2) - -Info 51 [00:02:17.000] ----------------------------------------------- -Info 51 [00:02:18.000] Open files: -Info 51 [00:02:19.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 51 [00:02:20.000] Projects: /dev/null/inferredProject1* -Info 51 [00:02:21.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 52 [00:02:22.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 52 [00:02:23.000] Files (0) - -Info 52 [00:02:24.000] ----------------------------------------------- -Info 52 [00:02:25.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 52 [00:02:26.000] Files (3) - -Info 52 [00:02:27.000] ----------------------------------------------- -Info 52 [00:02:28.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 52 [00:02:29.000] Files (2) - -Info 52 [00:02:30.000] ----------------------------------------------- -Info 52 [00:02:31.000] Open files: -Info 52 [00:02:32.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 53 [00:02:33.000] Search path: /dummy -Info 54 [00:02:34.000] For info: /dummy/dummy.ts :: No config files found. -Info 55 [00:02:35.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 56 [00:02:36.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 57 [00:02:37.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 58 [00:02:38.000] Files (2) +Info 46 [00:01:50.000] ----------------------------------------------- +Info 47 [00:01:51.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 47 [00:01:52.000] Files (0) + +Info 47 [00:01:53.000] ----------------------------------------------- +Info 47 [00:01:54.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 47 [00:01:55.000] Files (3) + +Info 47 [00:01:56.000] ----------------------------------------------- +Info 47 [00:01:57.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 47 [00:01:58.000] Files (2) + +Info 47 [00:01:59.000] ----------------------------------------------- +Info 47 [00:02:00.000] Open files: +Info 47 [00:02:01.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 47 [00:02:02.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 47 [00:02:03.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 47 [00:02:04.000] Projects: /dev/null/inferredProject1* +Info 47 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 48 [00:02:06.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 48 [00:02:07.000] Files (0) + +Info 48 [00:02:08.000] ----------------------------------------------- +Info 48 [00:02:09.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 48 [00:02:10.000] Files (3) + +Info 48 [00:02:11.000] ----------------------------------------------- +Info 48 [00:02:12.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 48 [00:02:13.000] Files (2) + +Info 48 [00:02:14.000] ----------------------------------------------- +Info 48 [00:02:15.000] Open files: +Info 48 [00:02:16.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 48 [00:02:17.000] Projects: /dev/null/inferredProject1* +Info 48 [00:02:18.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 49 [00:02:19.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 49 [00:02:20.000] Files (0) + +Info 49 [00:02:21.000] ----------------------------------------------- +Info 49 [00:02:22.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 49 [00:02:23.000] Files (3) + +Info 49 [00:02:24.000] ----------------------------------------------- +Info 49 [00:02:25.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 49 [00:02:26.000] Files (2) + +Info 49 [00:02:27.000] ----------------------------------------------- +Info 49 [00:02:28.000] Open files: +Info 49 [00:02:29.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:30.000] Search path: /dummy +Info 51 [00:02:31.000] For info: /dummy/dummy.ts :: No config files found. +Info 52 [00:02:32.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 53 [00:02:33.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 54 [00:02:34.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 55 [00:02:35.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -405,20 +402,20 @@ Info 58 [00:02:38.000] Files (2) dummy.ts Root file specified for compilation -Info 59 [00:02:39.000] ----------------------------------------------- -Info 60 [00:02:40.000] `remove Project:: -Info 61 [00:02:41.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 62 [00:02:42.000] Files (0) +Info 56 [00:02:36.000] ----------------------------------------------- +Info 57 [00:02:37.000] `remove Project:: +Info 58 [00:02:38.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 59 [00:02:39.000] Files (0) -Info 63 [00:02:43.000] ----------------------------------------------- -Info 64 [00:02:44.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 65 [00:02:45.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 66 [00:02:46.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 67 [00:02:47.000] `remove Project:: -Info 68 [00:02:48.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 69 [00:02:49.000] Files (3) +Info 60 [00:02:40.000] ----------------------------------------------- +Info 61 [00:02:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 62 [00:02:42.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 63 [00:02:43.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 64 [00:02:44.000] `remove Project:: +Info 65 [00:02:45.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 66 [00:02:46.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -432,28 +429,28 @@ Info 69 [00:02:49.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 70 [00:02:50.000] ----------------------------------------------- -Info 71 [00:02:51.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 72 [00:02:52.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 73 [00:02:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 74 [00:02:54.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 75 [00:02:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 76 [00:02:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 77 [00:02:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 78 [00:02:58.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 78 [00:02:59.000] Files (2) - -Info 78 [00:03:00.000] ----------------------------------------------- -Info 78 [00:03:01.000] Open files: -Info 78 [00:03:02.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 78 [00:03:03.000] Projects: /dev/null/inferredProject1* -Info 78 [00:03:04.000] Search path: /user/username/projects/myproject/src -Info 79 [00:03:05.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 80 [00:03:06.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 81 [00:03:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 82 [00:03:08.000] event: +Info 67 [00:02:47.000] ----------------------------------------------- +Info 68 [00:02:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 69 [00:02:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 70 [00:02:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 71 [00:02:51.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 72 [00:02:52.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 73 [00:02:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 74 [00:02:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 75 [00:02:55.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 75 [00:02:56.000] Files (2) + +Info 75 [00:02:57.000] ----------------------------------------------- +Info 75 [00:02:58.000] Open files: +Info 75 [00:02:59.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 75 [00:03:00.000] Projects: /dev/null/inferredProject1* +Info 75 [00:03:01.000] Search path: /user/username/projects/myproject/src +Info 76 [00:03:02.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 77 [00:03:03.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 78 [00:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 79 [00:03:05.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 83 [00:03:09.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 80 [00:03:06.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -465,9 +462,8 @@ Info 83 [00:03:09.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 84 [00:03:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 85 [00:03:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 86 [00:03:12.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 81 [00:03:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 82 [00:03:08.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -479,26 +475,25 @@ Info 86 [00:03:12.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 87 [00:03:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 88 [00:03:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 89 [00:03:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 90 [00:03:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 91 [00:03:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 92 [00:03:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 93 [00:03:19.000] Different program with same set of files -Info 94 [00:03:20.000] event: +Info 83 [00:03:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 84 [00:03:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 85 [00:03:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 86 [00:03:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 87 [00:03:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 88 [00:03:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 89 [00:03:15.000] Different program with same set of files +Info 90 [00:03:16.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 95 [00:03:21.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 96 [00:03:22.000] event: +Info 91 [00:03:17.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 92 [00:03:18.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 97 [00:03:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 98 [00:03:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 99 [00:03:25.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 100 [00:03:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 101 [00:03:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 102 [00:03:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 103 [00:03:29.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 104 [00:03:30.000] Files (3) +Info 93 [00:03:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 94 [00:03:20.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 95 [00:03:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 96 [00:03:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 97 [00:03:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 98 [00:03:24.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 99 [00:03:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -512,51 +507,51 @@ Info 104 [00:03:30.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 105 [00:03:31.000] ----------------------------------------------- -Info 106 [00:03:32.000] event: +Info 100 [00:03:26.000] ----------------------------------------------- +Info 101 [00:03:27.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 107 [00:03:33.000] event: +Info 102 [00:03:28.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 108 [00:03:34.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 108 [00:03:35.000] Files (0) - -Info 108 [00:03:36.000] ----------------------------------------------- -Info 108 [00:03:37.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 108 [00:03:38.000] Files (3) - -Info 108 [00:03:39.000] ----------------------------------------------- -Info 108 [00:03:40.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 108 [00:03:41.000] Files (2) - -Info 108 [00:03:42.000] ----------------------------------------------- -Info 108 [00:03:43.000] Open files: -Info 108 [00:03:44.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 108 [00:03:45.000] Projects: /dev/null/inferredProject1* -Info 108 [00:03:46.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 108 [00:03:47.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 108 [00:03:48.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 109 [00:03:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 109 [00:03:50.000] Files (0) - -Info 109 [00:03:51.000] ----------------------------------------------- -Info 109 [00:03:52.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 109 [00:03:53.000] Files (3) - -Info 109 [00:03:54.000] ----------------------------------------------- -Info 109 [00:03:55.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 109 [00:03:56.000] Files (2) - -Info 109 [00:03:57.000] ----------------------------------------------- -Info 109 [00:03:58.000] Open files: -Info 109 [00:03:59.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 109 [00:04:00.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 109 [00:04:01.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 110 [00:04:02.000] Search path: /dummy -Info 111 [00:04:03.000] For info: /dummy/dummy.ts :: No config files found. -Info 112 [00:04:04.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 113 [00:04:05.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 114 [00:04:06.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 115 [00:04:07.000] Files (2) +Info 103 [00:03:29.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 103 [00:03:30.000] Files (0) + +Info 103 [00:03:31.000] ----------------------------------------------- +Info 103 [00:03:32.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 103 [00:03:33.000] Files (3) + +Info 103 [00:03:34.000] ----------------------------------------------- +Info 103 [00:03:35.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 103 [00:03:36.000] Files (2) + +Info 103 [00:03:37.000] ----------------------------------------------- +Info 103 [00:03:38.000] Open files: +Info 103 [00:03:39.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 103 [00:03:40.000] Projects: /dev/null/inferredProject1* +Info 103 [00:03:41.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 103 [00:03:42.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 103 [00:03:43.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 104 [00:03:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 104 [00:03:45.000] Files (0) + +Info 104 [00:03:46.000] ----------------------------------------------- +Info 104 [00:03:47.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 104 [00:03:48.000] Files (3) + +Info 104 [00:03:49.000] ----------------------------------------------- +Info 104 [00:03:50.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 104 [00:03:51.000] Files (2) + +Info 104 [00:03:52.000] ----------------------------------------------- +Info 104 [00:03:53.000] Open files: +Info 104 [00:03:54.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 104 [00:03:55.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 104 [00:03:56.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 105 [00:03:57.000] Search path: /dummy +Info 106 [00:03:58.000] For info: /dummy/dummy.ts :: No config files found. +Info 107 [00:03:59.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 108 [00:04:00.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 109 [00:04:01.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 110 [00:04:02.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -566,38 +561,38 @@ Info 115 [00:04:07.000] Files (2) dummy.ts Root file specified for compilation -Info 116 [00:04:08.000] ----------------------------------------------- -Info 117 [00:04:09.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 117 [00:04:10.000] Files (0) - -Info 117 [00:04:11.000] ----------------------------------------------- -Info 117 [00:04:12.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 117 [00:04:13.000] Files (3) - -Info 117 [00:04:14.000] ----------------------------------------------- -Info 117 [00:04:15.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 117 [00:04:16.000] Files (2) - -Info 117 [00:04:17.000] ----------------------------------------------- -Info 117 [00:04:18.000] Open files: -Info 117 [00:04:19.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 117 [00:04:20.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 117 [00:04:21.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 117 [00:04:22.000] Projects: /dev/null/inferredProject1* -Info 117 [00:04:23.000] reload projects. -Info 118 [00:04:24.000] Scheduled: /dev/null/inferredProject1* -Info 119 [00:04:25.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json -Info 120 [00:04:26.000] Scheduled: *ensureProjectForOpenFiles* -Info 121 [00:04:27.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one -Info 122 [00:04:28.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 123 [00:04:29.000] Search path: /user/username/projects/myproject/src -Info 124 [00:04:30.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 125 [00:04:31.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 126 [00:04:32.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 127 [00:04:33.000] Reloading configured project /user/username/projects/myproject/tsconfig.json -Info 128 [00:04:34.000] event: +Info 111 [00:04:03.000] ----------------------------------------------- +Info 112 [00:04:04.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 112 [00:04:05.000] Files (0) + +Info 112 [00:04:06.000] ----------------------------------------------- +Info 112 [00:04:07.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 112 [00:04:08.000] Files (3) + +Info 112 [00:04:09.000] ----------------------------------------------- +Info 112 [00:04:10.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 112 [00:04:11.000] Files (2) + +Info 112 [00:04:12.000] ----------------------------------------------- +Info 112 [00:04:13.000] Open files: +Info 112 [00:04:14.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 112 [00:04:15.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 112 [00:04:16.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 112 [00:04:17.000] Projects: /dev/null/inferredProject1* +Info 112 [00:04:18.000] reload projects. +Info 113 [00:04:19.000] Scheduled: /dev/null/inferredProject1* +Info 114 [00:04:20.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json +Info 115 [00:04:21.000] Scheduled: *ensureProjectForOpenFiles* +Info 116 [00:04:22.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one +Info 117 [00:04:23.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 118 [00:04:24.000] Search path: /user/username/projects/myproject/src +Info 119 [00:04:25.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 120 [00:04:26.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 121 [00:04:27.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 122 [00:04:28.000] Reloading configured project /user/username/projects/myproject/tsconfig.json +Info 123 [00:04:29.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"User requested reload projects"}} -Info 129 [00:04:35.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 124 [00:04:30.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -609,9 +604,8 @@ Info 129 [00:04:35.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 130 [00:04:36.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 131 [00:04:37.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 132 [00:04:38.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 125 [00:04:31.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 126 [00:04:32.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -623,75 +617,74 @@ Info 132 [00:04:38.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 133 [00:04:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 134 [00:04:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 135 [00:04:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 136 [00:04:42.000] Different program with same set of files -Info 137 [00:04:43.000] event: +Info 127 [00:04:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 128 [00:04:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 129 [00:04:35.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 130 [00:04:36.000] Different program with same set of files +Info 131 [00:04:37.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 138 [00:04:44.000] event: +Info 132 [00:04:38.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig.json","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 139 [00:04:45.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 140 [00:04:46.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 141 [00:04:47.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json -Info 142 [00:04:48.000] event: +Info 133 [00:04:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 134 [00:04:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 135 [00:04:41.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json +Info 136 [00:04:42.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"User requested reload projects"}} -Info 143 [00:04:49.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 144 [00:04:50.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 145 [00:04:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 146 [00:04:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 147 [00:04:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 148 [00:04:54.000] Different program with same set of files -Info 149 [00:04:55.000] event: +Info 137 [00:04:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 138 [00:04:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 139 [00:04:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 140 [00:04:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 141 [00:04:47.000] Different program with same set of files +Info 142 [00:04:48.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 150 [00:04:56.000] event: +Info 143 [00:04:49.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig-src.json","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 151 [00:04:57.000] Search path: /dummy -Info 152 [00:04:58.000] For info: /dummy/dummy.ts :: No config files found. -Info 153 [00:04:59.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 154 [00:05:00.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 155 [00:05:01.000] Before ensureProjectForOpenFiles: -Info 156 [00:05:02.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 156 [00:05:03.000] Files (0) - -Info 156 [00:05:04.000] ----------------------------------------------- -Info 156 [00:05:05.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 156 [00:05:06.000] Files (3) - -Info 156 [00:05:07.000] ----------------------------------------------- -Info 156 [00:05:08.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 156 [00:05:09.000] Files (2) - -Info 156 [00:05:10.000] ----------------------------------------------- -Info 156 [00:05:11.000] Open files: -Info 156 [00:05:12.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 156 [00:05:13.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 156 [00:05:14.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 156 [00:05:15.000] Projects: /dev/null/inferredProject1* -Info 156 [00:05:16.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 157 [00:05:17.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 158 [00:05:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 159 [00:05:19.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 160 [00:05:20.000] Different program with same set of files -Info 161 [00:05:21.000] After ensureProjectForOpenFiles: -Info 162 [00:05:22.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 162 [00:05:23.000] Files (0) - -Info 162 [00:05:24.000] ----------------------------------------------- -Info 162 [00:05:25.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 162 [00:05:26.000] Files (3) - -Info 162 [00:05:27.000] ----------------------------------------------- -Info 162 [00:05:28.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 162 [00:05:29.000] Files (2) - -Info 162 [00:05:30.000] ----------------------------------------------- -Info 162 [00:05:31.000] Open files: -Info 162 [00:05:32.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 162 [00:05:33.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 162 [00:05:34.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 162 [00:05:35.000] Projects: /dev/null/inferredProject1* -Info 162 [00:05:36.000] request: +Info 144 [00:04:50.000] Search path: /dummy +Info 145 [00:04:51.000] For info: /dummy/dummy.ts :: No config files found. +Info 146 [00:04:52.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 147 [00:04:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 148 [00:04:54.000] Before ensureProjectForOpenFiles: +Info 149 [00:04:55.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 149 [00:04:56.000] Files (0) + +Info 149 [00:04:57.000] ----------------------------------------------- +Info 149 [00:04:58.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 149 [00:04:59.000] Files (3) + +Info 149 [00:05:00.000] ----------------------------------------------- +Info 149 [00:05:01.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 149 [00:05:02.000] Files (2) + +Info 149 [00:05:03.000] ----------------------------------------------- +Info 149 [00:05:04.000] Open files: +Info 149 [00:05:05.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 149 [00:05:06.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 149 [00:05:07.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 149 [00:05:08.000] Projects: /dev/null/inferredProject1* +Info 149 [00:05:09.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 150 [00:05:10.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 151 [00:05:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 152 [00:05:12.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 153 [00:05:13.000] Different program with same set of files +Info 154 [00:05:14.000] After ensureProjectForOpenFiles: +Info 155 [00:05:15.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 155 [00:05:16.000] Files (0) + +Info 155 [00:05:17.000] ----------------------------------------------- +Info 155 [00:05:18.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 155 [00:05:19.000] Files (3) + +Info 155 [00:05:20.000] ----------------------------------------------- +Info 155 [00:05:21.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 155 [00:05:22.000] Files (2) + +Info 155 [00:05:23.000] ----------------------------------------------- +Info 155 [00:05:24.000] Open files: +Info 155 [00:05:25.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 155 [00:05:26.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 155 [00:05:27.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 155 [00:05:28.000] Projects: /dev/null/inferredProject1* +Info 155 [00:05:29.000] request: { "command": "references", "arguments": { @@ -724,9 +717,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 163 [00:05:37.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig-src.json -Info 164 [00:05:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts 500 undefined WatchType: Closed Script info -Info 165 [00:05:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts.map 500 undefined WatchType: Closed Script info +Info 156 [00:05:30.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig-src.json +Info 157 [00:05:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts 500 undefined WatchType: Closed Script info +Info 158 [00:05:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -753,7 +746,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 166 [00:05:40.000] response: +Info 159 [00:05:33.000] response: { "response": { "refs": [ @@ -830,43 +823,43 @@ Info 166 [00:05:40.000] response: }, "responseRequired": true } -Info 167 [00:05:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 168 [00:05:42.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 168 [00:05:43.000] Files (0) - -Info 168 [00:05:44.000] ----------------------------------------------- -Info 168 [00:05:45.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 168 [00:05:46.000] Files (3) - -Info 168 [00:05:47.000] ----------------------------------------------- -Info 168 [00:05:48.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 168 [00:05:49.000] Files (2) - -Info 168 [00:05:50.000] ----------------------------------------------- -Info 168 [00:05:51.000] Open files: -Info 168 [00:05:52.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 168 [00:05:53.000] Projects: /dev/null/inferredProject1* -Info 168 [00:05:54.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 169 [00:05:55.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 169 [00:05:56.000] Files (0) - -Info 169 [00:05:57.000] ----------------------------------------------- -Info 169 [00:05:58.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 169 [00:05:59.000] Files (3) - -Info 169 [00:06:00.000] ----------------------------------------------- -Info 169 [00:06:01.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 169 [00:06:02.000] Files (2) - -Info 169 [00:06:03.000] ----------------------------------------------- -Info 169 [00:06:04.000] Open files: -Info 169 [00:06:05.000] Search path: /user/username/projects/myproject/indirect3 -Info 170 [00:06:06.000] For info: /user/username/projects/myproject/indirect3/main.ts :: Config file name: /user/username/projects/myproject/indirect3/tsconfig.json -Info 171 [00:06:07.000] Creating configuration project /user/username/projects/myproject/indirect3/tsconfig.json -Info 172 [00:06:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Config file -Info 173 [00:06:09.000] event: +Info 160 [00:05:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 161 [00:05:35.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 161 [00:05:36.000] Files (0) + +Info 161 [00:05:37.000] ----------------------------------------------- +Info 161 [00:05:38.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 161 [00:05:39.000] Files (3) + +Info 161 [00:05:40.000] ----------------------------------------------- +Info 161 [00:05:41.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 161 [00:05:42.000] Files (2) + +Info 161 [00:05:43.000] ----------------------------------------------- +Info 161 [00:05:44.000] Open files: +Info 161 [00:05:45.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 161 [00:05:46.000] Projects: /dev/null/inferredProject1* +Info 161 [00:05:47.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 162 [00:05:48.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 162 [00:05:49.000] Files (0) + +Info 162 [00:05:50.000] ----------------------------------------------- +Info 162 [00:05:51.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 162 [00:05:52.000] Files (3) + +Info 162 [00:05:53.000] ----------------------------------------------- +Info 162 [00:05:54.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 162 [00:05:55.000] Files (2) + +Info 162 [00:05:56.000] ----------------------------------------------- +Info 162 [00:05:57.000] Open files: +Info 162 [00:05:58.000] Search path: /user/username/projects/myproject/indirect3 +Info 163 [00:05:59.000] For info: /user/username/projects/myproject/indirect3/main.ts :: Config file name: /user/username/projects/myproject/indirect3/tsconfig.json +Info 164 [00:06:00.000] Creating configuration project /user/username/projects/myproject/indirect3/tsconfig.json +Info 165 [00:06:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Config file +Info 166 [00:06:02.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/indirect3/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/indirect3/main.ts to open"}} -Info 174 [00:06:10.000] Config: /user/username/projects/myproject/indirect3/tsconfig.json : { +Info 167 [00:06:03.000] Config: /user/username/projects/myproject/indirect3/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/indirect3/main.ts" ], @@ -875,20 +868,19 @@ Info 174 [00:06:10.000] Config: /user/username/projects/myproject/indirect3/tsc "configFilePath": "/user/username/projects/myproject/indirect3/tsconfig.json" } } -Info 175 [00:06:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory -Info 176 [00:06:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory -Info 177 [00:06:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 178 [00:06:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json -Info 179 [00:06:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info -Info 180 [00:06:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations -Info 181 [00:06:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations -Info 182 [00:06:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info 183 [00:06:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info 184 [00:06:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info 185 [00:06:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info 186 [00:06:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 187 [00:06:23.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) -Info 188 [00:06:24.000] Files (4) +Info 168 [00:06:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory +Info 169 [00:06:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory +Info 170 [00:06:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json +Info 171 [00:06:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info +Info 172 [00:06:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations +Info 173 [00:06:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations +Info 174 [00:06:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots +Info 175 [00:06:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots +Info 176 [00:06:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots +Info 177 [00:06:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots +Info 178 [00:06:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 179 [00:06:15.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) +Info 180 [00:06:16.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/target/src/helpers/functions.d.ts /user/username/projects/myproject/target/src/main.d.ts @@ -904,26 +896,26 @@ Info 188 [00:06:24.000] Files (4) main.ts Matched by default include pattern '**/*' -Info 189 [00:06:25.000] ----------------------------------------------- -Info 190 [00:06:26.000] event: +Info 181 [00:06:17.000] ----------------------------------------------- +Info 182 [00:06:18.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/indirect3/tsconfig.json"}} -Info 191 [00:06:27.000] event: +Info 183 [00:06:19.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"5b0817f69b6871821661b976aa73f4f2533b37c5f4b920541094c2d727d0dc39","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":57,"tsx":0,"tsxSize":0,"dts":3,"dtsSize":494,"deferred":0,"deferredSize":0},"compilerOptions":{"baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 192 [00:06:28.000] event: +Info 184 [00:06:20.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/indirect3/main.ts","configFile":"/user/username/projects/myproject/indirect3/tsconfig.json","diagnostics":[]}} -Info 193 [00:06:29.000] `remove Project:: -Info 194 [00:06:30.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 195 [00:06:31.000] Files (0) +Info 185 [00:06:21.000] `remove Project:: +Info 186 [00:06:22.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 187 [00:06:23.000] Files (0) -Info 196 [00:06:32.000] ----------------------------------------------- -Info 197 [00:06:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 198 [00:06:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 199 [00:06:35.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 200 [00:06:36.000] `remove Project:: -Info 201 [00:06:37.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 202 [00:06:38.000] Files (3) +Info 188 [00:06:24.000] ----------------------------------------------- +Info 189 [00:06:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 190 [00:06:26.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 191 [00:06:27.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 192 [00:06:28.000] `remove Project:: +Info 193 [00:06:29.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 194 [00:06:30.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -937,15 +929,15 @@ Info 202 [00:06:38.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 203 [00:06:39.000] ----------------------------------------------- -Info 204 [00:06:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 205 [00:06:41.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 206 [00:06:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 207 [00:06:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 208 [00:06:44.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 209 [00:06:45.000] `remove Project:: -Info 210 [00:06:46.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 211 [00:06:47.000] Files (2) +Info 195 [00:06:31.000] ----------------------------------------------- +Info 196 [00:06:32.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 197 [00:06:33.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 198 [00:06:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 199 [00:06:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 200 [00:06:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 201 [00:06:37.000] `remove Project:: +Info 202 [00:06:38.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 203 [00:06:39.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -955,19 +947,19 @@ Info 211 [00:06:47.000] Files (2) dummy.ts Root file specified for compilation -Info 212 [00:06:48.000] ----------------------------------------------- -Info 213 [00:06:49.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 214 [00:06:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 215 [00:06:51.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 216 [00:06:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 217 [00:06:53.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) -Info 217 [00:06:54.000] Files (4) - -Info 217 [00:06:55.000] ----------------------------------------------- -Info 217 [00:06:56.000] Open files: -Info 217 [00:06:57.000] FileName: /user/username/projects/myproject/indirect3/main.ts ProjectRootPath: undefined -Info 217 [00:06:58.000] Projects: /user/username/projects/myproject/indirect3/tsconfig.json -Info 217 [00:06:59.000] request: +Info 204 [00:06:40.000] ----------------------------------------------- +Info 205 [00:06:41.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 206 [00:06:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 207 [00:06:43.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 208 [00:06:44.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 209 [00:06:45.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) +Info 209 [00:06:46.000] Files (4) + +Info 209 [00:06:47.000] ----------------------------------------------- +Info 209 [00:06:48.000] Open files: +Info 209 [00:06:49.000] FileName: /user/username/projects/myproject/indirect3/main.ts ProjectRootPath: undefined +Info 209 [00:06:50.000] Projects: /user/username/projects/myproject/indirect3/tsconfig.json +Info 209 [00:06:51.000] request: { "command": "references", "arguments": { @@ -1006,16 +998,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/target: {} -Info 218 [00:07:00.000] Finding references to /user/username/projects/myproject/indirect3/main.ts position 9 in project /user/username/projects/myproject/indirect3/tsconfig.json -Info 219 [00:07:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts.map 500 undefined WatchType: Closed Script info -Info 220 [00:07:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 221 [00:07:03.000] Search path: /user/username/projects/myproject/src -Info 222 [00:07:04.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 223 [00:07:05.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 224 [00:07:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 225 [00:07:07.000] event: +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 +Info 211 [00:06:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts.map 500 undefined WatchType: Closed Script info +Info 212 [00:06:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 213 [00:06:55.000] Search path: /user/username/projects/myproject/src +Info 214 [00:06:56.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 215 [00:06:57.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 216 [00:06:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 217 [00:06:59.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating project for original file: /user/username/projects/myproject/src/main.ts for location: /user/username/projects/myproject/target/src/main.d.ts"}} -Info 226 [00:07:08.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 218 [00:07:00.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -1027,9 +1019,8 @@ Info 226 [00:07:08.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 227 [00:07:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 228 [00:07:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 229 [00:07:11.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 219 [00:07:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 220 [00:07:02.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -1041,25 +1032,24 @@ Info 229 [00:07:11.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 230 [00:07:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 231 [00:07:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 232 [00:07:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 233 [00:07:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 234 [00:07:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 235 [00:07:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 236 [00:07:18.000] Different program with same set of files -Info 237 [00:07:19.000] event: +Info 221 [00:07:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 222 [00:07:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 223 [00:07:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 224 [00:07:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 225 [00:07:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 226 [00:07:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 227 [00:07:09.000] Different program with same set of files +Info 228 [00:07:10.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 238 [00:07:20.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 239 [00:07:21.000] event: +Info 229 [00:07:11.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 230 [00:07:12.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for original file: /user/username/projects/myproject/src/main.ts for location: /user/username/projects/myproject/target/src/main.d.ts"}} -Info 240 [00:07:22.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 241 [00:07:23.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 242 [00:07:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 243 [00:07:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 244 [00:07:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 245 [00:07:27.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 246 [00:07:28.000] Files (3) +Info 231 [00:07:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 232 [00:07:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 233 [00:07:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 234 [00:07:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 235 [00:07:17.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 236 [00:07:18.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1073,18 +1063,18 @@ Info 246 [00:07:28.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 247 [00:07:29.000] ----------------------------------------------- -Info 248 [00:07:30.000] event: +Info 237 [00:07:19.000] ----------------------------------------------- +Info 238 [00:07:20.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 249 [00:07:31.000] Search path: /user/username/projects/myproject/src -Info 250 [00:07:32.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 251 [00:07:33.000] Search path: /user/username/projects/myproject/src -Info 252 [00:07:34.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 253 [00:07:35.000] Search path: /user/username/projects/myproject/src/helpers -Info 254 [00:07:36.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 255 [00:07:37.000] Search path: /user/username/projects/myproject/src/helpers -Info 256 [00:07:38.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 257 [00:07:39.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig-src.json +Info 239 [00:07:21.000] Search path: /user/username/projects/myproject/src +Info 240 [00:07:22.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 241 [00:07:23.000] Search path: /user/username/projects/myproject/src +Info 242 [00:07:24.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 243 [00:07:25.000] Search path: /user/username/projects/myproject/src/helpers +Info 244 [00:07:26.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 245 [00:07:27.000] Search path: /user/username/projects/myproject/src/helpers +Info 246 [00:07:28.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 247 [00:07:29.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig-src.json After request PolledWatches:: @@ -1123,7 +1113,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 258 [00:07:40.000] response: +Info 248 [00:07:30.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/project-is-indirectly-referenced-by-solution.js b/tests/baselines/reference/tsserver/projectReferences/project-is-indirectly-referenced-by-solution.js index cfa0db7195982..518c0c0d7f1c9 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 @@ -21,9 +21,8 @@ Info 6 [00:01:11.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 7 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 9 [00:01:14.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 7 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 8 [00:01:13.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -40,8 +39,8 @@ Info 9 [00:01:14.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 10 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 11 [00:01:16.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 9 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 10 [00:01:15.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -53,10 +52,10 @@ Info 11 [00:01:16.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 12 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 13 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 14 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 15 [00:01:20.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 11 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 12 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 13 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 14 [00:01:19.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -73,27 +72,26 @@ Info 15 [00:01:20.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 16 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 17 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 18 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 19 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:25.000] Different program with same set of files -Info 21 [00:01:26.000] event: +Info 15 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 16 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 17 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 18 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:24.000] Different program with same set of files +Info 20 [00:01:25.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 22 [00:01:27.000] event: +Info 21 [00:01:26.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":0,"tsSize":0,"tsx":0,"tsxSize":0,"dts":0,"dtsSize":0,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":true,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 23 [00:01:28.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 24 [00:01:29.000] event: +Info 22 [00:01:27.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 23 [00:01:28.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 25 [00:01:30.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 26 [00:01:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 27 [00:01:32.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 28 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 29 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 30 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 31 [00:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 32 [00:01:37.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 33 [00:01:38.000] Files (3) +Info 24 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 25 [00:01:30.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 26 [00:01:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 27 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 28 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 29 [00:01:34.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 30 [00:01:35.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 31 [00:01:36.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -107,27 +105,27 @@ Info 33 [00:01:38.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 34 [00:01:39.000] ----------------------------------------------- -Info 35 [00:01:40.000] event: +Info 32 [00:01:37.000] ----------------------------------------------- +Info 33 [00:01:38.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 36 [00:01:41.000] event: +Info 34 [00:01:39.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"75d5ba36c0a162a329bf40235b10e96d2d129b95469e1f02c08da775fb38a2b4","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":77,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"other","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 37 [00:01:42.000] event: +Info 35 [00:01:40.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 38 [00:01:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 38 [00:01:44.000] Files (0) - -Info 38 [00:01:45.000] ----------------------------------------------- -Info 38 [00:01:46.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 38 [00:01:47.000] Files (3) - -Info 38 [00:01:48.000] ----------------------------------------------- -Info 38 [00:01:49.000] Open files: -Info 38 [00:01:50.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 38 [00:01:51.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 38 [00:01:52.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 38 [00:01:53.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 38 [00:01:54.000] request: +Info 36 [00:01:41.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 36 [00:01:42.000] Files (0) + +Info 36 [00:01:43.000] ----------------------------------------------- +Info 36 [00:01:44.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 36 [00:01:45.000] Files (3) + +Info 36 [00:01:46.000] ----------------------------------------------- +Info 36 [00:01:47.000] Open files: +Info 36 [00:01:48.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 36 [00:01:49.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 36 [00:01:50.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 36 [00:01:51.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 36 [00:01:52.000] request: { "command": "geterr", "arguments": { @@ -255,7 +253,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 39 [00:01:55.000] response: +Info 37 [00:01:53.000] response: { "responseRequired": false } @@ -283,7 +281,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 40 [00:01:56.000] event: +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 @@ -333,7 +331,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 41 [00:01:57.000] event: +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) @@ -383,9 +381,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 42 [00:01:58.000] event: +Info 40 [00:01:56.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 43 [00:01:59.000] event: +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) @@ -411,15 +409,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 44 [00:02:00.000] Search path: /dummy -Info 45 [00:02:01.000] For info: /dummy/dummy.ts :: No config files found. -Info 46 [00:02:02.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 47 [00:02:03.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 48 [00:02:04.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 49 [00:02:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 50 [00:02:06.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 51 [00:02:07.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 52 [00:02:08.000] Files (2) +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* +Info 45 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 46 [00:02:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 47 [00:02:03.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 48 [00:02:04.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 49 [00:02:05.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -429,61 +426,61 @@ Info 52 [00:02:08.000] Files (2) dummy.ts Root file specified for compilation -Info 53 [00:02:09.000] ----------------------------------------------- -Info 54 [00:02:10.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 54 [00:02:11.000] Files (0) - -Info 54 [00:02:12.000] ----------------------------------------------- -Info 54 [00:02:13.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 54 [00:02:14.000] Files (3) - -Info 54 [00:02:15.000] ----------------------------------------------- -Info 54 [00:02:16.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 54 [00:02:17.000] Files (2) - -Info 54 [00:02:18.000] ----------------------------------------------- -Info 54 [00:02:19.000] Open files: -Info 54 [00:02:20.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 54 [00:02:21.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 54 [00:02:22.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 54 [00:02:23.000] Projects: /dev/null/inferredProject1* -Info 54 [00:02:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 55 [00:02:25.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 55 [00:02:26.000] Files (0) - -Info 55 [00:02:27.000] ----------------------------------------------- -Info 55 [00:02:28.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 55 [00:02:29.000] Files (3) - -Info 55 [00:02:30.000] ----------------------------------------------- -Info 55 [00:02:31.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 55 [00:02:32.000] Files (2) - -Info 55 [00:02:33.000] ----------------------------------------------- -Info 55 [00:02:34.000] Open files: -Info 55 [00:02:35.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 55 [00:02:36.000] Projects: /dev/null/inferredProject1* -Info 55 [00:02:37.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 56 [00:02:38.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 56 [00:02:39.000] Files (0) - -Info 56 [00:02:40.000] ----------------------------------------------- -Info 56 [00:02:41.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 56 [00:02:42.000] Files (3) - -Info 56 [00:02:43.000] ----------------------------------------------- -Info 56 [00:02:44.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 56 [00:02:45.000] Files (2) - -Info 56 [00:02:46.000] ----------------------------------------------- -Info 56 [00:02:47.000] Open files: -Info 56 [00:02:48.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 57 [00:02:49.000] Search path: /dummy -Info 58 [00:02:50.000] For info: /dummy/dummy.ts :: No config files found. -Info 59 [00:02:51.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 60 [00:02:52.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 61 [00:02:53.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 62 [00:02:54.000] Files (2) +Info 50 [00:02:06.000] ----------------------------------------------- +Info 51 [00:02:07.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 51 [00:02:08.000] Files (0) + +Info 51 [00:02:09.000] ----------------------------------------------- +Info 51 [00:02:10.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 51 [00:02:11.000] Files (3) + +Info 51 [00:02:12.000] ----------------------------------------------- +Info 51 [00:02:13.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 51 [00:02:14.000] Files (2) + +Info 51 [00:02:15.000] ----------------------------------------------- +Info 51 [00:02:16.000] Open files: +Info 51 [00:02:17.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 51 [00:02:18.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 51 [00:02:19.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 51 [00:02:20.000] Projects: /dev/null/inferredProject1* +Info 51 [00:02:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 52 [00:02:22.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 52 [00:02:23.000] Files (0) + +Info 52 [00:02:24.000] ----------------------------------------------- +Info 52 [00:02:25.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 52 [00:02:26.000] Files (3) + +Info 52 [00:02:27.000] ----------------------------------------------- +Info 52 [00:02:28.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 52 [00:02:29.000] Files (2) + +Info 52 [00:02:30.000] ----------------------------------------------- +Info 52 [00:02:31.000] Open files: +Info 52 [00:02:32.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 52 [00:02:33.000] Projects: /dev/null/inferredProject1* +Info 52 [00:02:34.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 53 [00:02:35.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 53 [00:02:36.000] Files (0) + +Info 53 [00:02:37.000] ----------------------------------------------- +Info 53 [00:02:38.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 53 [00:02:39.000] Files (3) + +Info 53 [00:02:40.000] ----------------------------------------------- +Info 53 [00:02:41.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 53 [00:02:42.000] Files (2) + +Info 53 [00:02:43.000] ----------------------------------------------- +Info 53 [00:02:44.000] Open files: +Info 53 [00:02:45.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 54 [00:02:46.000] Search path: /dummy +Info 55 [00:02:47.000] For info: /dummy/dummy.ts :: No config files found. +Info 56 [00:02:48.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 57 [00:02:49.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 58 [00:02:50.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 59 [00:02:51.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -493,22 +490,22 @@ Info 62 [00:02:54.000] Files (2) dummy.ts Root file specified for compilation -Info 63 [00:02:55.000] ----------------------------------------------- -Info 64 [00:02:56.000] `remove Project:: -Info 65 [00:02:57.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 66 [00:02:58.000] Files (0) +Info 60 [00:02:52.000] ----------------------------------------------- +Info 61 [00:02:53.000] `remove Project:: +Info 62 [00:02:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 63 [00:02:55.000] Files (0) -Info 67 [00:02:59.000] ----------------------------------------------- -Info 68 [00:03:00.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 69 [00:03:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 70 [00:03:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 71 [00:03:03.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 72 [00:03:04.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 73 [00:03:05.000] `remove Project:: -Info 74 [00:03:06.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 75 [00:03:07.000] Files (3) +Info 64 [00:02:56.000] ----------------------------------------------- +Info 65 [00:02:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 66 [00:02:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 67 [00:02:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 68 [00:03:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 69 [00:03:01.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 70 [00:03:02.000] `remove Project:: +Info 71 [00:03:03.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 72 [00:03:04.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -522,28 +519,28 @@ Info 75 [00:03:07.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 76 [00:03:08.000] ----------------------------------------------- -Info 77 [00:03:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 78 [00:03:10.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 79 [00:03:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 80 [00:03:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 81 [00:03:13.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 82 [00:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 83 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 84 [00:03:16.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 84 [00:03:17.000] Files (2) - -Info 84 [00:03:18.000] ----------------------------------------------- -Info 84 [00:03:19.000] Open files: -Info 84 [00:03:20.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 84 [00:03:21.000] Projects: /dev/null/inferredProject1* -Info 84 [00:03:22.000] Search path: /user/username/projects/myproject/src -Info 85 [00:03:23.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 86 [00:03:24.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 87 [00:03:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 88 [00:03:26.000] event: +Info 73 [00:03:05.000] ----------------------------------------------- +Info 74 [00:03:06.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 75 [00:03:07.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 76 [00:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 77 [00:03:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 78 [00:03:10.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 79 [00:03:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 80 [00:03:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 81 [00:03:13.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 81 [00:03:14.000] Files (2) + +Info 81 [00:03:15.000] ----------------------------------------------- +Info 81 [00:03:16.000] Open files: +Info 81 [00:03:17.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 81 [00:03:18.000] Projects: /dev/null/inferredProject1* +Info 81 [00:03:19.000] Search path: /user/username/projects/myproject/src +Info 82 [00:03:20.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 83 [00:03:21.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 84 [00:03:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 85 [00:03:23.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 89 [00:03:27.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 86 [00:03:24.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -559,9 +556,8 @@ Info 89 [00:03:27.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 90 [00:03:28.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 91 [00:03:29.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 92 [00:03:30.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 87 [00:03:25.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 88 [00:03:26.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -578,8 +574,8 @@ Info 92 [00:03:30.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 93 [00:03:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 94 [00:03:32.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 89 [00:03:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 90 [00:03:28.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -591,10 +587,10 @@ Info 94 [00:03:32.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 95 [00:03:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 96 [00:03:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 97 [00:03:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 98 [00:03:36.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 91 [00:03:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 92 [00:03:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 93 [00:03:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 94 [00:03:32.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -611,24 +607,23 @@ Info 98 [00:03:36.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 99 [00:03:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 100 [00:03:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 101 [00:03:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 102 [00:03:40.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 103 [00:03:41.000] Different program with same set of files -Info 104 [00:03:42.000] event: +Info 95 [00:03:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 96 [00:03:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 97 [00:03:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 98 [00:03:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 99 [00:03:37.000] Different program with same set of files +Info 100 [00:03:38.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 105 [00:03:43.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 106 [00:03:44.000] event: +Info 101 [00:03:39.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 102 [00:03:40.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 107 [00:03:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 108 [00:03:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 109 [00:03:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 110 [00:03:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 111 [00:03:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 112 [00:03:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 113 [00:03:51.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 114 [00:03:52.000] Files (3) +Info 103 [00:03:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 104 [00:03:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 105 [00:03:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 106 [00:03:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 107 [00:03:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 108 [00:03:46.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 109 [00:03:47.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -642,51 +637,51 @@ Info 114 [00:03:52.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 115 [00:03:53.000] ----------------------------------------------- -Info 116 [00:03:54.000] event: +Info 110 [00:03:48.000] ----------------------------------------------- +Info 111 [00:03:49.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 117 [00:03:55.000] event: +Info 112 [00:03:50.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 118 [00:03:56.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 118 [00:03:57.000] Files (0) - -Info 118 [00:03:58.000] ----------------------------------------------- -Info 118 [00:03:59.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 118 [00:04:00.000] Files (3) - -Info 118 [00:04:01.000] ----------------------------------------------- -Info 118 [00:04:02.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 118 [00:04:03.000] Files (2) - -Info 118 [00:04:04.000] ----------------------------------------------- -Info 118 [00:04:05.000] Open files: -Info 118 [00:04:06.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 118 [00:04:07.000] Projects: /dev/null/inferredProject1* -Info 118 [00:04:08.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 118 [00:04:09.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 118 [00:04:10.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 119 [00:04:11.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 119 [00:04:12.000] Files (0) - -Info 119 [00:04:13.000] ----------------------------------------------- -Info 119 [00:04:14.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 119 [00:04:15.000] Files (3) - -Info 119 [00:04:16.000] ----------------------------------------------- -Info 119 [00:04:17.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 119 [00:04:18.000] Files (2) - -Info 119 [00:04:19.000] ----------------------------------------------- -Info 119 [00:04:20.000] Open files: -Info 119 [00:04:21.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 119 [00:04:22.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 119 [00:04:23.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 120 [00:04:24.000] Search path: /dummy -Info 121 [00:04:25.000] For info: /dummy/dummy.ts :: No config files found. -Info 122 [00:04:26.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 123 [00:04:27.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 124 [00:04:28.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 125 [00:04:29.000] Files (2) +Info 113 [00:03:51.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 113 [00:03:52.000] Files (0) + +Info 113 [00:03:53.000] ----------------------------------------------- +Info 113 [00:03:54.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 113 [00:03:55.000] Files (3) + +Info 113 [00:03:56.000] ----------------------------------------------- +Info 113 [00:03:57.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 113 [00:03:58.000] Files (2) + +Info 113 [00:03:59.000] ----------------------------------------------- +Info 113 [00:04:00.000] Open files: +Info 113 [00:04:01.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 113 [00:04:02.000] Projects: /dev/null/inferredProject1* +Info 113 [00:04:03.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 113 [00:04:04.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 113 [00:04:05.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 114 [00:04:06.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 114 [00:04:07.000] Files (0) + +Info 114 [00:04:08.000] ----------------------------------------------- +Info 114 [00:04:09.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 114 [00:04:10.000] Files (3) + +Info 114 [00:04:11.000] ----------------------------------------------- +Info 114 [00:04:12.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 114 [00:04:13.000] Files (2) + +Info 114 [00:04:14.000] ----------------------------------------------- +Info 114 [00:04:15.000] Open files: +Info 114 [00:04:16.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 114 [00:04:17.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 114 [00:04:18.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 115 [00:04:19.000] Search path: /dummy +Info 116 [00:04:20.000] For info: /dummy/dummy.ts :: No config files found. +Info 117 [00:04:21.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 118 [00:04:22.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 119 [00:04:23.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 120 [00:04:24.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -696,38 +691,38 @@ Info 125 [00:04:29.000] Files (2) dummy.ts Root file specified for compilation -Info 126 [00:04:30.000] ----------------------------------------------- -Info 127 [00:04:31.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 127 [00:04:32.000] Files (0) - -Info 127 [00:04:33.000] ----------------------------------------------- -Info 127 [00:04:34.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 127 [00:04:35.000] Files (3) - -Info 127 [00:04:36.000] ----------------------------------------------- -Info 127 [00:04:37.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 127 [00:04:38.000] Files (2) - -Info 127 [00:04:39.000] ----------------------------------------------- -Info 127 [00:04:40.000] Open files: -Info 127 [00:04:41.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 127 [00:04:42.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 127 [00:04:43.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 127 [00:04:44.000] Projects: /dev/null/inferredProject1* -Info 127 [00:04:45.000] reload projects. -Info 128 [00:04:46.000] Scheduled: /dev/null/inferredProject1* -Info 129 [00:04:47.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json -Info 130 [00:04:48.000] Scheduled: *ensureProjectForOpenFiles* -Info 131 [00:04:49.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one -Info 132 [00:04:50.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 133 [00:04:51.000] Search path: /user/username/projects/myproject/src -Info 134 [00:04:52.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 135 [00:04:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 136 [00:04:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 137 [00:04:55.000] Reloading configured project /user/username/projects/myproject/tsconfig.json -Info 138 [00:04:56.000] event: +Info 121 [00:04:25.000] ----------------------------------------------- +Info 122 [00:04:26.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 122 [00:04:27.000] Files (0) + +Info 122 [00:04:28.000] ----------------------------------------------- +Info 122 [00:04:29.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 122 [00:04:30.000] Files (3) + +Info 122 [00:04:31.000] ----------------------------------------------- +Info 122 [00:04:32.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 122 [00:04:33.000] Files (2) + +Info 122 [00:04:34.000] ----------------------------------------------- +Info 122 [00:04:35.000] Open files: +Info 122 [00:04:36.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 122 [00:04:37.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 122 [00:04:38.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 122 [00:04:39.000] Projects: /dev/null/inferredProject1* +Info 122 [00:04:40.000] reload projects. +Info 123 [00:04:41.000] Scheduled: /dev/null/inferredProject1* +Info 124 [00:04:42.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json +Info 125 [00:04:43.000] Scheduled: *ensureProjectForOpenFiles* +Info 126 [00:04:44.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one +Info 127 [00:04:45.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 128 [00:04:46.000] Search path: /user/username/projects/myproject/src +Info 129 [00:04:47.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 130 [00:04:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 131 [00:04:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 132 [00:04:50.000] Reloading configured project /user/username/projects/myproject/tsconfig.json +Info 133 [00:04:51.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"User requested reload projects"}} -Info 139 [00:04:57.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 134 [00:04:52.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -743,9 +738,8 @@ Info 139 [00:04:57.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 140 [00:04:58.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 141 [00:04:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 142 [00:05:00.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 135 [00:04:53.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 136 [00:04:54.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -762,7 +756,7 @@ Info 142 [00:05:00.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 143 [00:05:01.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 137 [00:04:55.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -774,7 +768,7 @@ Info 143 [00:05:01.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 144 [00:05:02.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 138 [00:04:56.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -791,75 +785,74 @@ Info 144 [00:05:02.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 145 [00:05:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 146 [00:05:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 147 [00:05:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 148 [00:05:06.000] Different program with same set of files -Info 149 [00:05:07.000] event: +Info 139 [00:04:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 140 [00:04:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 141 [00:04:59.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 142 [00:05:00.000] Different program with same set of files +Info 143 [00:05:01.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 150 [00:05:08.000] event: +Info 144 [00:05:02.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig.json","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 151 [00:05:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 152 [00:05:10.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 153 [00:05:11.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json -Info 154 [00:05:12.000] event: +Info 145 [00:05:03.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 146 [00:05:04.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 147 [00:05:05.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json +Info 148 [00:05:06.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"User requested reload projects"}} -Info 155 [00:05:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 156 [00:05:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 157 [00:05:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 158 [00:05:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 159 [00:05:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 160 [00:05:18.000] Different program with same set of files -Info 161 [00:05:19.000] event: +Info 149 [00:05:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 150 [00:05:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 151 [00:05:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 152 [00:05:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 153 [00:05:11.000] Different program with same set of files +Info 154 [00:05:12.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 162 [00:05:20.000] event: +Info 155 [00:05:13.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig-src.json","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 163 [00:05:21.000] Search path: /dummy -Info 164 [00:05:22.000] For info: /dummy/dummy.ts :: No config files found. -Info 165 [00:05:23.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 166 [00:05:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 167 [00:05:25.000] Before ensureProjectForOpenFiles: -Info 168 [00:05:26.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 168 [00:05:27.000] Files (0) - -Info 168 [00:05:28.000] ----------------------------------------------- -Info 168 [00:05:29.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 168 [00:05:30.000] Files (3) - -Info 168 [00:05:31.000] ----------------------------------------------- -Info 168 [00:05:32.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 168 [00:05:33.000] Files (2) - -Info 168 [00:05:34.000] ----------------------------------------------- -Info 168 [00:05:35.000] Open files: -Info 168 [00:05:36.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 168 [00:05:37.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 168 [00:05:38.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 168 [00:05:39.000] Projects: /dev/null/inferredProject1* -Info 168 [00:05:40.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 169 [00:05:41.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 170 [00:05:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 171 [00:05:43.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 172 [00:05:44.000] Different program with same set of files -Info 173 [00:05:45.000] After ensureProjectForOpenFiles: -Info 174 [00:05:46.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 174 [00:05:47.000] Files (0) - -Info 174 [00:05:48.000] ----------------------------------------------- -Info 174 [00:05:49.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 174 [00:05:50.000] Files (3) - -Info 174 [00:05:51.000] ----------------------------------------------- -Info 174 [00:05:52.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 174 [00:05:53.000] Files (2) - -Info 174 [00:05:54.000] ----------------------------------------------- -Info 174 [00:05:55.000] Open files: -Info 174 [00:05:56.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 174 [00:05:57.000] Projects: /user/username/projects/myproject/tsconfig-src.json -Info 174 [00:05:58.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 174 [00:05:59.000] Projects: /dev/null/inferredProject1* -Info 174 [00:06:00.000] request: +Info 156 [00:05:14.000] Search path: /dummy +Info 157 [00:05:15.000] For info: /dummy/dummy.ts :: No config files found. +Info 158 [00:05:16.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 159 [00:05:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 160 [00:05:18.000] Before ensureProjectForOpenFiles: +Info 161 [00:05:19.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 161 [00:05:20.000] Files (0) + +Info 161 [00:05:21.000] ----------------------------------------------- +Info 161 [00:05:22.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 161 [00:05:23.000] Files (3) + +Info 161 [00:05:24.000] ----------------------------------------------- +Info 161 [00:05:25.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 161 [00:05:26.000] Files (2) + +Info 161 [00:05:27.000] ----------------------------------------------- +Info 161 [00:05:28.000] Open files: +Info 161 [00:05:29.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 161 [00:05:30.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 161 [00:05:31.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 161 [00:05:32.000] Projects: /dev/null/inferredProject1* +Info 161 [00:05:33.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 162 [00:05:34.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 163 [00:05:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 164 [00:05:36.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 165 [00:05:37.000] Different program with same set of files +Info 166 [00:05:38.000] After ensureProjectForOpenFiles: +Info 167 [00:05:39.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 167 [00:05:40.000] Files (0) + +Info 167 [00:05:41.000] ----------------------------------------------- +Info 167 [00:05:42.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 167 [00:05:43.000] Files (3) + +Info 167 [00:05:44.000] ----------------------------------------------- +Info 167 [00:05:45.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 167 [00:05:46.000] Files (2) + +Info 167 [00:05:47.000] ----------------------------------------------- +Info 167 [00:05:48.000] Open files: +Info 167 [00:05:49.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 167 [00:05:50.000] Projects: /user/username/projects/myproject/tsconfig-src.json +Info 167 [00:05:51.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 167 [00:05:52.000] Projects: /dev/null/inferredProject1* +Info 167 [00:05:53.000] request: { "command": "references", "arguments": { @@ -896,18 +889,17 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 175 [00:06:01.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig-src.json -Info 176 [00:06:02.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json -Info 177 [00:06:03.000] event: +Info 168 [00:05:54.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig-src.json +Info 169 [00:05:55.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json +Info 170 [00:05:56.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json","reason":"Creating project referenced by : /user/username/projects/myproject/tsconfig.json as it references project /user/username/projects/myproject/tsconfig-src.json"}} -Info 178 [00:06:04.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 179 [00:06:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 180 [00:06:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info 181 [00:06:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 182 [00:06:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 183 [00:06:09.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 184 [00:06:10.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 185 [00:06:11.000] Files (4) +Info 171 [00:05:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 172 [00:05:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json +Info 173 [00:05:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 174 [00:06:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 175 [00:06:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 176 [00:06:02.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 177 [00:06:03.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -923,22 +915,21 @@ Info 185 [00:06:11.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 186 [00:06:12.000] ----------------------------------------------- -Info 187 [00:06:13.000] event: +Info 178 [00:06:04.000] ----------------------------------------------- +Info 179 [00:06:05.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json"}} -Info 188 [00:06:14.000] event: +Info 180 [00:06:06.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"9ccc3aed1af08832ccb25ea453f7b771199f56af238b53cc428549dbd2d59246","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":true,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"other","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 189 [00:06:15.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect2.json -Info 190 [00:06:16.000] event: +Info 181 [00:06:07.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect2.json +Info 182 [00:06:08.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect2.json","reason":"Creating project referenced by : /user/username/projects/myproject/tsconfig.json as it references project /user/username/projects/myproject/tsconfig-src.json"}} -Info 191 [00:06:17.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 192 [00:06:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info -Info 193 [00:06:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json -Info 194 [00:06:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info 195 [00:06:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info 196 [00:06:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 197 [00:06:23.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) -Info 198 [00:06:24.000] Files (4) +Info 183 [00:06:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info +Info 184 [00:06:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json +Info 185 [00:06:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots +Info 186 [00:06:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots +Info 187 [00:06:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 188 [00:06:14.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) +Info 189 [00:06:15.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -954,35 +945,35 @@ Info 198 [00:06:24.000] Files (4) indirect2/main.ts Part of 'files' list in tsconfig.json -Info 199 [00:06:25.000] ----------------------------------------------- -Info 200 [00:06:26.000] event: +Info 190 [00:06:16.000] ----------------------------------------------- +Info 191 [00:06:17.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect2.json"}} -Info 201 [00:06:27.000] event: +Info 192 [00:06:18.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"d9a040bddd6b85b85abd507a988a4b809b1515b5e61257ea3f8263da59589565","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":true,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"other","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 202 [00:06:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts 500 undefined WatchType: Closed Script info -Info 203 [00:06:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts.map 500 undefined WatchType: Closed Script info -Info 204 [00:06:30.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect1.json -Info 205 [00:06:31.000] Search path: /user/username/projects/myproject/src/helpers -Info 206 [00:06:32.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 193 [00:06:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts 500 undefined WatchType: Closed Script info +Info 194 [00:06:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts.map 500 undefined WatchType: Closed Script info +Info 195 [00:06:21.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect1.json +Info 196 [00:06:22.000] Search path: /user/username/projects/myproject/src/helpers +Info 197 [00:06:23.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 198 [00:06:24.000] Search path: /user/username/projects/myproject/src/helpers +Info 199 [00:06:25.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 200 [00:06:26.000] Search path: /user/username/projects/myproject/src +Info 201 [00:06:27.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 202 [00:06:28.000] Search path: /user/username/projects/myproject/src +Info 203 [00:06:29.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 204 [00:06:30.000] Search path: /user/username/projects/myproject/src +Info 205 [00:06:31.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 206 [00:06:32.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect2.json Info 207 [00:06:33.000] Search path: /user/username/projects/myproject/src/helpers Info 208 [00:06:34.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 209 [00:06:35.000] Search path: /user/username/projects/myproject/src -Info 210 [00:06:36.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 209 [00:06:35.000] Search path: /user/username/projects/myproject/src/helpers +Info 210 [00:06:36.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 211 [00:06:37.000] Search path: /user/username/projects/myproject/src Info 212 [00:06:38.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json Info 213 [00:06:39.000] Search path: /user/username/projects/myproject/src Info 214 [00:06:40.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 215 [00:06:41.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect2.json -Info 216 [00:06:42.000] Search path: /user/username/projects/myproject/src/helpers -Info 217 [00:06:43.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 218 [00:06:44.000] Search path: /user/username/projects/myproject/src/helpers -Info 219 [00:06:45.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 220 [00:06:46.000] Search path: /user/username/projects/myproject/src -Info 221 [00:06:47.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 222 [00:06:48.000] Search path: /user/username/projects/myproject/src -Info 223 [00:06:49.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 224 [00:06:50.000] Search path: /user/username/projects/myproject/src -Info 225 [00:06:51.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 215 [00:06:41.000] Search path: /user/username/projects/myproject/src +Info 216 [00:06:42.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -1017,7 +1008,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 226 [00:06:52.000] response: +Info 217 [00:06:43.000] response: { "response": { "refs": [ @@ -1166,59 +1157,59 @@ Info 226 [00:06:52.000] response: }, "responseRequired": true } -Info 227 [00:06:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 228 [00:06:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 228 [00:06:55.000] Files (0) - -Info 228 [00:06:56.000] ----------------------------------------------- -Info 228 [00:06:57.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 228 [00:06:58.000] Files (3) - -Info 228 [00:06:59.000] ----------------------------------------------- -Info 228 [00:07:00.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 228 [00:07:01.000] Files (4) - -Info 228 [00:07:02.000] ----------------------------------------------- -Info 228 [00:07:03.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) -Info 228 [00:07:04.000] Files (4) - -Info 228 [00:07:05.000] ----------------------------------------------- -Info 228 [00:07:06.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 228 [00:07:07.000] Files (2) - -Info 228 [00:07:08.000] ----------------------------------------------- -Info 228 [00:07:09.000] Open files: -Info 228 [00:07:10.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 228 [00:07:11.000] Projects: /dev/null/inferredProject1* -Info 228 [00:07:12.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 229 [00:07:13.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 229 [00:07:14.000] Files (0) - -Info 229 [00:07:15.000] ----------------------------------------------- -Info 229 [00:07:16.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 229 [00:07:17.000] Files (3) - -Info 229 [00:07:18.000] ----------------------------------------------- -Info 229 [00:07:19.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 229 [00:07:20.000] Files (4) - -Info 229 [00:07:21.000] ----------------------------------------------- -Info 229 [00:07:22.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) -Info 229 [00:07:23.000] Files (4) - -Info 229 [00:07:24.000] ----------------------------------------------- -Info 229 [00:07:25.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 229 [00:07:26.000] Files (2) - -Info 229 [00:07:27.000] ----------------------------------------------- -Info 229 [00:07:28.000] Open files: -Info 229 [00:07:29.000] Search path: /user/username/projects/myproject/indirect3 -Info 230 [00:07:30.000] For info: /user/username/projects/myproject/indirect3/main.ts :: Config file name: /user/username/projects/myproject/indirect3/tsconfig.json -Info 231 [00:07:31.000] Creating configuration project /user/username/projects/myproject/indirect3/tsconfig.json -Info 232 [00:07:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Config file -Info 233 [00:07:33.000] event: +Info 218 [00:06:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 219 [00:06:45.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 219 [00:06:46.000] Files (0) + +Info 219 [00:06:47.000] ----------------------------------------------- +Info 219 [00:06:48.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 219 [00:06:49.000] Files (3) + +Info 219 [00:06:50.000] ----------------------------------------------- +Info 219 [00:06:51.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 219 [00:06:52.000] Files (4) + +Info 219 [00:06:53.000] ----------------------------------------------- +Info 219 [00:06:54.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) +Info 219 [00:06:55.000] Files (4) + +Info 219 [00:06:56.000] ----------------------------------------------- +Info 219 [00:06:57.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 219 [00:06:58.000] Files (2) + +Info 219 [00:06:59.000] ----------------------------------------------- +Info 219 [00:07:00.000] Open files: +Info 219 [00:07:01.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 219 [00:07:02.000] Projects: /dev/null/inferredProject1* +Info 219 [00:07:03.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 220 [00:07:04.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 220 [00:07:05.000] Files (0) + +Info 220 [00:07:06.000] ----------------------------------------------- +Info 220 [00:07:07.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 220 [00:07:08.000] Files (3) + +Info 220 [00:07:09.000] ----------------------------------------------- +Info 220 [00:07:10.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 220 [00:07:11.000] Files (4) + +Info 220 [00:07:12.000] ----------------------------------------------- +Info 220 [00:07:13.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) +Info 220 [00:07:14.000] Files (4) + +Info 220 [00:07:15.000] ----------------------------------------------- +Info 220 [00:07:16.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 220 [00:07:17.000] Files (2) + +Info 220 [00:07:18.000] ----------------------------------------------- +Info 220 [00:07:19.000] Open files: +Info 220 [00:07:20.000] Search path: /user/username/projects/myproject/indirect3 +Info 221 [00:07:21.000] For info: /user/username/projects/myproject/indirect3/main.ts :: Config file name: /user/username/projects/myproject/indirect3/tsconfig.json +Info 222 [00:07:22.000] Creating configuration project /user/username/projects/myproject/indirect3/tsconfig.json +Info 223 [00:07:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Config file +Info 224 [00:07:24.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/indirect3/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/indirect3/main.ts to open"}} -Info 234 [00:07:34.000] Config: /user/username/projects/myproject/indirect3/tsconfig.json : { +Info 225 [00:07:25.000] Config: /user/username/projects/myproject/indirect3/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/indirect3/main.ts" ], @@ -1227,20 +1218,19 @@ Info 234 [00:07:34.000] Config: /user/username/projects/myproject/indirect3/tsc "configFilePath": "/user/username/projects/myproject/indirect3/tsconfig.json" } } -Info 235 [00:07:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory -Info 236 [00:07:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory -Info 237 [00:07:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 238 [00:07:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json -Info 239 [00:07:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info -Info 240 [00:07:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations -Info 241 [00:07:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations -Info 242 [00:07:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info 243 [00:07:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info 244 [00:07:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info 245 [00:07:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info 246 [00:07:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 247 [00:07:47.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) -Info 248 [00:07:48.000] Files (4) +Info 226 [00:07:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory +Info 227 [00:07:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory +Info 228 [00:07:28.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json +Info 229 [00:07:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info +Info 230 [00:07:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations +Info 231 [00:07:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations +Info 232 [00:07:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots +Info 233 [00:07:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots +Info 234 [00:07:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots +Info 235 [00:07:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots +Info 236 [00:07:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 237 [00:07:37.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) +Info 238 [00:07:38.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/target/src/helpers/functions.d.ts /user/username/projects/myproject/target/src/main.d.ts @@ -1256,26 +1246,26 @@ Info 248 [00:07:48.000] Files (4) main.ts Matched by default include pattern '**/*' -Info 249 [00:07:49.000] ----------------------------------------------- -Info 250 [00:07:50.000] event: +Info 239 [00:07:39.000] ----------------------------------------------- +Info 240 [00:07:40.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/indirect3/tsconfig.json"}} -Info 251 [00:07:51.000] event: +Info 241 [00:07:41.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"5b0817f69b6871821661b976aa73f4f2533b37c5f4b920541094c2d727d0dc39","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":57,"tsx":0,"tsxSize":0,"dts":3,"dtsSize":494,"deferred":0,"deferredSize":0},"compilerOptions":{"baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 252 [00:07:52.000] event: +Info 242 [00:07:42.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/indirect3/main.ts","configFile":"/user/username/projects/myproject/indirect3/tsconfig.json","diagnostics":[]}} -Info 253 [00:07:53.000] `remove Project:: -Info 254 [00:07:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 255 [00:07:55.000] Files (0) +Info 243 [00:07:43.000] `remove Project:: +Info 244 [00:07:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 245 [00:07:45.000] Files (0) -Info 256 [00:07:56.000] ----------------------------------------------- -Info 257 [00:07:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 258 [00:07:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 259 [00:07:59.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 260 [00:08:00.000] `remove Project:: -Info 261 [00:08:01.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 262 [00:08:02.000] Files (3) +Info 246 [00:07:46.000] ----------------------------------------------- +Info 247 [00:07:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 248 [00:07:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 249 [00:07:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 250 [00:07:50.000] `remove Project:: +Info 251 [00:07:51.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 252 [00:07:52.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1289,12 +1279,12 @@ Info 262 [00:08:02.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 263 [00:08:03.000] ----------------------------------------------- -Info 264 [00:08:04.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 265 [00:08:05.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 266 [00:08:06.000] `remove Project:: -Info 267 [00:08:07.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 268 [00:08:08.000] Files (4) +Info 253 [00:07:53.000] ----------------------------------------------- +Info 254 [00:07:54.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 255 [00:07:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 256 [00:07:56.000] `remove Project:: +Info 257 [00:07:57.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 258 [00:07:58.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1310,13 +1300,13 @@ Info 268 [00:08:08.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 269 [00:08:09.000] ----------------------------------------------- -Info 270 [00:08:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 271 [00:08:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 272 [00:08:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 273 [00:08:13.000] `remove Project:: -Info 274 [00:08:14.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) -Info 275 [00:08:15.000] Files (4) +Info 259 [00:07:59.000] ----------------------------------------------- +Info 260 [00:08:00.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 261 [00:08:01.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 262 [00:08:02.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 263 [00:08:03.000] `remove Project:: +Info 264 [00:08:04.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) +Info 265 [00:08:05.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1332,16 +1322,16 @@ Info 275 [00:08:15.000] Files (4) indirect2/main.ts Part of 'files' list in tsconfig.json -Info 276 [00:08:16.000] ----------------------------------------------- -Info 277 [00:08:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 278 [00:08:18.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 279 [00:08:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 280 [00:08:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 281 [00:08:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info 282 [00:08:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info 283 [00:08:23.000] `remove Project:: -Info 284 [00:08:24.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 285 [00:08:25.000] Files (2) +Info 266 [00:08:06.000] ----------------------------------------------- +Info 267 [00:08:07.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 268 [00:08:08.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 269 [00:08:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 270 [00:08:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 271 [00:08:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots +Info 272 [00:08:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots +Info 273 [00:08:13.000] `remove Project:: +Info 274 [00:08:14.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 275 [00:08:15.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -1351,21 +1341,21 @@ Info 285 [00:08:25.000] Files (2) dummy.ts Root file specified for compilation -Info 286 [00:08:26.000] ----------------------------------------------- -Info 287 [00:08:27.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 288 [00:08:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 289 [00:08:29.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 290 [00:08:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 291 [00:08:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 292 [00:08:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info -Info 293 [00:08:33.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) -Info 293 [00:08:34.000] Files (4) - -Info 293 [00:08:35.000] ----------------------------------------------- -Info 293 [00:08:36.000] Open files: -Info 293 [00:08:37.000] FileName: /user/username/projects/myproject/indirect3/main.ts ProjectRootPath: undefined -Info 293 [00:08:38.000] Projects: /user/username/projects/myproject/indirect3/tsconfig.json -Info 293 [00:08:39.000] request: +Info 276 [00:08:16.000] ----------------------------------------------- +Info 277 [00:08:17.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 278 [00:08:18.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 279 [00:08:19.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 280 [00:08:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 281 [00:08:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 282 [00:08:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info +Info 283 [00:08:23.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) +Info 283 [00:08:24.000] Files (4) + +Info 283 [00:08:25.000] ----------------------------------------------- +Info 283 [00:08:26.000] Open files: +Info 283 [00:08:27.000] FileName: /user/username/projects/myproject/indirect3/main.ts ProjectRootPath: undefined +Info 283 [00:08:28.000] Projects: /user/username/projects/myproject/indirect3/tsconfig.json +Info 283 [00:08:29.000] request: { "command": "references", "arguments": { @@ -1404,16 +1394,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/target: {} -Info 294 [00:08:40.000] Finding references to /user/username/projects/myproject/indirect3/main.ts position 9 in project /user/username/projects/myproject/indirect3/tsconfig.json -Info 295 [00:08:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts.map 500 undefined WatchType: Closed Script info -Info 296 [00:08:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 297 [00:08:43.000] Search path: /user/username/projects/myproject/src -Info 298 [00:08:44.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 299 [00:08:45.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 300 [00:08:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 301 [00:08:47.000] event: +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 +Info 285 [00:08:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts.map 500 undefined WatchType: Closed Script info +Info 286 [00:08:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 287 [00:08:33.000] Search path: /user/username/projects/myproject/src +Info 288 [00:08:34.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 289 [00:08:35.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 290 [00:08:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 291 [00:08:37.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating project for original file: /user/username/projects/myproject/src/main.ts for location: /user/username/projects/myproject/target/src/main.d.ts"}} -Info 302 [00:08:48.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 292 [00:08:38.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/myproject/tsconfig.json" @@ -1429,9 +1419,8 @@ Info 302 [00:08:48.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 303 [00:08:49.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 304 [00:08:50.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 305 [00:08:51.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 293 [00:08:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 294 [00:08:40.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -1448,8 +1437,8 @@ Info 305 [00:08:51.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 306 [00:08:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 307 [00:08:53.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 295 [00:08:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 296 [00:08:42.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -1461,10 +1450,10 @@ Info 307 [00:08:53.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 308 [00:08:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 309 [00:08:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 310 [00:08:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 311 [00:08:57.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 297 [00:08:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 298 [00:08:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 299 [00:08:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 300 [00:08:46.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -1481,23 +1470,22 @@ Info 311 [00:08:57.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 312 [00:08:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 313 [00:08:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 314 [00:09:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 315 [00:09:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 316 [00:09:02.000] Different program with same set of files -Info 317 [00:09:03.000] event: +Info 301 [00:08:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 302 [00:08:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 303 [00:08:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 304 [00:08:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 305 [00:08:51.000] Different program with same set of files +Info 306 [00:08:52.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 318 [00:09:04.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 319 [00:09:05.000] event: +Info 307 [00:08:53.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 308 [00:08:54.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for original file: /user/username/projects/myproject/src/main.ts for location: /user/username/projects/myproject/target/src/main.d.ts"}} -Info 320 [00:09:06.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 321 [00:09:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 322 [00:09:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 323 [00:09:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 324 [00:09:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 325 [00:09:11.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 326 [00:09:12.000] Files (3) +Info 309 [00:08:55.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 310 [00:08:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 311 [00:08:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 312 [00:08:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 313 [00:08:59.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 314 [00:09:00.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1511,29 +1499,28 @@ Info 326 [00:09:12.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 327 [00:09:13.000] ----------------------------------------------- -Info 328 [00:09:14.000] event: +Info 315 [00:09:01.000] ----------------------------------------------- +Info 316 [00:09:02.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 329 [00:09:15.000] Search path: /user/username/projects/myproject/src -Info 330 [00:09:16.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 331 [00:09:17.000] Search path: /user/username/projects/myproject/src -Info 332 [00:09:18.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 333 [00:09:19.000] Search path: /user/username/projects/myproject/src/helpers -Info 334 [00:09:20.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 335 [00:09:21.000] Search path: /user/username/projects/myproject/src/helpers -Info 336 [00:09:22.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 337 [00:09:23.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig-src.json -Info 338 [00:09:24.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json -Info 339 [00:09:25.000] event: +Info 317 [00:09:03.000] Search path: /user/username/projects/myproject/src +Info 318 [00:09:04.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 319 [00:09:05.000] Search path: /user/username/projects/myproject/src +Info 320 [00:09:06.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 321 [00:09:07.000] Search path: /user/username/projects/myproject/src/helpers +Info 322 [00:09:08.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 323 [00:09:09.000] Search path: /user/username/projects/myproject/src/helpers +Info 324 [00:09:10.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 325 [00:09:11.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig-src.json +Info 326 [00:09:12.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json +Info 327 [00:09:13.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json","reason":"Creating project referenced by : /user/username/projects/myproject/tsconfig.json as it references project /user/username/projects/myproject/tsconfig-src.json"}} -Info 340 [00:09:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 341 [00:09:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 342 [00:09:28.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info 343 [00:09:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 344 [00:09:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 345 [00:09:31.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 346 [00:09:32.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 347 [00:09:33.000] Files (4) +Info 328 [00:09:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 329 [00:09:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json +Info 330 [00:09:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 331 [00:09:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 332 [00:09:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 333 [00:09:19.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 334 [00:09:20.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1549,20 +1536,19 @@ Info 347 [00:09:33.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 348 [00:09:34.000] ----------------------------------------------- -Info 349 [00:09:35.000] event: +Info 335 [00:09:21.000] ----------------------------------------------- +Info 336 [00:09:22.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json"}} -Info 350 [00:09:36.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect2.json -Info 351 [00:09:37.000] event: +Info 337 [00:09:23.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect2.json +Info 338 [00:09:24.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect2.json","reason":"Creating project referenced by : /user/username/projects/myproject/tsconfig.json as it references project /user/username/projects/myproject/tsconfig-src.json"}} -Info 352 [00:09:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 353 [00:09:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info -Info 354 [00:09:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json -Info 355 [00:09:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info 356 [00:09:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info 357 [00:09:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 358 [00:09:44.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) -Info 359 [00:09:45.000] Files (4) +Info 339 [00:09:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info +Info 340 [00:09:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json +Info 341 [00:09:27.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots +Info 342 [00:09:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots +Info 343 [00:09:29.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 344 [00:09:30.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) +Info 345 [00:09:31.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1578,31 +1564,31 @@ Info 359 [00:09:45.000] Files (4) indirect2/main.ts Part of 'files' list in tsconfig.json -Info 360 [00:09:46.000] ----------------------------------------------- -Info 361 [00:09:47.000] event: +Info 346 [00:09:32.000] ----------------------------------------------- +Info 347 [00:09:33.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect2.json"}} -Info 362 [00:09:48.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect1.json -Info 363 [00:09:49.000] Search path: /user/username/projects/myproject/src/helpers -Info 364 [00:09:50.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 365 [00:09:51.000] Search path: /user/username/projects/myproject/src/helpers -Info 366 [00:09:52.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 367 [00:09:53.000] Search path: /user/username/projects/myproject/src -Info 368 [00:09:54.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 369 [00:09:55.000] Search path: /user/username/projects/myproject/src -Info 370 [00:09:56.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 371 [00:09:57.000] Search path: /user/username/projects/myproject/src -Info 372 [00:09:58.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 373 [00:09:59.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect2.json -Info 374 [00:10:00.000] Search path: /user/username/projects/myproject/src/helpers -Info 375 [00:10:01.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 376 [00:10:02.000] Search path: /user/username/projects/myproject/src/helpers -Info 377 [00:10:03.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 378 [00:10:04.000] Search path: /user/username/projects/myproject/src -Info 379 [00:10:05.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 380 [00:10:06.000] Search path: /user/username/projects/myproject/src -Info 381 [00:10:07.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 382 [00:10:08.000] Search path: /user/username/projects/myproject/src -Info 383 [00:10:09.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 348 [00:09:34.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect1.json +Info 349 [00:09:35.000] Search path: /user/username/projects/myproject/src/helpers +Info 350 [00:09:36.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 351 [00:09:37.000] Search path: /user/username/projects/myproject/src/helpers +Info 352 [00:09:38.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 353 [00:09:39.000] Search path: /user/username/projects/myproject/src +Info 354 [00:09:40.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 355 [00:09:41.000] Search path: /user/username/projects/myproject/src +Info 356 [00:09:42.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 357 [00:09:43.000] Search path: /user/username/projects/myproject/src +Info 358 [00:09:44.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 359 [00:09:45.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect2.json +Info 360 [00:09:46.000] Search path: /user/username/projects/myproject/src/helpers +Info 361 [00:09:47.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 362 [00:09:48.000] Search path: /user/username/projects/myproject/src/helpers +Info 363 [00:09:49.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 364 [00:09:50.000] Search path: /user/username/projects/myproject/src +Info 365 [00:09:51.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 366 [00:09:52.000] Search path: /user/username/projects/myproject/src +Info 367 [00:09:53.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 368 [00:09:54.000] Search path: /user/username/projects/myproject/src +Info 369 [00:09:55.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -1649,7 +1635,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 384 [00:10:10.000] response: +Info 370 [00:09:56.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/root-file-is-file-from-referenced-project-and-using-declaration-maps.js b/tests/baselines/reference/tsserver/projectReferences/root-file-is-file-from-referenced-project-and-using-declaration-maps.js index 8dc2b67c4a7d7..aa5be24bda747 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 @@ -253,19 +253,18 @@ Info 6 [00:01:23.000] Config: /user/username/projects/project/src/common/tsco } Info 7 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common 1 undefined Config: /user/username/projects/project/src/common/tsconfig.json WatchType: Wild card directory Info 8 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common 1 undefined Config: /user/username/projects/project/src/common/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/input/keyboard.test.ts 500 undefined WatchType: Closed Script info -Info 11 [00:01:28.000] Starting updateGraphWorker: Project: /user/username/projects/project/src/common/tsconfig.json -Info 12 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 14 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 15 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 16 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 17 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 18 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 19 [00:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/project/src/common/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:37.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) -Info 21 [00:01:38.000] Files (3) +Info 9 [00:01:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/input/keyboard.test.ts 500 undefined WatchType: Closed Script info +Info 10 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/project/src/common/tsconfig.json +Info 11 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 13 [00:01:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 14 [00:01:31.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 15 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 16 [00:01:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 17 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 18 [00:01:35.000] Finishing updateGraphWorker: Project: /user/username/projects/project/src/common/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:36.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) +Info 20 [00:01:37.000] Files (3) /a/lib/lib.d.ts /user/username/projects/project/src/common/input/keyboard.ts /user/username/projects/project/src/common/input/keyboard.test.ts @@ -279,24 +278,24 @@ Info 21 [00:01:38.000] Files (3) input/keyboard.test.ts Matched by include pattern './**/*' in 'tsconfig.json' -Info 22 [00:01:39.000] ----------------------------------------------- -Info 23 [00:01:40.000] Search path: /user/username/projects/project/src/common -Info 24 [00:01:41.000] For info: /user/username/projects/project/src/common/tsconfig.json :: Config file name: /user/username/projects/project/src/tsconfig.json -Info 25 [00:01:42.000] Creating configuration project /user/username/projects/project/src/tsconfig.json -Info 26 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/src/tsconfig.json 2000 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Config file -Info 27 [00:01:44.000] Search path: /user/username/projects/project/src -Info 28 [00:01:45.000] For info: /user/username/projects/project/src/tsconfig.json :: No config files found. -Info 29 [00:01:46.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) -Info 29 [00:01:47.000] Files (3) - -Info 29 [00:01:48.000] ----------------------------------------------- -Info 29 [00:01:49.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) -Info 29 [00:01:50.000] Files (0) InitialLoadPending - -Info 29 [00:01:51.000] ----------------------------------------------- -Info 29 [00:01:52.000] Open files: -Info 29 [00:01:53.000] FileName: /user/username/projects/project/src/common/input/keyboard.ts ProjectRootPath: undefined -Info 29 [00:01:54.000] Projects: /user/username/projects/project/src/common/tsconfig.json +Info 21 [00:01:38.000] ----------------------------------------------- +Info 22 [00:01:39.000] Search path: /user/username/projects/project/src/common +Info 23 [00:01:40.000] For info: /user/username/projects/project/src/common/tsconfig.json :: Config file name: /user/username/projects/project/src/tsconfig.json +Info 24 [00:01:41.000] Creating configuration project /user/username/projects/project/src/tsconfig.json +Info 25 [00:01:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/src/tsconfig.json 2000 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Config file +Info 26 [00:01:43.000] Search path: /user/username/projects/project/src +Info 27 [00:01:44.000] For info: /user/username/projects/project/src/tsconfig.json :: No config files found. +Info 28 [00:01:45.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) +Info 28 [00:01:46.000] Files (3) + +Info 28 [00:01:47.000] ----------------------------------------------- +Info 28 [00:01:48.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) +Info 28 [00:01:49.000] Files (0) InitialLoadPending + +Info 28 [00:01:50.000] ----------------------------------------------- +Info 28 [00:01:51.000] Open files: +Info 28 [00:01:52.000] FileName: /user/username/projects/project/src/common/input/keyboard.ts ProjectRootPath: undefined +Info 28 [00:01:53.000] Projects: /user/username/projects/project/src/common/tsconfig.json After request PolledWatches:: @@ -321,11 +320,11 @@ FsWatchesRecursive:: /user/username/projects/project/src/common: {} -Info 29 [00:01:55.000] response: +Info 28 [00:01:54.000] response: { "responseRequired": false } -Info 30 [00:01:56.000] request: +Info 29 [00:01:55.000] request: { "seq": 0, "type": "request", @@ -358,10 +357,10 @@ FsWatchesRecursive:: /user/username/projects/project/src/common: {} -Info 31 [00:01:57.000] Search path: /user/username/projects/project/src -Info 32 [00:01:58.000] For info: /user/username/projects/project/src/terminal.ts :: Config file name: /user/username/projects/project/src/tsconfig.json -Info 33 [00:01:59.000] Loading configured project /user/username/projects/project/src/tsconfig.json -Info 34 [00:02:00.000] Config: /user/username/projects/project/src/tsconfig.json : { +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 +Info 33 [00:01:59.000] Config: /user/username/projects/project/src/tsconfig.json : { "rootNames": [ "/user/username/projects/project/src/terminal.ts", "/user/username/projects/project/src/common/input/keyboard.test.ts", @@ -389,18 +388,17 @@ Info 34 [00:02:00.000] Config: /user/username/projects/project/src/tsconfig.js } ] } -Info 35 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src 1 undefined Config: /user/username/projects/project/src/tsconfig.json WatchType: Wild card directory -Info 36 [00:02:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src 1 undefined Config: /user/username/projects/project/src/tsconfig.json WatchType: Wild card directory -Info 37 [00:02:03.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 38 [00:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/project/src/tsconfig.json -Info 39 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/out/input/keyboard.d.ts 500 undefined WatchType: Closed Script info -Info 40 [00:02:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots -Info 41 [00:02:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots -Info 42 [00:02:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots -Info 43 [00:02:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots -Info 44 [00:02:10.000] Finishing updateGraphWorker: Project: /user/username/projects/project/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:02:11.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) -Info 46 [00:02:12.000] Files (4) +Info 34 [00:02:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src 1 undefined Config: /user/username/projects/project/src/tsconfig.json WatchType: Wild card directory +Info 35 [00:02:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src 1 undefined Config: /user/username/projects/project/src/tsconfig.json WatchType: Wild card directory +Info 36 [00:02:02.000] Starting updateGraphWorker: Project: /user/username/projects/project/src/tsconfig.json +Info 37 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/out/input/keyboard.d.ts 500 undefined WatchType: Closed Script info +Info 38 [00:02:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots +Info 39 [00:02:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots +Info 40 [00:02:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots +Info 41 [00:02:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots +Info 42 [00:02:08.000] Finishing updateGraphWorker: Project: /user/username/projects/project/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:02:09.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) +Info 44 [00:02:10.000] Files (4) /a/lib/lib.d.ts /user/username/projects/project/out/input/keyboard.d.ts /user/username/projects/project/src/terminal.ts @@ -419,22 +417,22 @@ Info 46 [00:02:12.000] Files (4) common/input/keyboard.test.ts Matched by include pattern './**/*' in 'tsconfig.json' -Info 47 [00:02:13.000] ----------------------------------------------- -Info 48 [00:02:14.000] Search path: /user/username/projects/project/src -Info 49 [00:02:15.000] For info: /user/username/projects/project/src/tsconfig.json :: No config files found. -Info 50 [00:02:16.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) -Info 50 [00:02:17.000] Files (3) - -Info 50 [00:02:18.000] ----------------------------------------------- -Info 50 [00:02:19.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) -Info 50 [00:02:20.000] Files (4) - -Info 50 [00:02:21.000] ----------------------------------------------- -Info 50 [00:02:22.000] Open files: -Info 50 [00:02:23.000] FileName: /user/username/projects/project/src/common/input/keyboard.ts ProjectRootPath: undefined -Info 50 [00:02:24.000] Projects: /user/username/projects/project/src/common/tsconfig.json,/user/username/projects/project/src/tsconfig.json -Info 50 [00:02:25.000] FileName: /user/username/projects/project/src/terminal.ts ProjectRootPath: undefined -Info 50 [00:02:26.000] Projects: /user/username/projects/project/src/tsconfig.json +Info 45 [00:02:11.000] ----------------------------------------------- +Info 46 [00:02:12.000] Search path: /user/username/projects/project/src +Info 47 [00:02:13.000] For info: /user/username/projects/project/src/tsconfig.json :: No config files found. +Info 48 [00:02:14.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) +Info 48 [00:02:15.000] Files (3) + +Info 48 [00:02:16.000] ----------------------------------------------- +Info 48 [00:02:17.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) +Info 48 [00:02:18.000] Files (4) + +Info 48 [00:02:19.000] ----------------------------------------------- +Info 48 [00:02:20.000] Open files: +Info 48 [00:02:21.000] FileName: /user/username/projects/project/src/common/input/keyboard.ts ProjectRootPath: undefined +Info 48 [00:02:22.000] Projects: /user/username/projects/project/src/common/tsconfig.json,/user/username/projects/project/src/tsconfig.json +Info 48 [00:02:23.000] FileName: /user/username/projects/project/src/terminal.ts ProjectRootPath: undefined +Info 48 [00:02:24.000] Projects: /user/username/projects/project/src/tsconfig.json After request PolledWatches:: @@ -463,11 +461,11 @@ FsWatchesRecursive:: /user/username/projects/project/src: {} -Info 50 [00:02:27.000] response: +Info 48 [00:02:25.000] response: { "responseRequired": false } -Info 51 [00:02:28.000] request: +Info 49 [00:02:26.000] request: { "command": "references", "arguments": { @@ -506,13 +504,13 @@ FsWatchesRecursive:: /user/username/projects/project/src: {} -Info 52 [00:02:29.000] Finding references to /user/username/projects/project/src/common/input/keyboard.ts position 99 in project /user/username/projects/project/src/common/tsconfig.json -Info 53 [00:02:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/out/input/keyboard.d.ts.map 500 undefined WatchType: Closed Script info -Info 54 [00:02:31.000] Finding references to /user/username/projects/project/out/input/keyboard.d.ts position 24 in project /user/username/projects/project/src/tsconfig.json +Info 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 +Info 53 [00:02:30.000] Search path: /user/username/projects/project/src/common/input +Info 54 [00:02:31.000] For info: /user/username/projects/project/src/common/input/keyboard.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json Info 55 [00:02:32.000] Search path: /user/username/projects/project/src/common/input Info 56 [00:02:33.000] For info: /user/username/projects/project/src/common/input/keyboard.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json -Info 57 [00:02:34.000] Search path: /user/username/projects/project/src/common/input -Info 58 [00:02:35.000] For info: /user/username/projects/project/src/common/input/keyboard.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json After request PolledWatches:: @@ -543,7 +541,7 @@ FsWatchesRecursive:: /user/username/projects/project/src: {} -Info 59 [00:02:36.000] response: +Info 57 [00:02:34.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/root-file-is-file-from-referenced-project.js b/tests/baselines/reference/tsserver/projectReferences/root-file-is-file-from-referenced-project.js index ff84443dc1b43..06b72b4352908 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 @@ -253,19 +253,18 @@ Info 6 [00:01:23.000] Config: /user/username/projects/project/src/common/tsco } Info 7 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common 1 undefined Config: /user/username/projects/project/src/common/tsconfig.json WatchType: Wild card directory Info 8 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common 1 undefined Config: /user/username/projects/project/src/common/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/input/keyboard.test.ts 500 undefined WatchType: Closed Script info -Info 11 [00:01:28.000] Starting updateGraphWorker: Project: /user/username/projects/project/src/common/tsconfig.json -Info 12 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 14 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 15 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 16 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 17 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 18 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots -Info 19 [00:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/project/src/common/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:37.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) -Info 21 [00:01:38.000] Files (3) +Info 9 [00:01:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/input/keyboard.test.ts 500 undefined WatchType: Closed Script info +Info 10 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/project/src/common/tsconfig.json +Info 11 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 13 [00:01:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/common/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 14 [00:01:31.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 15 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 16 [00:01:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 17 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/common/tsconfig.json WatchType: Type roots +Info 18 [00:01:35.000] Finishing updateGraphWorker: Project: /user/username/projects/project/src/common/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:36.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) +Info 20 [00:01:37.000] Files (3) /a/lib/lib.d.ts /user/username/projects/project/src/common/input/keyboard.ts /user/username/projects/project/src/common/input/keyboard.test.ts @@ -279,24 +278,24 @@ Info 21 [00:01:38.000] Files (3) input/keyboard.test.ts Matched by include pattern './**/*' in 'tsconfig.json' -Info 22 [00:01:39.000] ----------------------------------------------- -Info 23 [00:01:40.000] Search path: /user/username/projects/project/src/common -Info 24 [00:01:41.000] For info: /user/username/projects/project/src/common/tsconfig.json :: Config file name: /user/username/projects/project/src/tsconfig.json -Info 25 [00:01:42.000] Creating configuration project /user/username/projects/project/src/tsconfig.json -Info 26 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/src/tsconfig.json 2000 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Config file -Info 27 [00:01:44.000] Search path: /user/username/projects/project/src -Info 28 [00:01:45.000] For info: /user/username/projects/project/src/tsconfig.json :: No config files found. -Info 29 [00:01:46.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) -Info 29 [00:01:47.000] Files (3) - -Info 29 [00:01:48.000] ----------------------------------------------- -Info 29 [00:01:49.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) -Info 29 [00:01:50.000] Files (0) InitialLoadPending - -Info 29 [00:01:51.000] ----------------------------------------------- -Info 29 [00:01:52.000] Open files: -Info 29 [00:01:53.000] FileName: /user/username/projects/project/src/common/input/keyboard.ts ProjectRootPath: undefined -Info 29 [00:01:54.000] Projects: /user/username/projects/project/src/common/tsconfig.json +Info 21 [00:01:38.000] ----------------------------------------------- +Info 22 [00:01:39.000] Search path: /user/username/projects/project/src/common +Info 23 [00:01:40.000] For info: /user/username/projects/project/src/common/tsconfig.json :: Config file name: /user/username/projects/project/src/tsconfig.json +Info 24 [00:01:41.000] Creating configuration project /user/username/projects/project/src/tsconfig.json +Info 25 [00:01:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/project/src/tsconfig.json 2000 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Config file +Info 26 [00:01:43.000] Search path: /user/username/projects/project/src +Info 27 [00:01:44.000] For info: /user/username/projects/project/src/tsconfig.json :: No config files found. +Info 28 [00:01:45.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) +Info 28 [00:01:46.000] Files (3) + +Info 28 [00:01:47.000] ----------------------------------------------- +Info 28 [00:01:48.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) +Info 28 [00:01:49.000] Files (0) InitialLoadPending + +Info 28 [00:01:50.000] ----------------------------------------------- +Info 28 [00:01:51.000] Open files: +Info 28 [00:01:52.000] FileName: /user/username/projects/project/src/common/input/keyboard.ts ProjectRootPath: undefined +Info 28 [00:01:53.000] Projects: /user/username/projects/project/src/common/tsconfig.json After request PolledWatches:: @@ -321,11 +320,11 @@ FsWatchesRecursive:: /user/username/projects/project/src/common: {} -Info 29 [00:01:55.000] response: +Info 28 [00:01:54.000] response: { "responseRequired": false } -Info 30 [00:01:56.000] request: +Info 29 [00:01:55.000] request: { "seq": 0, "type": "request", @@ -358,10 +357,10 @@ FsWatchesRecursive:: /user/username/projects/project/src/common: {} -Info 31 [00:01:57.000] Search path: /user/username/projects/project/src -Info 32 [00:01:58.000] For info: /user/username/projects/project/src/terminal.ts :: Config file name: /user/username/projects/project/src/tsconfig.json -Info 33 [00:01:59.000] Loading configured project /user/username/projects/project/src/tsconfig.json -Info 34 [00:02:00.000] Config: /user/username/projects/project/src/tsconfig.json : { +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 +Info 33 [00:01:59.000] Config: /user/username/projects/project/src/tsconfig.json : { "rootNames": [ "/user/username/projects/project/src/terminal.ts", "/user/username/projects/project/src/common/input/keyboard.test.ts", @@ -389,17 +388,16 @@ Info 34 [00:02:00.000] Config: /user/username/projects/project/src/tsconfig.js } ] } -Info 35 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src 1 undefined Config: /user/username/projects/project/src/tsconfig.json WatchType: Wild card directory -Info 36 [00:02:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src 1 undefined Config: /user/username/projects/project/src/tsconfig.json WatchType: Wild card directory -Info 37 [00:02:03.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 38 [00:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/project/src/tsconfig.json -Info 39 [00:02:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots -Info 40 [00:02:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots -Info 41 [00:02:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots -Info 42 [00:02:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots -Info 43 [00:02:09.000] Finishing updateGraphWorker: Project: /user/username/projects/project/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [00:02:10.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) -Info 45 [00:02:11.000] Files (4) +Info 34 [00:02:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src 1 undefined Config: /user/username/projects/project/src/tsconfig.json WatchType: Wild card directory +Info 35 [00:02:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src 1 undefined Config: /user/username/projects/project/src/tsconfig.json WatchType: Wild card directory +Info 36 [00:02:02.000] Starting updateGraphWorker: Project: /user/username/projects/project/src/tsconfig.json +Info 37 [00:02:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots +Info 38 [00:02:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/src/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots +Info 39 [00:02:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots +Info 40 [00:02:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/project/node_modules/@types 1 undefined Project: /user/username/projects/project/src/tsconfig.json WatchType: Type roots +Info 41 [00:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/project/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:02:08.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) +Info 43 [00:02:09.000] Files (4) /a/lib/lib.d.ts /user/username/projects/project/src/common/input/keyboard.ts /user/username/projects/project/src/terminal.ts @@ -417,22 +415,22 @@ Info 45 [00:02:11.000] Files (4) common/input/keyboard.test.ts Matched by include pattern './**/*' in 'tsconfig.json' -Info 46 [00:02:12.000] ----------------------------------------------- -Info 47 [00:02:13.000] Search path: /user/username/projects/project/src -Info 48 [00:02:14.000] For info: /user/username/projects/project/src/tsconfig.json :: No config files found. -Info 49 [00:02:15.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) -Info 49 [00:02:16.000] Files (3) - -Info 49 [00:02:17.000] ----------------------------------------------- -Info 49 [00:02:18.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) -Info 49 [00:02:19.000] Files (4) - -Info 49 [00:02:20.000] ----------------------------------------------- -Info 49 [00:02:21.000] Open files: -Info 49 [00:02:22.000] FileName: /user/username/projects/project/src/common/input/keyboard.ts ProjectRootPath: undefined -Info 49 [00:02:23.000] Projects: /user/username/projects/project/src/common/tsconfig.json,/user/username/projects/project/src/tsconfig.json -Info 49 [00:02:24.000] FileName: /user/username/projects/project/src/terminal.ts ProjectRootPath: undefined -Info 49 [00:02:25.000] Projects: /user/username/projects/project/src/tsconfig.json +Info 44 [00:02:10.000] ----------------------------------------------- +Info 45 [00:02:11.000] Search path: /user/username/projects/project/src +Info 46 [00:02:12.000] For info: /user/username/projects/project/src/tsconfig.json :: No config files found. +Info 47 [00:02:13.000] Project '/user/username/projects/project/src/common/tsconfig.json' (Configured) +Info 47 [00:02:14.000] Files (3) + +Info 47 [00:02:15.000] ----------------------------------------------- +Info 47 [00:02:16.000] Project '/user/username/projects/project/src/tsconfig.json' (Configured) +Info 47 [00:02:17.000] Files (4) + +Info 47 [00:02:18.000] ----------------------------------------------- +Info 47 [00:02:19.000] Open files: +Info 47 [00:02:20.000] FileName: /user/username/projects/project/src/common/input/keyboard.ts ProjectRootPath: undefined +Info 47 [00:02:21.000] Projects: /user/username/projects/project/src/common/tsconfig.json,/user/username/projects/project/src/tsconfig.json +Info 47 [00:02:22.000] FileName: /user/username/projects/project/src/terminal.ts ProjectRootPath: undefined +Info 47 [00:02:23.000] Projects: /user/username/projects/project/src/tsconfig.json After request PolledWatches:: @@ -459,11 +457,11 @@ FsWatchesRecursive:: /user/username/projects/project/src: {} -Info 49 [00:02:26.000] response: +Info 47 [00:02:24.000] response: { "responseRequired": false } -Info 50 [00:02:27.000] request: +Info 48 [00:02:25.000] request: { "command": "references", "arguments": { @@ -500,18 +498,18 @@ FsWatchesRecursive:: /user/username/projects/project/src: {} -Info 51 [00:02:28.000] Finding references to /user/username/projects/project/src/common/input/keyboard.ts position 99 in project /user/username/projects/project/src/common/tsconfig.json -Info 52 [00:02:29.000] Finding references to /user/username/projects/project/src/common/input/keyboard.ts position 99 in project /user/username/projects/project/src/tsconfig.json +Info 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 +Info 52 [00:02:29.000] For info: /user/username/projects/project/src/common/input/keyboard.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json Info 53 [00:02:30.000] Search path: /user/username/projects/project/src/common/input Info 54 [00:02:31.000] For info: /user/username/projects/project/src/common/input/keyboard.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json Info 55 [00:02:32.000] Search path: /user/username/projects/project/src/common/input -Info 56 [00:02:33.000] For info: /user/username/projects/project/src/common/input/keyboard.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json +Info 56 [00:02:33.000] For info: /user/username/projects/project/src/common/input/keyboard.test.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json Info 57 [00:02:34.000] Search path: /user/username/projects/project/src/common/input Info 58 [00:02:35.000] For info: /user/username/projects/project/src/common/input/keyboard.test.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json Info 59 [00:02:36.000] Search path: /user/username/projects/project/src/common/input Info 60 [00:02:37.000] For info: /user/username/projects/project/src/common/input/keyboard.test.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json -Info 61 [00:02:38.000] Search path: /user/username/projects/project/src/common/input -Info 62 [00:02:39.000] For info: /user/username/projects/project/src/common/input/keyboard.test.ts :: Config file name: /user/username/projects/project/src/common/tsconfig.json After request PolledWatches:: @@ -538,7 +536,7 @@ FsWatchesRecursive:: /user/username/projects/project/src: {} -Info 63 [00:02:40.000] response: +Info 61 [00:02:38.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-first-indirect-project-but-not-in-another-one.js b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-first-indirect-project-but-not-in-another-one.js index 283da3ced8652..354793b7c6879 100644 --- a/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-first-indirect-project-but-not-in-another-one.js +++ b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-first-indirect-project-but-not-in-another-one.js @@ -25,10 +25,9 @@ Info 6 [00:01:15.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 7 [00:01:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 9 [00:01:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 10 [00:01:19.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 7 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 8 [00:01:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 9 [00:01:18.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -46,8 +45,8 @@ Info 10 [00:01:19.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 11 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 12 [00:01:21.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 10 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 11 [00:01:20.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -59,10 +58,10 @@ Info 12 [00:01:21.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 13 [00:01:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 14 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 15 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 16 [00:01:25.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 12 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 13 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 14 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 15 [00:01:24.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -79,15 +78,15 @@ Info 16 [00:01:25.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 17 [00:01:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 18 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 20 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 21 [00:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 22 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 23 [00:01:32.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:33.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 25 [00:01:34.000] Files (5) +Info 16 [00:01:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 17 [00:01:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 20 [00:01:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 21 [00:01:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 22 [00:01:31.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:32.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 24 [00:01:33.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -106,21 +105,20 @@ Info 25 [00:01:34.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 26 [00:01:35.000] ----------------------------------------------- -Info 27 [00:01:36.000] event: +Info 25 [00:01:34.000] ----------------------------------------------- +Info 26 [00:01:35.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 28 [00:01:37.000] event: +Info 27 [00:01:36.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":4,"tsSize":166,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":true,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 30 [00:01:39.000] event: +Info 28 [00:01:37.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 29 [00:01:38.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 36 [00:01:45.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 37 [00:01:46.000] Files (3) +Info 30 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 33 [00:01:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:43.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 35 [00:01:44.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -134,35 +132,34 @@ Info 37 [00:01:46.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 38 [00:01:47.000] ----------------------------------------------- -Info 39 [00:01:48.000] event: +Info 36 [00:01:45.000] ----------------------------------------------- +Info 37 [00:01:46.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 40 [00:01:49.000] event: +Info 38 [00:01:47.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"75d5ba36c0a162a329bf40235b10e96d2d129b95469e1f02c08da775fb38a2b4","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":77,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"other","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 41 [00:01:50.000] event: +Info 39 [00:01:48.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 42 [00:01:51.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 42 [00:01:52.000] Files (5) +Info 40 [00:01:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 40 [00:01:50.000] Files (5) -Info 42 [00:01:53.000] ----------------------------------------------- -Info 42 [00:01:54.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 42 [00:01:55.000] Files (3) +Info 40 [00:01:51.000] ----------------------------------------------- +Info 40 [00:01:52.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 40 [00:01:53.000] Files (3) -Info 42 [00:01:56.000] ----------------------------------------------- -Info 42 [00:01:57.000] Open files: -Info 42 [00:01:58.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 42 [00:01:59.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 42 [00:02:00.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 42 [00:02:01.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 42 [00:02:02.000] Search path: /dummy -Info 43 [00:02:03.000] For info: /dummy/dummy.ts :: No config files found. -Info 44 [00:02:04.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 45 [00:02:05.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 46 [00:02:06.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 47 [00:02:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 48 [00:02:08.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 49 [00:02:09.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 50 [00:02:10.000] Files (2) +Info 40 [00:01:54.000] ----------------------------------------------- +Info 40 [00:01:55.000] Open files: +Info 40 [00:01:56.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 40 [00:01:57.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 40 [00:01:58.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 40 [00:01:59.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 40 [00:02:00.000] Search path: /dummy +Info 41 [00:02:01.000] For info: /dummy/dummy.ts :: No config files found. +Info 42 [00:02:02.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 43 [00:02:03.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 44 [00:02:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 45 [00:02:05.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 46 [00:02:06.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 47 [00:02:07.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -172,61 +169,61 @@ Info 50 [00:02:10.000] Files (2) dummy.ts Root file specified for compilation -Info 51 [00:02:11.000] ----------------------------------------------- -Info 52 [00:02:12.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 52 [00:02:13.000] Files (5) +Info 48 [00:02:08.000] ----------------------------------------------- +Info 49 [00:02:09.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 49 [00:02:10.000] Files (5) -Info 52 [00:02:14.000] ----------------------------------------------- -Info 52 [00:02:15.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 52 [00:02:16.000] Files (3) +Info 49 [00:02:11.000] ----------------------------------------------- +Info 49 [00:02:12.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 49 [00:02:13.000] Files (3) -Info 52 [00:02:17.000] ----------------------------------------------- -Info 52 [00:02:18.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 52 [00:02:19.000] Files (2) +Info 49 [00:02:14.000] ----------------------------------------------- +Info 49 [00:02:15.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 49 [00:02:16.000] Files (2) -Info 52 [00:02:20.000] ----------------------------------------------- -Info 52 [00:02:21.000] Open files: -Info 52 [00:02:22.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 52 [00:02:23.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 52 [00:02:24.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 52 [00:02:25.000] Projects: /dev/null/inferredProject1* -Info 52 [00:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 53 [00:02:27.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 53 [00:02:28.000] Files (5) +Info 49 [00:02:17.000] ----------------------------------------------- +Info 49 [00:02:18.000] Open files: +Info 49 [00:02:19.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 49 [00:02:20.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 49 [00:02:21.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 49 [00:02:22.000] Projects: /dev/null/inferredProject1* +Info 49 [00:02:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:24.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 50 [00:02:25.000] Files (5) -Info 53 [00:02:29.000] ----------------------------------------------- -Info 53 [00:02:30.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 53 [00:02:31.000] Files (3) +Info 50 [00:02:26.000] ----------------------------------------------- +Info 50 [00:02:27.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 50 [00:02:28.000] Files (3) -Info 53 [00:02:32.000] ----------------------------------------------- -Info 53 [00:02:33.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 53 [00:02:34.000] Files (2) +Info 50 [00:02:29.000] ----------------------------------------------- +Info 50 [00:02:30.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 50 [00:02:31.000] Files (2) -Info 53 [00:02:35.000] ----------------------------------------------- -Info 53 [00:02:36.000] Open files: -Info 53 [00:02:37.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 53 [00:02:38.000] Projects: /dev/null/inferredProject1* -Info 53 [00:02:39.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 54 [00:02:40.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 54 [00:02:41.000] Files (5) +Info 50 [00:02:32.000] ----------------------------------------------- +Info 50 [00:02:33.000] Open files: +Info 50 [00:02:34.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 50 [00:02:35.000] Projects: /dev/null/inferredProject1* +Info 50 [00:02:36.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 51 [00:02:37.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 51 [00:02:38.000] Files (5) -Info 54 [00:02:42.000] ----------------------------------------------- -Info 54 [00:02:43.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 54 [00:02:44.000] Files (3) +Info 51 [00:02:39.000] ----------------------------------------------- +Info 51 [00:02:40.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 51 [00:02:41.000] Files (3) -Info 54 [00:02:45.000] ----------------------------------------------- -Info 54 [00:02:46.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 54 [00:02:47.000] Files (2) +Info 51 [00:02:42.000] ----------------------------------------------- +Info 51 [00:02:43.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 51 [00:02:44.000] Files (2) -Info 54 [00:02:48.000] ----------------------------------------------- -Info 54 [00:02:49.000] Open files: -Info 54 [00:02:50.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 55 [00:02:51.000] Search path: /dummy -Info 56 [00:02:52.000] For info: /dummy/dummy.ts :: No config files found. -Info 57 [00:02:53.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 58 [00:02:54.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 59 [00:02:55.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 60 [00:02:56.000] Files (2) +Info 51 [00:02:45.000] ----------------------------------------------- +Info 51 [00:02:46.000] Open files: +Info 51 [00:02:47.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 52 [00:02:48.000] Search path: /dummy +Info 53 [00:02:49.000] For info: /dummy/dummy.ts :: No config files found. +Info 54 [00:02:50.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 55 [00:02:51.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 56 [00:02:52.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 57 [00:02:53.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -236,10 +233,10 @@ Info 60 [00:02:56.000] Files (2) dummy.ts Root file specified for compilation -Info 61 [00:02:57.000] ----------------------------------------------- -Info 62 [00:02:58.000] `remove Project:: -Info 63 [00:02:59.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 64 [00:03:00.000] Files (5) +Info 58 [00:02:54.000] ----------------------------------------------- +Info 59 [00:02:55.000] `remove Project:: +Info 60 [00:02:56.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 61 [00:02:57.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -258,15 +255,15 @@ Info 64 [00:03:00.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 65 [00:03:01.000] ----------------------------------------------- -Info 66 [00:03:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 67 [00:03:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 68 [00:03:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 69 [00:03:05.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 70 [00:03:06.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 71 [00:03:07.000] `remove Project:: -Info 72 [00:03:08.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 73 [00:03:09.000] Files (3) +Info 62 [00:02:58.000] ----------------------------------------------- +Info 63 [00:02:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 64 [00:03:00.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 65 [00:03:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 66 [00:03:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 67 [00:03:03.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 68 [00:03:04.000] `remove Project:: +Info 69 [00:03:05.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 70 [00:03:06.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -280,30 +277,30 @@ Info 73 [00:03:09.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 74 [00:03:10.000] ----------------------------------------------- -Info 75 [00:03:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 76 [00:03:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 77 [00:03:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 78 [00:03:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 79 [00:03:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 80 [00:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 81 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 82 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 83 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 84 [00:03:20.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 84 [00:03:21.000] Files (2) +Info 71 [00:03:07.000] ----------------------------------------------- +Info 72 [00:03:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 73 [00:03:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 74 [00:03:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 75 [00:03:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 76 [00:03:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 77 [00:03:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 78 [00:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 79 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 80 [00:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 81 [00:03:17.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 81 [00:03:18.000] Files (2) -Info 84 [00:03:22.000] ----------------------------------------------- -Info 84 [00:03:23.000] Open files: -Info 84 [00:03:24.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 84 [00:03:25.000] Projects: /dev/null/inferredProject1* -Info 84 [00:03:26.000] Search path: /user/username/projects/myproject/src -Info 85 [00:03:27.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 86 [00:03:28.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 87 [00:03:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 88 [00:03:30.000] event: +Info 81 [00:03:19.000] ----------------------------------------------- +Info 81 [00:03:20.000] Open files: +Info 81 [00:03:21.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 81 [00:03:22.000] Projects: /dev/null/inferredProject1* +Info 81 [00:03:23.000] Search path: /user/username/projects/myproject/src +Info 82 [00:03:24.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 83 [00:03:25.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 84 [00:03:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 85 [00:03:27.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 89 [00:03:31.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 86 [00:03:28.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -323,10 +320,9 @@ Info 89 [00:03:31.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 90 [00:03:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 91 [00:03:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 92 [00:03:34.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 93 [00:03:35.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 87 [00:03:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 88 [00:03:30.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 89 [00:03:31.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -344,8 +340,8 @@ Info 93 [00:03:35.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 94 [00:03:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 95 [00:03:37.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 90 [00:03:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 91 [00:03:33.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -357,10 +353,10 @@ Info 95 [00:03:37.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 96 [00:03:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 97 [00:03:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 98 [00:03:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 99 [00:03:41.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 92 [00:03:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 93 [00:03:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 94 [00:03:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 95 [00:03:37.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -377,14 +373,14 @@ Info 99 [00:03:41.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 100 [00:03:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 101 [00:03:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 102 [00:03:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 103 [00:03:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 104 [00:03:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 105 [00:03:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 106 [00:03:48.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 107 [00:03:49.000] Files (5) +Info 96 [00:03:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 97 [00:03:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 98 [00:03:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 99 [00:03:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 100 [00:03:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 101 [00:03:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 102 [00:03:44.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 103 [00:03:45.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -403,19 +399,18 @@ Info 107 [00:03:49.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 108 [00:03:50.000] ----------------------------------------------- -Info 109 [00:03:51.000] event: +Info 104 [00:03:46.000] ----------------------------------------------- +Info 105 [00:03:47.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 110 [00:03:52.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 111 [00:03:53.000] event: +Info 106 [00:03:48.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 107 [00:03:49.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 112 [00:03:54.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 113 [00:03:55.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 114 [00:03:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 115 [00:03:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 116 [00:03:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 117 [00:03:59.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 118 [00:04:00.000] Files (3) +Info 108 [00:03:50.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 109 [00:03:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 110 [00:03:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 111 [00:03:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 112 [00:03:54.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 113 [00:03:55.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -429,50 +424,50 @@ Info 118 [00:04:00.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 119 [00:04:01.000] ----------------------------------------------- -Info 120 [00:04:02.000] event: +Info 114 [00:03:56.000] ----------------------------------------------- +Info 115 [00:03:57.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 121 [00:04:03.000] event: +Info 116 [00:03:58.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 122 [00:04:04.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 122 [00:04:05.000] Files (5) +Info 117 [00:03:59.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 117 [00:04:00.000] Files (5) -Info 122 [00:04:06.000] ----------------------------------------------- -Info 122 [00:04:07.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 122 [00:04:08.000] Files (3) +Info 117 [00:04:01.000] ----------------------------------------------- +Info 117 [00:04:02.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 117 [00:04:03.000] Files (3) -Info 122 [00:04:09.000] ----------------------------------------------- -Info 122 [00:04:10.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 122 [00:04:11.000] Files (2) +Info 117 [00:04:04.000] ----------------------------------------------- +Info 117 [00:04:05.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 117 [00:04:06.000] Files (2) -Info 122 [00:04:12.000] ----------------------------------------------- -Info 122 [00:04:13.000] Open files: -Info 122 [00:04:14.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 122 [00:04:15.000] Projects: /dev/null/inferredProject1* -Info 122 [00:04:16.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 122 [00:04:17.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 122 [00:04:18.000] reload projects. -Info 123 [00:04:19.000] Scheduled: /dev/null/inferredProject1* -Info 124 [00:04:20.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 125 [00:04:21.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json -Info 126 [00:04:22.000] Scheduled: *ensureProjectForOpenFiles* -Info 127 [00:04:23.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 117 [00:04:07.000] ----------------------------------------------- +Info 117 [00:04:08.000] Open files: +Info 117 [00:04:09.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 117 [00:04:10.000] Projects: /dev/null/inferredProject1* +Info 117 [00:04:11.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 117 [00:04:12.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 117 [00:04:13.000] reload projects. +Info 118 [00:04:14.000] Scheduled: /dev/null/inferredProject1* +Info 119 [00:04:15.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 120 [00:04:16.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json +Info 121 [00:04:17.000] Scheduled: *ensureProjectForOpenFiles* +Info 122 [00:04:18.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 123 [00:04:19.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 124 [00:04:20.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 125 [00:04:21.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 126 [00:04:22.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 127 [00:04:23.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one Info 128 [00:04:24.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 129 [00:04:25.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 130 [00:04:26.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 131 [00:04:27.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 132 [00:04:28.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one -Info 133 [00:04:29.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 134 [00:04:30.000] Search path: /dummy -Info 135 [00:04:31.000] For info: /dummy/dummy.ts :: No config files found. -Info 136 [00:04:32.000] Search path: /user/username/projects/myproject/src -Info 137 [00:04:33.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 138 [00:04:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 139 [00:04:35.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 140 [00:04:36.000] Reloading configured project /user/username/projects/myproject/tsconfig.json -Info 141 [00:04:37.000] event: +Info 129 [00:04:25.000] Search path: /dummy +Info 130 [00:04:26.000] For info: /dummy/dummy.ts :: No config files found. +Info 131 [00:04:27.000] Search path: /user/username/projects/myproject/src +Info 132 [00:04:28.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 133 [00:04:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 134 [00:04:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 135 [00:04:31.000] Reloading configured project /user/username/projects/myproject/tsconfig.json +Info 136 [00:04:32.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"User requested reload projects"}} -Info 142 [00:04:38.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 137 [00:04:33.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -492,9 +487,8 @@ Info 142 [00:04:38.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 143 [00:04:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 144 [00:04:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 145 [00:04:41.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 138 [00:04:34.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 139 [00:04:35.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -512,7 +506,7 @@ Info 145 [00:04:41.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 146 [00:04:42.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 140 [00:04:36.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -524,7 +518,7 @@ Info 146 [00:04:42.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 147 [00:04:43.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 141 [00:04:37.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -541,69 +535,68 @@ Info 147 [00:04:43.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 148 [00:04:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 149 [00:04:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 150 [00:04:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 151 [00:04:47.000] Different program with same set of files -Info 152 [00:04:48.000] event: +Info 142 [00:04:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 143 [00:04:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 144 [00:04:40.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 145 [00:04:41.000] Different program with same set of files +Info 146 [00:04:42.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 153 [00:04:49.000] event: +Info 147 [00:04:43.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig.json","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 154 [00:04:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 155 [00:04:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 156 [00:04:52.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json -Info 157 [00:04:53.000] event: +Info 148 [00:04:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 149 [00:04:45.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 150 [00:04:46.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json +Info 151 [00:04:47.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"User requested reload projects"}} -Info 158 [00:04:54.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 159 [00:04:55.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 160 [00:04:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 161 [00:04:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 162 [00:04:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 163 [00:04:59.000] Different program with same set of files -Info 164 [00:05:00.000] event: +Info 152 [00:04:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 153 [00:04:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 154 [00:04:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 155 [00:04:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 156 [00:04:52.000] Different program with same set of files +Info 157 [00:04:53.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 165 [00:05:01.000] event: +Info 158 [00:04:54.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig-src.json","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 166 [00:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 167 [00:05:03.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 168 [00:05:04.000] Before ensureProjectForOpenFiles: -Info 169 [00:05:05.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 169 [00:05:06.000] Files (5) +Info 159 [00:04:55.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 160 [00:04:56.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 161 [00:04:57.000] Before ensureProjectForOpenFiles: +Info 162 [00:04:58.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 162 [00:04:59.000] Files (5) -Info 169 [00:05:07.000] ----------------------------------------------- -Info 169 [00:05:08.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 169 [00:05:09.000] Files (3) +Info 162 [00:05:00.000] ----------------------------------------------- +Info 162 [00:05:01.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 162 [00:05:02.000] Files (3) -Info 169 [00:05:10.000] ----------------------------------------------- -Info 169 [00:05:11.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 169 [00:05:12.000] Files (2) +Info 162 [00:05:03.000] ----------------------------------------------- +Info 162 [00:05:04.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 162 [00:05:05.000] Files (2) -Info 169 [00:05:13.000] ----------------------------------------------- -Info 169 [00:05:14.000] Open files: -Info 169 [00:05:15.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 169 [00:05:16.000] Projects: /dev/null/inferredProject1* -Info 169 [00:05:17.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 169 [00:05:18.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 169 [00:05:19.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 170 [00:05:20.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 171 [00:05:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 172 [00:05:22.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 173 [00:05:23.000] Different program with same set of files -Info 174 [00:05:24.000] After ensureProjectForOpenFiles: -Info 175 [00:05:25.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 175 [00:05:26.000] Files (5) +Info 162 [00:05:06.000] ----------------------------------------------- +Info 162 [00:05:07.000] Open files: +Info 162 [00:05:08.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 162 [00:05:09.000] Projects: /dev/null/inferredProject1* +Info 162 [00:05:10.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 162 [00:05:11.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 162 [00:05:12.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 163 [00:05:13.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 164 [00:05:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 165 [00:05:15.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 166 [00:05:16.000] Different program with same set of files +Info 167 [00:05:17.000] After ensureProjectForOpenFiles: +Info 168 [00:05:18.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 168 [00:05:19.000] Files (5) -Info 175 [00:05:27.000] ----------------------------------------------- -Info 175 [00:05:28.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 175 [00:05:29.000] Files (3) +Info 168 [00:05:20.000] ----------------------------------------------- +Info 168 [00:05:21.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 168 [00:05:22.000] Files (3) -Info 175 [00:05:30.000] ----------------------------------------------- -Info 175 [00:05:31.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 175 [00:05:32.000] Files (2) +Info 168 [00:05:23.000] ----------------------------------------------- +Info 168 [00:05:24.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 168 [00:05:25.000] Files (2) -Info 175 [00:05:33.000] ----------------------------------------------- -Info 175 [00:05:34.000] Open files: -Info 175 [00:05:35.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 175 [00:05:36.000] Projects: /dev/null/inferredProject1* -Info 175 [00:05:37.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 175 [00:05:38.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json \ No newline at end of file +Info 168 [00:05:26.000] ----------------------------------------------- +Info 168 [00:05:27.000] Open files: +Info 168 [00:05:28.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 168 [00:05:29.000] Projects: /dev/null/inferredProject1* +Info 168 [00:05:30.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 168 [00:05:31.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-indirect-project.js b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-indirect-project.js index ad1297cb3c257..feafe070741b2 100644 --- a/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-indirect-project.js +++ b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set-in-indirect-project.js @@ -21,10 +21,9 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 7 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 10 [00:01:13.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 7 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 8 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 9 [00:01:12.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -42,8 +41,8 @@ Info 10 [00:01:13.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 12 [00:01:15.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 10 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 11 [00:01:14.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -55,17 +54,17 @@ Info 12 [00:01:15.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 16 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 21 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 22 [00:01:25.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 23 [00:01:26.000] Files (5) +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 15 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 16 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 21 [00:01:24.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 22 [00:01:25.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -84,21 +83,20 @@ Info 23 [00:01:26.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 24 [00:01:27.000] ----------------------------------------------- -Info 25 [00:01:28.000] event: +Info 23 [00:01:26.000] ----------------------------------------------- +Info 24 [00:01:27.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 26 [00:01:29.000] event: +Info 25 [00:01:28.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":4,"tsSize":166,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":true,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 27 [00:01:30.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json -Info 28 [00:01:31.000] event: +Info 26 [00:01:29.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json +Info 27 [00:01:30.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 29 [00:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 30 [00:01:33.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info 31 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 32 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 33 [00:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 34 [00:01:37.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 35 [00:01:38.000] Files (4) +Info 28 [00:01:31.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json +Info 29 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 30 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 31 [00:01:34.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 32 [00:01:35.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 33 [00:01:36.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -114,35 +112,34 @@ Info 35 [00:01:38.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 36 [00:01:39.000] ----------------------------------------------- -Info 37 [00:01:40.000] event: +Info 34 [00:01:37.000] ----------------------------------------------- +Info 35 [00:01:38.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json"}} -Info 38 [00:01:41.000] event: +Info 36 [00:01:39.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"9ccc3aed1af08832ccb25ea453f7b771199f56af238b53cc428549dbd2d59246","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":"","disableReferencedProjectLoad":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":true,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"other","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 39 [00:01:42.000] event: +Info 37 [00:01:40.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 40 [00:01:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 40 [00:01:44.000] Files (5) +Info 38 [00:01:41.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 38 [00:01:42.000] Files (5) -Info 40 [00:01:45.000] ----------------------------------------------- -Info 40 [00:01:46.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 40 [00:01:47.000] Files (4) +Info 38 [00:01:43.000] ----------------------------------------------- +Info 38 [00:01:44.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 38 [00:01:45.000] Files (4) -Info 40 [00:01:48.000] ----------------------------------------------- -Info 40 [00:01:49.000] Open files: -Info 40 [00:01:50.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 40 [00:01:51.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-indirect1.json -Info 40 [00:01:52.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig.json -Info 40 [00:01:53.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: undefined -Info 40 [00:01:54.000] Search path: /dummy -Info 41 [00:01:55.000] For info: /dummy/dummy.ts :: No config files found. -Info 42 [00:01:56.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 43 [00:01:57.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 44 [00:01:58.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 45 [00:01:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 46 [00:02:00.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 47 [00:02:01.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 48 [00:02:02.000] Files (2) +Info 38 [00:01:46.000] ----------------------------------------------- +Info 38 [00:01:47.000] Open files: +Info 38 [00:01:48.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 38 [00:01:49.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-indirect1.json +Info 38 [00:01:50.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig.json +Info 38 [00:01:51.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: undefined +Info 38 [00:01:52.000] Search path: /dummy +Info 39 [00:01:53.000] For info: /dummy/dummy.ts :: No config files found. +Info 40 [00:01:54.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 41 [00:01:55.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 42 [00:01:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 43 [00:01:57.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:58.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 45 [00:01:59.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -152,61 +149,61 @@ Info 48 [00:02:02.000] Files (2) dummy.ts Root file specified for compilation -Info 49 [00:02:03.000] ----------------------------------------------- -Info 50 [00:02:04.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 50 [00:02:05.000] Files (5) +Info 46 [00:02:00.000] ----------------------------------------------- +Info 47 [00:02:01.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 47 [00:02:02.000] Files (5) -Info 50 [00:02:06.000] ----------------------------------------------- -Info 50 [00:02:07.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 50 [00:02:08.000] Files (4) +Info 47 [00:02:03.000] ----------------------------------------------- +Info 47 [00:02:04.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 47 [00:02:05.000] Files (4) -Info 50 [00:02:09.000] ----------------------------------------------- -Info 50 [00:02:10.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 50 [00:02:11.000] Files (2) +Info 47 [00:02:06.000] ----------------------------------------------- +Info 47 [00:02:07.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 47 [00:02:08.000] Files (2) -Info 50 [00:02:12.000] ----------------------------------------------- -Info 50 [00:02:13.000] Open files: -Info 50 [00:02:14.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 50 [00:02:15.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-indirect1.json -Info 50 [00:02:16.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 50 [00:02:17.000] Projects: /dev/null/inferredProject1* -Info 50 [00:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 51 [00:02:19.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 51 [00:02:20.000] Files (5) +Info 47 [00:02:09.000] ----------------------------------------------- +Info 47 [00:02:10.000] Open files: +Info 47 [00:02:11.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 47 [00:02:12.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-indirect1.json +Info 47 [00:02:13.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 47 [00:02:14.000] Projects: /dev/null/inferredProject1* +Info 47 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 48 [00:02:16.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 48 [00:02:17.000] Files (5) -Info 51 [00:02:21.000] ----------------------------------------------- -Info 51 [00:02:22.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 51 [00:02:23.000] Files (4) +Info 48 [00:02:18.000] ----------------------------------------------- +Info 48 [00:02:19.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 48 [00:02:20.000] Files (4) -Info 51 [00:02:24.000] ----------------------------------------------- -Info 51 [00:02:25.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 51 [00:02:26.000] Files (2) +Info 48 [00:02:21.000] ----------------------------------------------- +Info 48 [00:02:22.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 48 [00:02:23.000] Files (2) -Info 51 [00:02:27.000] ----------------------------------------------- -Info 51 [00:02:28.000] Open files: -Info 51 [00:02:29.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 51 [00:02:30.000] Projects: /dev/null/inferredProject1* -Info 51 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 52 [00:02:32.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 52 [00:02:33.000] Files (5) +Info 48 [00:02:24.000] ----------------------------------------------- +Info 48 [00:02:25.000] Open files: +Info 48 [00:02:26.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 48 [00:02:27.000] Projects: /dev/null/inferredProject1* +Info 48 [00:02:28.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 49 [00:02:29.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 49 [00:02:30.000] Files (5) -Info 52 [00:02:34.000] ----------------------------------------------- -Info 52 [00:02:35.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 52 [00:02:36.000] Files (4) +Info 49 [00:02:31.000] ----------------------------------------------- +Info 49 [00:02:32.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 49 [00:02:33.000] Files (4) -Info 52 [00:02:37.000] ----------------------------------------------- -Info 52 [00:02:38.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 52 [00:02:39.000] Files (2) +Info 49 [00:02:34.000] ----------------------------------------------- +Info 49 [00:02:35.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 49 [00:02:36.000] Files (2) -Info 52 [00:02:40.000] ----------------------------------------------- -Info 52 [00:02:41.000] Open files: -Info 52 [00:02:42.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 53 [00:02:43.000] Search path: /dummy -Info 54 [00:02:44.000] For info: /dummy/dummy.ts :: No config files found. -Info 55 [00:02:45.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 56 [00:02:46.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 57 [00:02:47.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 58 [00:02:48.000] Files (2) +Info 49 [00:02:37.000] ----------------------------------------------- +Info 49 [00:02:38.000] Open files: +Info 49 [00:02:39.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:40.000] Search path: /dummy +Info 51 [00:02:41.000] For info: /dummy/dummy.ts :: No config files found. +Info 52 [00:02:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 53 [00:02:43.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 54 [00:02:44.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 55 [00:02:45.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -216,10 +213,10 @@ Info 58 [00:02:48.000] Files (2) dummy.ts Root file specified for compilation -Info 59 [00:02:49.000] ----------------------------------------------- -Info 60 [00:02:50.000] `remove Project:: -Info 61 [00:02:51.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 62 [00:02:52.000] Files (5) +Info 56 [00:02:46.000] ----------------------------------------------- +Info 57 [00:02:47.000] `remove Project:: +Info 58 [00:02:48.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 59 [00:02:49.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -238,13 +235,13 @@ Info 62 [00:02:52.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 63 [00:02:53.000] ----------------------------------------------- -Info 64 [00:02:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 65 [00:02:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 66 [00:02:56.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 67 [00:02:57.000] `remove Project:: -Info 68 [00:02:58.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 69 [00:02:59.000] Files (4) +Info 60 [00:02:50.000] ----------------------------------------------- +Info 61 [00:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 62 [00:02:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 63 [00:02:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 64 [00:02:54.000] `remove Project:: +Info 65 [00:02:55.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 66 [00:02:56.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -260,31 +257,31 @@ Info 69 [00:02:59.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 70 [00:03:00.000] ----------------------------------------------- -Info 71 [00:03:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 72 [00:03:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 73 [00:03:03.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 74 [00:03:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 75 [00:03:05.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 76 [00:03:06.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 77 [00:03:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 78 [00:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 79 [00:03:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 80 [00:03:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 81 [00:03:11.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 81 [00:03:12.000] Files (2) +Info 67 [00:02:57.000] ----------------------------------------------- +Info 68 [00:02:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 69 [00:02:59.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 70 [00:03:00.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 71 [00:03:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 72 [00:03:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 73 [00:03:03.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 74 [00:03:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 75 [00:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 76 [00:03:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 77 [00:03:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 78 [00:03:08.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 78 [00:03:09.000] Files (2) -Info 81 [00:03:13.000] ----------------------------------------------- -Info 81 [00:03:14.000] Open files: -Info 81 [00:03:15.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 81 [00:03:16.000] Projects: /dev/null/inferredProject1* -Info 81 [00:03:17.000] Search path: /user/username/projects/myproject/src -Info 82 [00:03:18.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 83 [00:03:19.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 84 [00:03:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 85 [00:03:21.000] event: +Info 78 [00:03:10.000] ----------------------------------------------- +Info 78 [00:03:11.000] Open files: +Info 78 [00:03:12.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 78 [00:03:13.000] Projects: /dev/null/inferredProject1* +Info 78 [00:03:14.000] Search path: /user/username/projects/myproject/src +Info 79 [00:03:15.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 80 [00:03:16.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 81 [00:03:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 82 [00:03:18.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 86 [00:03:22.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 83 [00:03:19.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -300,10 +297,9 @@ Info 86 [00:03:22.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 87 [00:03:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 88 [00:03:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 89 [00:03:25.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 90 [00:03:26.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 84 [00:03:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 85 [00:03:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 86 [00:03:22.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -321,8 +317,8 @@ Info 90 [00:03:26.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 91 [00:03:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 92 [00:03:28.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 87 [00:03:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 88 [00:03:24.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -334,16 +330,16 @@ Info 92 [00:03:28.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 93 [00:03:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 94 [00:03:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 95 [00:03:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 96 [00:03:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 97 [00:03:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 98 [00:03:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 99 [00:03:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 100 [00:03:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 101 [00:03:37.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 102 [00:03:38.000] Files (5) +Info 89 [00:03:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 90 [00:03:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 91 [00:03:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 92 [00:03:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 93 [00:03:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 94 [00:03:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 95 [00:03:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 96 [00:03:32.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 97 [00:03:33.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 98 [00:03:34.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -362,19 +358,18 @@ Info 102 [00:03:38.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 103 [00:03:39.000] ----------------------------------------------- -Info 104 [00:03:40.000] event: +Info 99 [00:03:35.000] ----------------------------------------------- +Info 100 [00:03:36.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 105 [00:03:41.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json -Info 106 [00:03:42.000] event: +Info 101 [00:03:37.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json +Info 102 [00:03:38.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 107 [00:03:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 108 [00:03:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info 109 [00:03:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 110 [00:03:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 111 [00:03:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 112 [00:03:48.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 113 [00:03:49.000] Files (4) +Info 103 [00:03:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json +Info 104 [00:03:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 105 [00:03:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 106 [00:03:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 107 [00:03:43.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 108 [00:03:44.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -390,51 +385,51 @@ Info 113 [00:03:49.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 114 [00:03:50.000] ----------------------------------------------- -Info 115 [00:03:51.000] event: +Info 109 [00:03:45.000] ----------------------------------------------- +Info 110 [00:03:46.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json"}} -Info 116 [00:03:52.000] event: +Info 111 [00:03:47.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 117 [00:03:53.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 117 [00:03:54.000] Files (5) +Info 112 [00:03:48.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 112 [00:03:49.000] Files (5) -Info 117 [00:03:55.000] ----------------------------------------------- -Info 117 [00:03:56.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 117 [00:03:57.000] Files (4) +Info 112 [00:03:50.000] ----------------------------------------------- +Info 112 [00:03:51.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 112 [00:03:52.000] Files (4) -Info 117 [00:03:58.000] ----------------------------------------------- -Info 117 [00:03:59.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 117 [00:04:00.000] Files (2) +Info 112 [00:03:53.000] ----------------------------------------------- +Info 112 [00:03:54.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 112 [00:03:55.000] Files (2) -Info 117 [00:04:01.000] ----------------------------------------------- -Info 117 [00:04:02.000] Open files: -Info 117 [00:04:03.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 117 [00:04:04.000] Projects: /dev/null/inferredProject1* -Info 117 [00:04:05.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 117 [00:04:06.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-indirect1.json -Info 117 [00:04:07.000] reload projects. -Info 118 [00:04:08.000] Scheduled: /dev/null/inferredProject1* -Info 119 [00:04:09.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 120 [00:04:10.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json -Info 121 [00:04:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 112 [00:03:56.000] ----------------------------------------------- +Info 112 [00:03:57.000] Open files: +Info 112 [00:03:58.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 112 [00:03:59.000] Projects: /dev/null/inferredProject1* +Info 112 [00:04:00.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 112 [00:04:01.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-indirect1.json +Info 112 [00:04:02.000] reload projects. +Info 113 [00:04:03.000] Scheduled: /dev/null/inferredProject1* +Info 114 [00:04:04.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 115 [00:04:05.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json +Info 116 [00:04:06.000] Scheduled: *ensureProjectForOpenFiles* +Info 117 [00:04:07.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 118 [00:04:08.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 119 [00:04:09.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 120 [00:04:10.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json, Cancelled earlier one +Info 121 [00:04:11.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one Info 122 [00:04:12.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 123 [00:04:13.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 124 [00:04:14.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 125 [00:04:15.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json, Cancelled earlier one -Info 126 [00:04:16.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 127 [00:04:17.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 128 [00:04:18.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json, Cancelled earlier one -Info 129 [00:04:19.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 130 [00:04:20.000] Search path: /dummy -Info 131 [00:04:21.000] For info: /dummy/dummy.ts :: No config files found. -Info 132 [00:04:22.000] Search path: /user/username/projects/myproject/src -Info 133 [00:04:23.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 134 [00:04:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 135 [00:04:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 136 [00:04:26.000] Reloading configured project /user/username/projects/myproject/tsconfig.json -Info 137 [00:04:27.000] event: +Info 123 [00:04:13.000] Scheduled: /user/username/projects/myproject/tsconfig-indirect1.json, Cancelled earlier one +Info 124 [00:04:14.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 125 [00:04:15.000] Search path: /dummy +Info 126 [00:04:16.000] For info: /dummy/dummy.ts :: No config files found. +Info 127 [00:04:17.000] Search path: /user/username/projects/myproject/src +Info 128 [00:04:18.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 129 [00:04:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 130 [00:04:20.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 131 [00:04:21.000] Reloading configured project /user/username/projects/myproject/tsconfig.json +Info 132 [00:04:22.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"User requested reload projects"}} -Info 138 [00:04:28.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 133 [00:04:23.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -450,9 +445,8 @@ Info 138 [00:04:28.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 139 [00:04:29.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 140 [00:04:30.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 141 [00:04:31.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 134 [00:04:24.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 135 [00:04:25.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -470,7 +464,7 @@ Info 141 [00:04:31.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 142 [00:04:32.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 136 [00:04:26.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -482,69 +476,68 @@ Info 142 [00:04:32.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 143 [00:04:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 144 [00:04:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 145 [00:04:35.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 146 [00:04:36.000] Different program with same set of files -Info 147 [00:04:37.000] event: +Info 137 [00:04:27.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 138 [00:04:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 139 [00:04:29.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 140 [00:04:30.000] Different program with same set of files +Info 141 [00:04:31.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 148 [00:04:38.000] event: +Info 142 [00:04:32.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig.json","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 149 [00:04:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 150 [00:04:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 151 [00:04:41.000] Reloading configured project /user/username/projects/myproject/tsconfig-indirect1.json -Info 152 [00:04:42.000] event: +Info 143 [00:04:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 144 [00:04:34.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 145 [00:04:35.000] Reloading configured project /user/username/projects/myproject/tsconfig-indirect1.json +Info 146 [00:04:36.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json","reason":"User requested reload projects"}} -Info 153 [00:04:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 154 [00:04:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info 155 [00:04:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 156 [00:04:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 157 [00:04:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 158 [00:04:48.000] Different program with same set of files -Info 159 [00:04:49.000] event: +Info 147 [00:04:37.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json +Info 148 [00:04:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 149 [00:04:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 150 [00:04:40.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 151 [00:04:41.000] Different program with same set of files +Info 152 [00:04:42.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json"}} -Info 160 [00:04:50.000] event: +Info 153 [00:04:43.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig-indirect1.json","configFile":"/user/username/projects/myproject/tsconfig-indirect1.json","diagnostics":[]}} -Info 161 [00:04:51.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 162 [00:04:52.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 163 [00:04:53.000] Before ensureProjectForOpenFiles: -Info 164 [00:04:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 164 [00:04:55.000] Files (5) +Info 154 [00:04:44.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 155 [00:04:45.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 156 [00:04:46.000] Before ensureProjectForOpenFiles: +Info 157 [00:04:47.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 157 [00:04:48.000] Files (5) -Info 164 [00:04:56.000] ----------------------------------------------- -Info 164 [00:04:57.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 164 [00:04:58.000] Files (4) +Info 157 [00:04:49.000] ----------------------------------------------- +Info 157 [00:04:50.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 157 [00:04:51.000] Files (4) -Info 164 [00:04:59.000] ----------------------------------------------- -Info 164 [00:05:00.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 164 [00:05:01.000] Files (2) +Info 157 [00:04:52.000] ----------------------------------------------- +Info 157 [00:04:53.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 157 [00:04:54.000] Files (2) -Info 164 [00:05:02.000] ----------------------------------------------- -Info 164 [00:05:03.000] Open files: -Info 164 [00:05:04.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 164 [00:05:05.000] Projects: /dev/null/inferredProject1* -Info 164 [00:05:06.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 164 [00:05:07.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-indirect1.json -Info 164 [00:05:08.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 165 [00:05:09.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 166 [00:05:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 167 [00:05:11.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 168 [00:05:12.000] Different program with same set of files -Info 169 [00:05:13.000] After ensureProjectForOpenFiles: -Info 170 [00:05:14.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 170 [00:05:15.000] Files (5) +Info 157 [00:04:55.000] ----------------------------------------------- +Info 157 [00:04:56.000] Open files: +Info 157 [00:04:57.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 157 [00:04:58.000] Projects: /dev/null/inferredProject1* +Info 157 [00:04:59.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 157 [00:05:00.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-indirect1.json +Info 157 [00:05:01.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 158 [00:05:02.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 159 [00:05:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 160 [00:05:04.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 161 [00:05:05.000] Different program with same set of files +Info 162 [00:05:06.000] After ensureProjectForOpenFiles: +Info 163 [00:05:07.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 163 [00:05:08.000] Files (5) -Info 170 [00:05:16.000] ----------------------------------------------- -Info 170 [00:05:17.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 170 [00:05:18.000] Files (4) +Info 163 [00:05:09.000] ----------------------------------------------- +Info 163 [00:05:10.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 163 [00:05:11.000] Files (4) -Info 170 [00:05:19.000] ----------------------------------------------- -Info 170 [00:05:20.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 170 [00:05:21.000] Files (2) +Info 163 [00:05:12.000] ----------------------------------------------- +Info 163 [00:05:13.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 163 [00:05:14.000] Files (2) -Info 170 [00:05:22.000] ----------------------------------------------- -Info 170 [00:05:23.000] Open files: -Info 170 [00:05:24.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 170 [00:05:25.000] Projects: /dev/null/inferredProject1* -Info 170 [00:05:26.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 170 [00:05:27.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-indirect1.json \ No newline at end of file +Info 163 [00:05:15.000] ----------------------------------------------- +Info 163 [00:05:16.000] Open files: +Info 163 [00:05:17.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 163 [00:05:18.000] Projects: /dev/null/inferredProject1* +Info 163 [00:05:19.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 163 [00:05:20.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-indirect1.json \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set.js b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set.js index a5e90397e1222..87be456d99a01 100644 --- a/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set.js +++ b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-disables-looking-into-the-child-project-if-disableReferencedProjectLoad-is-set.js @@ -22,10 +22,9 @@ Info 6 [00:01:03.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 7 [00:01:04.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 9 [00:01:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 10 [00:01:07.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 7 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 8 [00:01:05.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 9 [00:01:06.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -37,16 +36,16 @@ Info 10 [00:01:07.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 11 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 12 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 13 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 14 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 16 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 17 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 18 [00:01:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [00:01:16.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 20 [00:01:17.000] Files (4) +Info 10 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 11 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 12 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 13 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 16 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 17 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 18 [00:01:15.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 19 [00:01:16.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -62,31 +61,30 @@ Info 20 [00:01:17.000] Files (4) own/main.ts Part of 'files' list in tsconfig.json -Info 21 [00:01:18.000] ----------------------------------------------- -Info 22 [00:01:19.000] event: +Info 20 [00:01:17.000] ----------------------------------------------- +Info 21 [00:01:18.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 23 [00:01:20.000] event: +Info 22 [00:01:19.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","baseUrl":"","disableReferencedProjectLoad":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":true,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 24 [00:01:21.000] event: +Info 23 [00:01:20.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 25 [00:01:22.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 25 [00:01:23.000] Files (4) +Info 24 [00:01:21.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 24 [00:01:22.000] Files (4) -Info 25 [00:01:24.000] ----------------------------------------------- -Info 25 [00:01:25.000] Open files: -Info 25 [00:01:26.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 25 [00:01:27.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 25 [00:01:28.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig.json -Info 25 [00:01:29.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: undefined -Info 25 [00:01:30.000] Search path: /dummy -Info 26 [00:01:31.000] For info: /dummy/dummy.ts :: No config files found. -Info 27 [00:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 28 [00:01:33.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 29 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 30 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 31 [00:01:36.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 32 [00:01:37.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 33 [00:01:38.000] Files (2) +Info 24 [00:01:23.000] ----------------------------------------------- +Info 24 [00:01:24.000] Open files: +Info 24 [00:01:25.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 24 [00:01:26.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 24 [00:01:27.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig.json +Info 24 [00:01:28.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: undefined +Info 24 [00:01:29.000] Search path: /dummy +Info 25 [00:01:30.000] For info: /dummy/dummy.ts :: No config files found. +Info 26 [00:01:31.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 27 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 28 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 29 [00:01:34.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 30 [00:01:35.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 31 [00:01:36.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -96,49 +94,49 @@ Info 33 [00:01:38.000] Files (2) dummy.ts Root file specified for compilation -Info 34 [00:01:39.000] ----------------------------------------------- -Info 35 [00:01:40.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 35 [00:01:41.000] Files (4) +Info 32 [00:01:37.000] ----------------------------------------------- +Info 33 [00:01:38.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 33 [00:01:39.000] Files (4) -Info 35 [00:01:42.000] ----------------------------------------------- -Info 35 [00:01:43.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 35 [00:01:44.000] Files (2) +Info 33 [00:01:40.000] ----------------------------------------------- +Info 33 [00:01:41.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 33 [00:01:42.000] Files (2) -Info 35 [00:01:45.000] ----------------------------------------------- -Info 35 [00:01:46.000] Open files: -Info 35 [00:01:47.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 35 [00:01:48.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 35 [00:01:49.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 35 [00:01:50.000] Projects: /dev/null/inferredProject1* -Info 35 [00:01:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 36 [00:01:52.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 36 [00:01:53.000] Files (4) +Info 33 [00:01:43.000] ----------------------------------------------- +Info 33 [00:01:44.000] Open files: +Info 33 [00:01:45.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 33 [00:01:46.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 33 [00:01:47.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 33 [00:01:48.000] Projects: /dev/null/inferredProject1* +Info 33 [00:01:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 34 [00:01:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 34 [00:01:51.000] Files (4) -Info 36 [00:01:54.000] ----------------------------------------------- -Info 36 [00:01:55.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 36 [00:01:56.000] Files (2) +Info 34 [00:01:52.000] ----------------------------------------------- +Info 34 [00:01:53.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 34 [00:01:54.000] Files (2) -Info 36 [00:01:57.000] ----------------------------------------------- -Info 36 [00:01:58.000] Open files: -Info 36 [00:01:59.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 36 [00:02:00.000] Projects: /dev/null/inferredProject1* -Info 36 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 37 [00:02:02.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 37 [00:02:03.000] Files (4) +Info 34 [00:01:55.000] ----------------------------------------------- +Info 34 [00:01:56.000] Open files: +Info 34 [00:01:57.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 34 [00:01:58.000] Projects: /dev/null/inferredProject1* +Info 34 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 35 [00:02:00.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 35 [00:02:01.000] Files (4) -Info 37 [00:02:04.000] ----------------------------------------------- -Info 37 [00:02:05.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 37 [00:02:06.000] Files (2) +Info 35 [00:02:02.000] ----------------------------------------------- +Info 35 [00:02:03.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 35 [00:02:04.000] Files (2) -Info 37 [00:02:07.000] ----------------------------------------------- -Info 37 [00:02:08.000] Open files: -Info 37 [00:02:09.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 38 [00:02:10.000] Search path: /dummy -Info 39 [00:02:11.000] For info: /dummy/dummy.ts :: No config files found. -Info 40 [00:02:12.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 41 [00:02:13.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 42 [00:02:14.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 43 [00:02:15.000] Files (2) +Info 35 [00:02:05.000] ----------------------------------------------- +Info 35 [00:02:06.000] Open files: +Info 35 [00:02:07.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 36 [00:02:08.000] Search path: /dummy +Info 37 [00:02:09.000] For info: /dummy/dummy.ts :: No config files found. +Info 38 [00:02:10.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 39 [00:02:11.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 40 [00:02:12.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 41 [00:02:13.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -148,10 +146,10 @@ Info 43 [00:02:15.000] Files (2) dummy.ts Root file specified for compilation -Info 44 [00:02:16.000] ----------------------------------------------- -Info 45 [00:02:17.000] `remove Project:: -Info 46 [00:02:18.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 47 [00:02:19.000] Files (4) +Info 42 [00:02:14.000] ----------------------------------------------- +Info 43 [00:02:15.000] `remove Project:: +Info 44 [00:02:16.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 45 [00:02:17.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -167,30 +165,30 @@ Info 47 [00:02:19.000] Files (4) own/main.ts Part of 'files' list in tsconfig.json -Info 48 [00:02:20.000] ----------------------------------------------- -Info 49 [00:02:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 50 [00:02:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 51 [00:02:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 52 [00:02:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 53 [00:02:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 54 [00:02:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 55 [00:02:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 56 [00:02:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 57 [00:02:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 58 [00:02:30.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 58 [00:02:31.000] Files (2) +Info 46 [00:02:18.000] ----------------------------------------------- +Info 47 [00:02:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 48 [00:02:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 49 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 50 [00:02:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 51 [00:02:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 52 [00:02:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 53 [00:02:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 54 [00:02:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 55 [00:02:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 56 [00:02:28.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 56 [00:02:29.000] Files (2) -Info 58 [00:02:32.000] ----------------------------------------------- -Info 58 [00:02:33.000] Open files: -Info 58 [00:02:34.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 58 [00:02:35.000] Projects: /dev/null/inferredProject1* -Info 58 [00:02:36.000] Search path: /user/username/projects/myproject/src -Info 59 [00:02:37.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 60 [00:02:38.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 61 [00:02:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 62 [00:02:40.000] event: +Info 56 [00:02:30.000] ----------------------------------------------- +Info 56 [00:02:31.000] Open files: +Info 56 [00:02:32.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 56 [00:02:33.000] Projects: /dev/null/inferredProject1* +Info 56 [00:02:34.000] Search path: /user/username/projects/myproject/src +Info 57 [00:02:35.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 58 [00:02:36.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 59 [00:02:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 60 [00:02:38.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 63 [00:02:41.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 61 [00:02:39.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -207,10 +205,9 @@ Info 63 [00:02:41.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 64 [00:02:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 65 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 66 [00:02:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 67 [00:02:45.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 62 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 63 [00:02:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 64 [00:02:42.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -222,15 +219,15 @@ Info 67 [00:02:45.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 68 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 69 [00:02:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 70 [00:02:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 71 [00:02:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 72 [00:02:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 73 [00:02:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 74 [00:02:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 75 [00:02:53.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 76 [00:02:54.000] Files (4) +Info 65 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 66 [00:02:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 67 [00:02:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 68 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 69 [00:02:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 70 [00:02:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 71 [00:02:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 72 [00:02:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 73 [00:02:51.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -246,42 +243,42 @@ Info 76 [00:02:54.000] Files (4) own/main.ts Part of 'files' list in tsconfig.json -Info 77 [00:02:55.000] ----------------------------------------------- -Info 78 [00:02:56.000] event: +Info 74 [00:02:52.000] ----------------------------------------------- +Info 75 [00:02:53.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 79 [00:02:57.000] event: +Info 76 [00:02:54.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 80 [00:02:58.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 80 [00:02:59.000] Files (4) +Info 77 [00:02:55.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 77 [00:02:56.000] Files (4) -Info 80 [00:03:00.000] ----------------------------------------------- -Info 80 [00:03:01.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 80 [00:03:02.000] Files (2) +Info 77 [00:02:57.000] ----------------------------------------------- +Info 77 [00:02:58.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 77 [00:02:59.000] Files (2) -Info 80 [00:03:03.000] ----------------------------------------------- -Info 80 [00:03:04.000] Open files: -Info 80 [00:03:05.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 80 [00:03:06.000] Projects: /dev/null/inferredProject1* -Info 80 [00:03:07.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 80 [00:03:08.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 80 [00:03:09.000] reload projects. -Info 81 [00:03:10.000] Scheduled: /dev/null/inferredProject1* -Info 82 [00:03:11.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 83 [00:03:12.000] Scheduled: *ensureProjectForOpenFiles* -Info 84 [00:03:13.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 85 [00:03:14.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 86 [00:03:15.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 87 [00:03:16.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 88 [00:03:17.000] Search path: /dummy -Info 89 [00:03:18.000] For info: /dummy/dummy.ts :: No config files found. -Info 90 [00:03:19.000] Search path: /user/username/projects/myproject/src -Info 91 [00:03:20.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 92 [00:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 93 [00:03:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 94 [00:03:23.000] Reloading configured project /user/username/projects/myproject/tsconfig.json -Info 95 [00:03:24.000] event: +Info 77 [00:03:00.000] ----------------------------------------------- +Info 77 [00:03:01.000] Open files: +Info 77 [00:03:02.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 77 [00:03:03.000] Projects: /dev/null/inferredProject1* +Info 77 [00:03:04.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 77 [00:03:05.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 77 [00:03:06.000] reload projects. +Info 78 [00:03:07.000] Scheduled: /dev/null/inferredProject1* +Info 79 [00:03:08.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 80 [00:03:09.000] Scheduled: *ensureProjectForOpenFiles* +Info 81 [00:03:10.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 82 [00:03:11.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 83 [00:03:12.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 84 [00:03:13.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 85 [00:03:14.000] Search path: /dummy +Info 86 [00:03:15.000] For info: /dummy/dummy.ts :: No config files found. +Info 87 [00:03:16.000] Search path: /user/username/projects/myproject/src +Info 88 [00:03:17.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 89 [00:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 90 [00:03:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 91 [00:03:20.000] Reloading configured project /user/username/projects/myproject/tsconfig.json +Info 92 [00:03:21.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"User requested reload projects"}} -Info 96 [00:03:25.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 93 [00:03:22.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -298,9 +295,8 @@ Info 96 [00:03:25.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 97 [00:03:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 98 [00:03:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 99 [00:03:28.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 94 [00:03:23.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 95 [00:03:24.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -312,46 +308,46 @@ Info 99 [00:03:28.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 100 [00:03:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 101 [00:03:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 102 [00:03:31.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 103 [00:03:32.000] Different program with same set of files -Info 104 [00:03:33.000] event: +Info 96 [00:03:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 97 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 98 [00:03:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 99 [00:03:28.000] Different program with same set of files +Info 100 [00:03:29.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 105 [00:03:34.000] event: +Info 101 [00:03:30.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig.json","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 106 [00:03:35.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 107 [00:03:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 108 [00:03:37.000] Before ensureProjectForOpenFiles: -Info 109 [00:03:38.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 109 [00:03:39.000] Files (4) +Info 102 [00:03:31.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 103 [00:03:32.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 104 [00:03:33.000] Before ensureProjectForOpenFiles: +Info 105 [00:03:34.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 105 [00:03:35.000] Files (4) -Info 109 [00:03:40.000] ----------------------------------------------- -Info 109 [00:03:41.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 109 [00:03:42.000] Files (2) +Info 105 [00:03:36.000] ----------------------------------------------- +Info 105 [00:03:37.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 105 [00:03:38.000] Files (2) -Info 109 [00:03:43.000] ----------------------------------------------- -Info 109 [00:03:44.000] Open files: -Info 109 [00:03:45.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 109 [00:03:46.000] Projects: /dev/null/inferredProject1* -Info 109 [00:03:47.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 109 [00:03:48.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 109 [00:03:49.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 110 [00:03:50.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 111 [00:03:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 112 [00:03:52.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 113 [00:03:53.000] Different program with same set of files -Info 114 [00:03:54.000] After ensureProjectForOpenFiles: -Info 115 [00:03:55.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 115 [00:03:56.000] Files (4) +Info 105 [00:03:39.000] ----------------------------------------------- +Info 105 [00:03:40.000] Open files: +Info 105 [00:03:41.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 105 [00:03:42.000] Projects: /dev/null/inferredProject1* +Info 105 [00:03:43.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 105 [00:03:44.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 105 [00:03:45.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 106 [00:03:46.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 107 [00:03:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 108 [00:03:48.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 109 [00:03:49.000] Different program with same set of files +Info 110 [00:03:50.000] After ensureProjectForOpenFiles: +Info 111 [00:03:51.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 111 [00:03:52.000] Files (4) -Info 115 [00:03:57.000] ----------------------------------------------- -Info 115 [00:03:58.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 115 [00:03:59.000] Files (2) +Info 111 [00:03:53.000] ----------------------------------------------- +Info 111 [00:03:54.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 111 [00:03:55.000] Files (2) -Info 115 [00:04:00.000] ----------------------------------------------- -Info 115 [00:04:01.000] Open files: -Info 115 [00:04:02.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 115 [00:04:03.000] Projects: /dev/null/inferredProject1* -Info 115 [00:04:04.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 115 [00:04:05.000] Projects: /user/username/projects/myproject/tsconfig.json \ No newline at end of file +Info 111 [00:03:56.000] ----------------------------------------------- +Info 111 [00:03:57.000] Open files: +Info 111 [00:03:58.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 111 [00:03:59.000] Projects: /dev/null/inferredProject1* +Info 111 [00:04:00.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 111 [00:04:01.000] Projects: /user/username/projects/myproject/tsconfig.json \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-project-found-is-not-solution-but-references-open-file-through-project-reference.js b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-project-found-is-not-solution-but-references-open-file-through-project-reference.js index 6cb6df7b2f8f6..a61f0691292ab 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 @@ -21,10 +21,9 @@ Info 6 [00:01:03.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 7 [00:01:04.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 9 [00:01:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 10 [00:01:07.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 7 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 8 [00:01:05.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 9 [00:01:06.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -36,16 +35,16 @@ Info 10 [00:01:07.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 11 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 12 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 13 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 14 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 16 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 17 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 18 [00:01:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [00:01:16.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 20 [00:01:17.000] Files (4) +Info 10 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 11 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 12 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 13 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 16 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 17 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 18 [00:01:15.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 19 [00:01:16.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -61,21 +60,20 @@ Info 20 [00:01:17.000] Files (4) own/main.ts Part of 'files' list in tsconfig.json -Info 21 [00:01:18.000] ----------------------------------------------- -Info 22 [00:01:19.000] event: +Info 20 [00:01:17.000] ----------------------------------------------- +Info 21 [00:01:18.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 23 [00:01:20.000] event: +Info 22 [00:01:19.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":true,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 24 [00:01:21.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 25 [00:01:22.000] event: +Info 23 [00:01:20.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 24 [00:01:21.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 26 [00:01:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 27 [00:01:24.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 28 [00:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 29 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 30 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 31 [00:01:28.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 32 [00:01:29.000] Files (3) +Info 25 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 26 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 27 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 28 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 29 [00:01:26.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 30 [00:01:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -89,27 +87,27 @@ Info 32 [00:01:29.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 33 [00:01:30.000] ----------------------------------------------- -Info 34 [00:01:31.000] event: +Info 31 [00:01:28.000] ----------------------------------------------- +Info 32 [00:01:29.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 35 [00:01:32.000] event: +Info 33 [00:01:30.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"75d5ba36c0a162a329bf40235b10e96d2d129b95469e1f02c08da775fb38a2b4","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":77,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"other","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 36 [00:01:33.000] event: +Info 34 [00:01:31.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 37 [00:01:34.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 37 [00:01:35.000] Files (4) - -Info 37 [00:01:36.000] ----------------------------------------------- -Info 37 [00:01:37.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 37 [00:01:38.000] Files (3) - -Info 37 [00:01:39.000] ----------------------------------------------- -Info 37 [00:01:40.000] Open files: -Info 37 [00:01:41.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 37 [00:01:42.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 37 [00:01:43.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 37 [00:01:44.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 37 [00:01:45.000] request: +Info 35 [00:01:32.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 35 [00:01:33.000] Files (4) + +Info 35 [00:01:34.000] ----------------------------------------------- +Info 35 [00:01:35.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 35 [00:01:36.000] Files (3) + +Info 35 [00:01:37.000] ----------------------------------------------- +Info 35 [00:01:38.000] Open files: +Info 35 [00:01:39.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 35 [00:01:40.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 35 [00:01:41.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 35 [00:01:42.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 35 [00:01:43.000] request: { "command": "geterr", "arguments": { @@ -222,7 +220,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 38 [00:01:46.000] response: +Info 36 [00:01:44.000] response: { "responseRequired": false } @@ -248,7 +246,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 39 [00:01:47.000] event: +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 @@ -294,7 +292,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 40 [00:01:48.000] event: +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) @@ -340,9 +338,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 41 [00:01:49.000] event: +Info 39 [00:01:47.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 42 [00:01:50.000] event: +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) @@ -366,15 +364,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 43 [00:01:51.000] Search path: /dummy -Info 44 [00:01:52.000] For info: /dummy/dummy.ts :: No config files found. -Info 45 [00:01:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 46 [00:01:54.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 47 [00:01:55.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 48 [00:01:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 49 [00:01:57.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 50 [00:01:58.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 51 [00:01:59.000] Files (2) +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* +Info 44 [00:01:52.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 45 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 46 [00:01:54.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 47 [00:01:55.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 48 [00:01:56.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -384,61 +381,61 @@ Info 51 [00:01:59.000] Files (2) dummy.ts Root file specified for compilation -Info 52 [00:02:00.000] ----------------------------------------------- -Info 53 [00:02:01.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 53 [00:02:02.000] Files (4) - -Info 53 [00:02:03.000] ----------------------------------------------- -Info 53 [00:02:04.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 53 [00:02:05.000] Files (3) - -Info 53 [00:02:06.000] ----------------------------------------------- -Info 53 [00:02:07.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 53 [00:02:08.000] Files (2) - -Info 53 [00:02:09.000] ----------------------------------------------- -Info 53 [00:02:10.000] Open files: -Info 53 [00:02:11.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 53 [00:02:12.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 53 [00:02:13.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 53 [00:02:14.000] Projects: /dev/null/inferredProject1* -Info 53 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 54 [00:02:16.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 54 [00:02:17.000] Files (4) - -Info 54 [00:02:18.000] ----------------------------------------------- -Info 54 [00:02:19.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 54 [00:02:20.000] Files (3) - -Info 54 [00:02:21.000] ----------------------------------------------- -Info 54 [00:02:22.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 54 [00:02:23.000] Files (2) - -Info 54 [00:02:24.000] ----------------------------------------------- -Info 54 [00:02:25.000] Open files: -Info 54 [00:02:26.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 54 [00:02:27.000] Projects: /dev/null/inferredProject1* -Info 54 [00:02:28.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 55 [00:02:29.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 55 [00:02:30.000] Files (4) - -Info 55 [00:02:31.000] ----------------------------------------------- -Info 55 [00:02:32.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 55 [00:02:33.000] Files (3) - -Info 55 [00:02:34.000] ----------------------------------------------- -Info 55 [00:02:35.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 55 [00:02:36.000] Files (2) - -Info 55 [00:02:37.000] ----------------------------------------------- -Info 55 [00:02:38.000] Open files: -Info 55 [00:02:39.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 56 [00:02:40.000] Search path: /dummy -Info 57 [00:02:41.000] For info: /dummy/dummy.ts :: No config files found. -Info 58 [00:02:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 59 [00:02:43.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 60 [00:02:44.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 61 [00:02:45.000] Files (2) +Info 49 [00:01:57.000] ----------------------------------------------- +Info 50 [00:01:58.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 50 [00:01:59.000] Files (4) + +Info 50 [00:02:00.000] ----------------------------------------------- +Info 50 [00:02:01.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 50 [00:02:02.000] Files (3) + +Info 50 [00:02:03.000] ----------------------------------------------- +Info 50 [00:02:04.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 50 [00:02:05.000] Files (2) + +Info 50 [00:02:06.000] ----------------------------------------------- +Info 50 [00:02:07.000] Open files: +Info 50 [00:02:08.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 50 [00:02:09.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 50 [00:02:10.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 50 [00:02:11.000] Projects: /dev/null/inferredProject1* +Info 50 [00:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 51 [00:02:13.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 51 [00:02:14.000] Files (4) + +Info 51 [00:02:15.000] ----------------------------------------------- +Info 51 [00:02:16.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 51 [00:02:17.000] Files (3) + +Info 51 [00:02:18.000] ----------------------------------------------- +Info 51 [00:02:19.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 51 [00:02:20.000] Files (2) + +Info 51 [00:02:21.000] ----------------------------------------------- +Info 51 [00:02:22.000] Open files: +Info 51 [00:02:23.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 51 [00:02:24.000] Projects: /dev/null/inferredProject1* +Info 51 [00:02:25.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 52 [00:02:26.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 52 [00:02:27.000] Files (4) + +Info 52 [00:02:28.000] ----------------------------------------------- +Info 52 [00:02:29.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 52 [00:02:30.000] Files (3) + +Info 52 [00:02:31.000] ----------------------------------------------- +Info 52 [00:02:32.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 52 [00:02:33.000] Files (2) + +Info 52 [00:02:34.000] ----------------------------------------------- +Info 52 [00:02:35.000] Open files: +Info 52 [00:02:36.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 53 [00:02:37.000] Search path: /dummy +Info 54 [00:02:38.000] For info: /dummy/dummy.ts :: No config files found. +Info 55 [00:02:39.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 56 [00:02:40.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 57 [00:02:41.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 58 [00:02:42.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -448,10 +445,10 @@ Info 61 [00:02:45.000] Files (2) dummy.ts Root file specified for compilation -Info 62 [00:02:46.000] ----------------------------------------------- -Info 63 [00:02:47.000] `remove Project:: -Info 64 [00:02:48.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 65 [00:02:49.000] Files (4) +Info 59 [00:02:43.000] ----------------------------------------------- +Info 60 [00:02:44.000] `remove Project:: +Info 61 [00:02:45.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 62 [00:02:46.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -467,13 +464,13 @@ Info 65 [00:02:49.000] Files (4) own/main.ts Part of 'files' list in tsconfig.json -Info 66 [00:02:50.000] ----------------------------------------------- -Info 67 [00:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 68 [00:02:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 69 [00:02:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 70 [00:02:54.000] `remove Project:: -Info 71 [00:02:55.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 72 [00:02:56.000] Files (3) +Info 63 [00:02:47.000] ----------------------------------------------- +Info 64 [00:02:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 65 [00:02:49.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 66 [00:02:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 67 [00:02:51.000] `remove Project:: +Info 68 [00:02:52.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 69 [00:02:53.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -487,29 +484,29 @@ Info 72 [00:02:56.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 73 [00:02:57.000] ----------------------------------------------- -Info 74 [00:02:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 75 [00:02:59.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 76 [00:03:00.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 77 [00:03:01.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 78 [00:03:02.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 79 [00:03:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 80 [00:03:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 81 [00:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 82 [00:03:06.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 82 [00:03:07.000] Files (2) - -Info 82 [00:03:08.000] ----------------------------------------------- -Info 82 [00:03:09.000] Open files: -Info 82 [00:03:10.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 82 [00:03:11.000] Projects: /dev/null/inferredProject1* -Info 82 [00:03:12.000] Search path: /user/username/projects/myproject/src -Info 83 [00:03:13.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 84 [00:03:14.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 85 [00:03:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 86 [00:03:16.000] event: +Info 70 [00:02:54.000] ----------------------------------------------- +Info 71 [00:02:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 72 [00:02:56.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 73 [00:02:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 74 [00:02:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 75 [00:02:59.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 76 [00:03:00.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 77 [00:03:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 78 [00:03:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 79 [00:03:03.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 79 [00:03:04.000] Files (2) + +Info 79 [00:03:05.000] ----------------------------------------------- +Info 79 [00:03:06.000] Open files: +Info 79 [00:03:07.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 79 [00:03:08.000] Projects: /dev/null/inferredProject1* +Info 79 [00:03:09.000] Search path: /user/username/projects/myproject/src +Info 80 [00:03:10.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 81 [00:03:11.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 82 [00:03:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 83 [00:03:13.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 87 [00:03:17.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 84 [00:03:14.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -525,10 +522,9 @@ Info 87 [00:03:17.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 88 [00:03:18.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 89 [00:03:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 90 [00:03:20.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 91 [00:03:21.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 85 [00:03:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 86 [00:03:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 87 [00:03:17.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -540,15 +536,15 @@ Info 91 [00:03:21.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 92 [00:03:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 93 [00:03:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 94 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 95 [00:03:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 96 [00:03:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 97 [00:03:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 98 [00:03:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 99 [00:03:29.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 100 [00:03:30.000] Files (4) +Info 88 [00:03:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 89 [00:03:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 90 [00:03:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 91 [00:03:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 92 [00:03:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 93 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 94 [00:03:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 95 [00:03:25.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 96 [00:03:26.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -564,19 +560,18 @@ Info 100 [00:03:30.000] Files (4) own/main.ts Part of 'files' list in tsconfig.json -Info 101 [00:03:31.000] ----------------------------------------------- -Info 102 [00:03:32.000] event: +Info 97 [00:03:27.000] ----------------------------------------------- +Info 98 [00:03:28.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 103 [00:03:33.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 104 [00:03:34.000] event: +Info 99 [00:03:29.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 100 [00:03:30.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 105 [00:03:35.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 106 [00:03:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 107 [00:03:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 108 [00:03:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 109 [00:03:39.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 110 [00:03:40.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 111 [00:03:41.000] Files (3) +Info 101 [00:03:31.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 102 [00:03:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 103 [00:03:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 104 [00:03:34.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 105 [00:03:35.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 106 [00:03:36.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -590,51 +585,51 @@ Info 111 [00:03:41.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 112 [00:03:42.000] ----------------------------------------------- -Info 113 [00:03:43.000] event: +Info 107 [00:03:37.000] ----------------------------------------------- +Info 108 [00:03:38.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 114 [00:03:44.000] event: +Info 109 [00:03:39.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 115 [00:03:45.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 115 [00:03:46.000] Files (4) - -Info 115 [00:03:47.000] ----------------------------------------------- -Info 115 [00:03:48.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 115 [00:03:49.000] Files (3) - -Info 115 [00:03:50.000] ----------------------------------------------- -Info 115 [00:03:51.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 115 [00:03:52.000] Files (2) - -Info 115 [00:03:53.000] ----------------------------------------------- -Info 115 [00:03:54.000] Open files: -Info 115 [00:03:55.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 115 [00:03:56.000] Projects: /dev/null/inferredProject1* -Info 115 [00:03:57.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 115 [00:03:58.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 115 [00:03:59.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 116 [00:04:00.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 116 [00:04:01.000] Files (4) - -Info 116 [00:04:02.000] ----------------------------------------------- -Info 116 [00:04:03.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 116 [00:04:04.000] Files (3) - -Info 116 [00:04:05.000] ----------------------------------------------- -Info 116 [00:04:06.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 116 [00:04:07.000] Files (2) - -Info 116 [00:04:08.000] ----------------------------------------------- -Info 116 [00:04:09.000] Open files: -Info 116 [00:04:10.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 116 [00:04:11.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 116 [00:04:12.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 117 [00:04:13.000] Search path: /dummy -Info 118 [00:04:14.000] For info: /dummy/dummy.ts :: No config files found. -Info 119 [00:04:15.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 120 [00:04:16.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 121 [00:04:17.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 122 [00:04:18.000] Files (2) +Info 110 [00:03:40.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 110 [00:03:41.000] Files (4) + +Info 110 [00:03:42.000] ----------------------------------------------- +Info 110 [00:03:43.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 110 [00:03:44.000] Files (3) + +Info 110 [00:03:45.000] ----------------------------------------------- +Info 110 [00:03:46.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 110 [00:03:47.000] Files (2) + +Info 110 [00:03:48.000] ----------------------------------------------- +Info 110 [00:03:49.000] Open files: +Info 110 [00:03:50.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 110 [00:03:51.000] Projects: /dev/null/inferredProject1* +Info 110 [00:03:52.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 110 [00:03:53.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 110 [00:03:54.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 111 [00:03:55.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 111 [00:03:56.000] Files (4) + +Info 111 [00:03:57.000] ----------------------------------------------- +Info 111 [00:03:58.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 111 [00:03:59.000] Files (3) + +Info 111 [00:04:00.000] ----------------------------------------------- +Info 111 [00:04:01.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 111 [00:04:02.000] Files (2) + +Info 111 [00:04:03.000] ----------------------------------------------- +Info 111 [00:04:04.000] Open files: +Info 111 [00:04:05.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 111 [00:04:06.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 111 [00:04:07.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 112 [00:04:08.000] Search path: /dummy +Info 113 [00:04:09.000] For info: /dummy/dummy.ts :: No config files found. +Info 114 [00:04:10.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 115 [00:04:11.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 116 [00:04:12.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 117 [00:04:13.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -644,42 +639,42 @@ Info 122 [00:04:18.000] Files (2) dummy.ts Root file specified for compilation -Info 123 [00:04:19.000] ----------------------------------------------- -Info 124 [00:04:20.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 124 [00:04:21.000] Files (4) - -Info 124 [00:04:22.000] ----------------------------------------------- -Info 124 [00:04:23.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 124 [00:04:24.000] Files (3) - -Info 124 [00:04:25.000] ----------------------------------------------- -Info 124 [00:04:26.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 124 [00:04:27.000] Files (2) - -Info 124 [00:04:28.000] ----------------------------------------------- -Info 124 [00:04:29.000] Open files: -Info 124 [00:04:30.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 124 [00:04:31.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 124 [00:04:32.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 124 [00:04:33.000] Projects: /dev/null/inferredProject1* -Info 124 [00:04:34.000] reload projects. -Info 125 [00:04:35.000] Scheduled: /dev/null/inferredProject1* -Info 126 [00:04:36.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 127 [00:04:37.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json -Info 128 [00:04:38.000] Scheduled: *ensureProjectForOpenFiles* -Info 129 [00:04:39.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 130 [00:04:40.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 131 [00:04:41.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 132 [00:04:42.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one -Info 133 [00:04:43.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 134 [00:04:44.000] Search path: /user/username/projects/myproject/src -Info 135 [00:04:45.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 136 [00:04:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 137 [00:04:47.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 138 [00:04:48.000] Reloading configured project /user/username/projects/myproject/tsconfig.json -Info 139 [00:04:49.000] event: +Info 118 [00:04:14.000] ----------------------------------------------- +Info 119 [00:04:15.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 119 [00:04:16.000] Files (4) + +Info 119 [00:04:17.000] ----------------------------------------------- +Info 119 [00:04:18.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 119 [00:04:19.000] Files (3) + +Info 119 [00:04:20.000] ----------------------------------------------- +Info 119 [00:04:21.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 119 [00:04:22.000] Files (2) + +Info 119 [00:04:23.000] ----------------------------------------------- +Info 119 [00:04:24.000] Open files: +Info 119 [00:04:25.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 119 [00:04:26.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 119 [00:04:27.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 119 [00:04:28.000] Projects: /dev/null/inferredProject1* +Info 119 [00:04:29.000] reload projects. +Info 120 [00:04:30.000] Scheduled: /dev/null/inferredProject1* +Info 121 [00:04:31.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 122 [00:04:32.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json +Info 123 [00:04:33.000] Scheduled: *ensureProjectForOpenFiles* +Info 124 [00:04:34.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 125 [00:04:35.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 126 [00:04:36.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 127 [00:04:37.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one +Info 128 [00:04:38.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 129 [00:04:39.000] Search path: /user/username/projects/myproject/src +Info 130 [00:04:40.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 131 [00:04:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 132 [00:04:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 133 [00:04:43.000] Reloading configured project /user/username/projects/myproject/tsconfig.json +Info 134 [00:04:44.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"User requested reload projects"}} -Info 140 [00:04:50.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 135 [00:04:45.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -695,9 +690,8 @@ Info 140 [00:04:50.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 141 [00:04:51.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 142 [00:04:52.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 143 [00:04:53.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 136 [00:04:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 137 [00:04:47.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -709,75 +703,74 @@ Info 143 [00:04:53.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 144 [00:04:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 145 [00:04:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 146 [00:04:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 147 [00:04:57.000] Different program with same set of files -Info 148 [00:04:58.000] event: +Info 138 [00:04:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 139 [00:04:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 140 [00:04:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 141 [00:04:51.000] Different program with same set of files +Info 142 [00:04:52.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 149 [00:04:59.000] event: +Info 143 [00:04:53.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig.json","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 150 [00:05:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 151 [00:05:01.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 152 [00:05:02.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json -Info 153 [00:05:03.000] event: +Info 144 [00:04:54.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 145 [00:04:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 146 [00:04:56.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json +Info 147 [00:04:57.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"User requested reload projects"}} -Info 154 [00:05:04.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 155 [00:05:05.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 156 [00:05:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 157 [00:05:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 158 [00:05:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 159 [00:05:09.000] Different program with same set of files -Info 160 [00:05:10.000] event: +Info 148 [00:04:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 149 [00:04:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 150 [00:05:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 151 [00:05:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 152 [00:05:02.000] Different program with same set of files +Info 153 [00:05:03.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 161 [00:05:11.000] event: +Info 154 [00:05:04.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig-src.json","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 162 [00:05:12.000] Search path: /dummy -Info 163 [00:05:13.000] For info: /dummy/dummy.ts :: No config files found. -Info 164 [00:05:14.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 165 [00:05:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 166 [00:05:16.000] Before ensureProjectForOpenFiles: -Info 167 [00:05:17.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 167 [00:05:18.000] Files (4) - -Info 167 [00:05:19.000] ----------------------------------------------- -Info 167 [00:05:20.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 167 [00:05:21.000] Files (3) - -Info 167 [00:05:22.000] ----------------------------------------------- -Info 167 [00:05:23.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 167 [00:05:24.000] Files (2) - -Info 167 [00:05:25.000] ----------------------------------------------- -Info 167 [00:05:26.000] Open files: -Info 167 [00:05:27.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 167 [00:05:28.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 167 [00:05:29.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 167 [00:05:30.000] Projects: /dev/null/inferredProject1* -Info 167 [00:05:31.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 168 [00:05:32.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 169 [00:05:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 170 [00:05:34.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 171 [00:05:35.000] Different program with same set of files -Info 172 [00:05:36.000] After ensureProjectForOpenFiles: -Info 173 [00:05:37.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 173 [00:05:38.000] Files (4) - -Info 173 [00:05:39.000] ----------------------------------------------- -Info 173 [00:05:40.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 173 [00:05:41.000] Files (3) - -Info 173 [00:05:42.000] ----------------------------------------------- -Info 173 [00:05:43.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 173 [00:05:44.000] Files (2) - -Info 173 [00:05:45.000] ----------------------------------------------- -Info 173 [00:05:46.000] Open files: -Info 173 [00:05:47.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 173 [00:05:48.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 173 [00:05:49.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 173 [00:05:50.000] Projects: /dev/null/inferredProject1* -Info 173 [00:05:51.000] request: +Info 155 [00:05:05.000] Search path: /dummy +Info 156 [00:05:06.000] For info: /dummy/dummy.ts :: No config files found. +Info 157 [00:05:07.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 158 [00:05:08.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 159 [00:05:09.000] Before ensureProjectForOpenFiles: +Info 160 [00:05:10.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 160 [00:05:11.000] Files (4) + +Info 160 [00:05:12.000] ----------------------------------------------- +Info 160 [00:05:13.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 160 [00:05:14.000] Files (3) + +Info 160 [00:05:15.000] ----------------------------------------------- +Info 160 [00:05:16.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 160 [00:05:17.000] Files (2) + +Info 160 [00:05:18.000] ----------------------------------------------- +Info 160 [00:05:19.000] Open files: +Info 160 [00:05:20.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 160 [00:05:21.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 160 [00:05:22.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 160 [00:05:23.000] Projects: /dev/null/inferredProject1* +Info 160 [00:05:24.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 161 [00:05:25.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 162 [00:05:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 163 [00:05:27.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 164 [00:05:28.000] Different program with same set of files +Info 165 [00:05:29.000] After ensureProjectForOpenFiles: +Info 166 [00:05:30.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 166 [00:05:31.000] Files (4) + +Info 166 [00:05:32.000] ----------------------------------------------- +Info 166 [00:05:33.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 166 [00:05:34.000] Files (3) + +Info 166 [00:05:35.000] ----------------------------------------------- +Info 166 [00:05:36.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 166 [00:05:37.000] Files (2) + +Info 166 [00:05:38.000] ----------------------------------------------- +Info 166 [00:05:39.000] Open files: +Info 166 [00:05:40.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 166 [00:05:41.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 166 [00:05:42.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 166 [00:05:43.000] Projects: /dev/null/inferredProject1* +Info 166 [00:05:44.000] request: { "command": "references", "arguments": { @@ -812,20 +805,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 174 [00:05:52.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig-src.json -Info 175 [00:05:53.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig.json -Info 176 [00:05:54.000] Search path: /user/username/projects/myproject/src -Info 177 [00:05:55.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 178 [00:05:56.000] Search path: /user/username/projects/myproject/src -Info 179 [00:05:57.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 180 [00:05:58.000] Search path: /user/username/projects/myproject/src -Info 181 [00:05:59.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 182 [00:06:00.000] Search path: /user/username/projects/myproject/src/helpers -Info 183 [00:06:01.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 184 [00:06:02.000] Search path: /user/username/projects/myproject/src/helpers -Info 185 [00:06:03.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 186 [00:06:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts 500 undefined WatchType: Closed Script info -Info 187 [00:06:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts.map 500 undefined WatchType: Closed Script info +Info 167 [00:05:45.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig-src.json +Info 168 [00:05:46.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig.json +Info 169 [00:05:47.000] Search path: /user/username/projects/myproject/src +Info 170 [00:05:48.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 171 [00:05:49.000] Search path: /user/username/projects/myproject/src +Info 172 [00:05:50.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 173 [00:05:51.000] Search path: /user/username/projects/myproject/src +Info 174 [00:05:52.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 175 [00:05:53.000] Search path: /user/username/projects/myproject/src/helpers +Info 176 [00:05:54.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 177 [00:05:55.000] Search path: /user/username/projects/myproject/src/helpers +Info 178 [00:05:56.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 179 [00:05:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts 500 undefined WatchType: Closed Script info +Info 180 [00:05:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -854,7 +847,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 188 [00:06:06.000] response: +Info 181 [00:05:59.000] response: { "response": { "refs": [ @@ -967,43 +960,43 @@ Info 188 [00:06:06.000] response: }, "responseRequired": true } -Info 189 [00:06:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 190 [00:06:08.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 190 [00:06:09.000] Files (4) - -Info 190 [00:06:10.000] ----------------------------------------------- -Info 190 [00:06:11.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 190 [00:06:12.000] Files (3) - -Info 190 [00:06:13.000] ----------------------------------------------- -Info 190 [00:06:14.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 190 [00:06:15.000] Files (2) - -Info 190 [00:06:16.000] ----------------------------------------------- -Info 190 [00:06:17.000] Open files: -Info 190 [00:06:18.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 190 [00:06:19.000] Projects: /dev/null/inferredProject1* -Info 190 [00:06:20.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 191 [00:06:21.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 191 [00:06:22.000] Files (4) - -Info 191 [00:06:23.000] ----------------------------------------------- -Info 191 [00:06:24.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 191 [00:06:25.000] Files (3) - -Info 191 [00:06:26.000] ----------------------------------------------- -Info 191 [00:06:27.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 191 [00:06:28.000] Files (2) - -Info 191 [00:06:29.000] ----------------------------------------------- -Info 191 [00:06:30.000] Open files: -Info 191 [00:06:31.000] Search path: /user/username/projects/myproject/indirect3 -Info 192 [00:06:32.000] For info: /user/username/projects/myproject/indirect3/main.ts :: Config file name: /user/username/projects/myproject/indirect3/tsconfig.json -Info 193 [00:06:33.000] Creating configuration project /user/username/projects/myproject/indirect3/tsconfig.json -Info 194 [00:06:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Config file -Info 195 [00:06:35.000] event: +Info 182 [00:06:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 183 [00:06:01.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 183 [00:06:02.000] Files (4) + +Info 183 [00:06:03.000] ----------------------------------------------- +Info 183 [00:06:04.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 183 [00:06:05.000] Files (3) + +Info 183 [00:06:06.000] ----------------------------------------------- +Info 183 [00:06:07.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 183 [00:06:08.000] Files (2) + +Info 183 [00:06:09.000] ----------------------------------------------- +Info 183 [00:06:10.000] Open files: +Info 183 [00:06:11.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 183 [00:06:12.000] Projects: /dev/null/inferredProject1* +Info 183 [00:06:13.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 184 [00:06:14.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 184 [00:06:15.000] Files (4) + +Info 184 [00:06:16.000] ----------------------------------------------- +Info 184 [00:06:17.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 184 [00:06:18.000] Files (3) + +Info 184 [00:06:19.000] ----------------------------------------------- +Info 184 [00:06:20.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 184 [00:06:21.000] Files (2) + +Info 184 [00:06:22.000] ----------------------------------------------- +Info 184 [00:06:23.000] Open files: +Info 184 [00:06:24.000] Search path: /user/username/projects/myproject/indirect3 +Info 185 [00:06:25.000] For info: /user/username/projects/myproject/indirect3/main.ts :: Config file name: /user/username/projects/myproject/indirect3/tsconfig.json +Info 186 [00:06:26.000] Creating configuration project /user/username/projects/myproject/indirect3/tsconfig.json +Info 187 [00:06:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Config file +Info 188 [00:06:28.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/indirect3/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/indirect3/main.ts to open"}} -Info 196 [00:06:36.000] Config: /user/username/projects/myproject/indirect3/tsconfig.json : { +Info 189 [00:06:29.000] Config: /user/username/projects/myproject/indirect3/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/indirect3/main.ts" ], @@ -1012,20 +1005,19 @@ Info 196 [00:06:36.000] Config: /user/username/projects/myproject/indirect3/tsc "configFilePath": "/user/username/projects/myproject/indirect3/tsconfig.json" } } -Info 197 [00:06:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory -Info 198 [00:06:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory -Info 199 [00:06:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 200 [00:06:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json -Info 201 [00:06:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info -Info 202 [00:06:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations -Info 203 [00:06:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations -Info 204 [00:06:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info 205 [00:06:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info 206 [00:06:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info 207 [00:06:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info 208 [00:06:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 209 [00:06:49.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) -Info 210 [00:06:50.000] Files (4) +Info 190 [00:06:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory +Info 191 [00:06:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory +Info 192 [00:06:32.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json +Info 193 [00:06:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info +Info 194 [00:06:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations +Info 195 [00:06:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations +Info 196 [00:06:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots +Info 197 [00:06:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots +Info 198 [00:06:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots +Info 199 [00:06:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots +Info 200 [00:06:40.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 201 [00:06:41.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) +Info 202 [00:06:42.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/target/src/helpers/functions.d.ts /user/username/projects/myproject/target/src/main.d.ts @@ -1041,16 +1033,16 @@ Info 210 [00:06:50.000] Files (4) main.ts Matched by default include pattern '**/*' -Info 211 [00:06:51.000] ----------------------------------------------- -Info 212 [00:06:52.000] event: +Info 203 [00:06:43.000] ----------------------------------------------- +Info 204 [00:06:44.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/indirect3/tsconfig.json"}} -Info 213 [00:06:53.000] event: +Info 205 [00:06:45.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"5b0817f69b6871821661b976aa73f4f2533b37c5f4b920541094c2d727d0dc39","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":57,"tsx":0,"tsxSize":0,"dts":3,"dtsSize":494,"deferred":0,"deferredSize":0},"compilerOptions":{"baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 214 [00:06:54.000] event: +Info 206 [00:06:46.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/indirect3/main.ts","configFile":"/user/username/projects/myproject/indirect3/tsconfig.json","diagnostics":[]}} -Info 215 [00:06:55.000] `remove Project:: -Info 216 [00:06:56.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 217 [00:06:57.000] Files (4) +Info 207 [00:06:47.000] `remove Project:: +Info 208 [00:06:48.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 209 [00:06:49.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1066,13 +1058,13 @@ Info 217 [00:06:57.000] Files (4) own/main.ts Part of 'files' list in tsconfig.json -Info 218 [00:06:58.000] ----------------------------------------------- -Info 219 [00:06:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 220 [00:07:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 221 [00:07:01.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 222 [00:07:02.000] `remove Project:: -Info 223 [00:07:03.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 224 [00:07:04.000] Files (3) +Info 210 [00:06:50.000] ----------------------------------------------- +Info 211 [00:06:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 212 [00:06:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 213 [00:06:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 214 [00:06:54.000] `remove Project:: +Info 215 [00:06:55.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 216 [00:06:56.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1086,15 +1078,15 @@ Info 224 [00:07:04.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 225 [00:07:05.000] ----------------------------------------------- -Info 226 [00:07:06.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 227 [00:07:07.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 228 [00:07:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 229 [00:07:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 230 [00:07:10.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 231 [00:07:11.000] `remove Project:: -Info 232 [00:07:12.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 233 [00:07:13.000] Files (2) +Info 217 [00:06:57.000] ----------------------------------------------- +Info 218 [00:06:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 219 [00:06:59.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 220 [00:07:00.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 221 [00:07:01.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 222 [00:07:02.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 223 [00:07:03.000] `remove Project:: +Info 224 [00:07:04.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 225 [00:07:05.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -1104,20 +1096,20 @@ Info 233 [00:07:13.000] Files (2) dummy.ts Root file specified for compilation -Info 234 [00:07:14.000] ----------------------------------------------- -Info 235 [00:07:15.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 236 [00:07:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 237 [00:07:17.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 238 [00:07:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 239 [00:07:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 240 [00:07:20.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) -Info 240 [00:07:21.000] Files (4) - -Info 240 [00:07:22.000] ----------------------------------------------- -Info 240 [00:07:23.000] Open files: -Info 240 [00:07:24.000] FileName: /user/username/projects/myproject/indirect3/main.ts ProjectRootPath: undefined -Info 240 [00:07:25.000] Projects: /user/username/projects/myproject/indirect3/tsconfig.json -Info 240 [00:07:26.000] request: +Info 226 [00:07:06.000] ----------------------------------------------- +Info 227 [00:07:07.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 228 [00:07:08.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 229 [00:07:09.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 230 [00:07:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 231 [00:07:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 232 [00:07:12.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) +Info 232 [00:07:13.000] Files (4) + +Info 232 [00:07:14.000] ----------------------------------------------- +Info 232 [00:07:15.000] Open files: +Info 232 [00:07:16.000] FileName: /user/username/projects/myproject/indirect3/main.ts ProjectRootPath: undefined +Info 232 [00:07:17.000] Projects: /user/username/projects/myproject/indirect3/tsconfig.json +Info 232 [00:07:18.000] request: { "command": "references", "arguments": { @@ -1156,16 +1148,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/target: {} -Info 241 [00:07:27.000] Finding references to /user/username/projects/myproject/indirect3/main.ts position 9 in project /user/username/projects/myproject/indirect3/tsconfig.json -Info 242 [00:07:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts.map 500 undefined WatchType: Closed Script info -Info 243 [00:07:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 244 [00:07:30.000] Search path: /user/username/projects/myproject/src -Info 245 [00:07:31.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 246 [00:07:32.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 247 [00:07:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 248 [00:07:34.000] event: +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 +Info 234 [00:07:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts.map 500 undefined WatchType: Closed Script info +Info 235 [00:07:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 236 [00:07:22.000] Search path: /user/username/projects/myproject/src +Info 237 [00:07:23.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 238 [00:07:24.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 239 [00:07:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 240 [00:07:26.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating project for original file: /user/username/projects/myproject/src/main.ts for location: /user/username/projects/myproject/target/src/main.d.ts"}} -Info 249 [00:07:35.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 241 [00:07:27.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -1181,10 +1173,9 @@ Info 249 [00:07:35.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 250 [00:07:36.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 251 [00:07:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 252 [00:07:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 253 [00:07:39.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 242 [00:07:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 243 [00:07:29.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 244 [00:07:30.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -1196,14 +1187,14 @@ Info 253 [00:07:39.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 254 [00:07:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 255 [00:07:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 256 [00:07:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 257 [00:07:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 258 [00:07:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 259 [00:07:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 260 [00:07:46.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 261 [00:07:47.000] Files (4) +Info 245 [00:07:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 246 [00:07:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 247 [00:07:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 248 [00:07:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 249 [00:07:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 250 [00:07:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 251 [00:07:37.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 252 [00:07:38.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1219,19 +1210,18 @@ Info 261 [00:07:47.000] Files (4) own/main.ts Part of 'files' list in tsconfig.json -Info 262 [00:07:48.000] ----------------------------------------------- -Info 263 [00:07:49.000] event: +Info 253 [00:07:39.000] ----------------------------------------------- +Info 254 [00:07:40.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 264 [00:07:50.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 265 [00:07:51.000] event: +Info 255 [00:07:41.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 256 [00:07:42.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for original file: /user/username/projects/myproject/src/main.ts for location: /user/username/projects/myproject/target/src/main.d.ts"}} -Info 266 [00:07:52.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 267 [00:07:53.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 268 [00:07:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 269 [00:07:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 270 [00:07:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 271 [00:07:57.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 272 [00:07:58.000] Files (3) +Info 257 [00:07:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 258 [00:07:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 259 [00:07:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 260 [00:07:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 261 [00:07:47.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 262 [00:07:48.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1245,29 +1235,29 @@ Info 272 [00:07:58.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 273 [00:07:59.000] ----------------------------------------------- -Info 274 [00:08:00.000] event: +Info 263 [00:07:49.000] ----------------------------------------------- +Info 264 [00:07:50.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 275 [00:08:01.000] Search path: /user/username/projects/myproject/src -Info 276 [00:08:02.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 277 [00:08:03.000] Search path: /user/username/projects/myproject/src -Info 278 [00:08:04.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 279 [00:08:05.000] Search path: /user/username/projects/myproject/src/helpers -Info 280 [00:08:06.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 281 [00:08:07.000] Search path: /user/username/projects/myproject/src/helpers -Info 282 [00:08:08.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 283 [00:08:09.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig.json -Info 284 [00:08:10.000] Search path: /user/username/projects/myproject/src -Info 285 [00:08:11.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 286 [00:08:12.000] Search path: /user/username/projects/myproject/src -Info 287 [00:08:13.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 288 [00:08:14.000] Search path: /user/username/projects/myproject/src -Info 289 [00:08:15.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 290 [00:08:16.000] Search path: /user/username/projects/myproject/src/helpers -Info 291 [00:08:17.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 292 [00:08:18.000] Search path: /user/username/projects/myproject/src/helpers -Info 293 [00:08:19.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 294 [00:08:20.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig-src.json +Info 265 [00:07:51.000] Search path: /user/username/projects/myproject/src +Info 266 [00:07:52.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 267 [00:07:53.000] Search path: /user/username/projects/myproject/src +Info 268 [00:07:54.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 269 [00:07:55.000] Search path: /user/username/projects/myproject/src/helpers +Info 270 [00:07:56.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 271 [00:07:57.000] Search path: /user/username/projects/myproject/src/helpers +Info 272 [00:07:58.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 273 [00:07:59.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig.json +Info 274 [00:08:00.000] Search path: /user/username/projects/myproject/src +Info 275 [00:08:01.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 276 [00:08:02.000] Search path: /user/username/projects/myproject/src +Info 277 [00:08:03.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 278 [00:08:04.000] Search path: /user/username/projects/myproject/src +Info 279 [00:08:05.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 280 [00:08:06.000] Search path: /user/username/projects/myproject/src/helpers +Info 281 [00:08:07.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 282 [00:08:08.000] Search path: /user/username/projects/myproject/src/helpers +Info 283 [00:08:09.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 284 [00:08:10.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig-src.json After request PolledWatches:: @@ -1308,7 +1298,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 295 [00:08:21.000] response: +Info 285 [00:08:11.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-project-is-indirectly-referenced-by-solution.js b/tests/baselines/reference/tsserver/projectReferences/solution-with-its-own-files-and-project-is-indirectly-referenced-by-solution.js index 6d40ee56680c6..d0d6be4735526 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 @@ -25,10 +25,9 @@ Info 6 [00:01:15.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 7 [00:01:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 9 [00:01:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 10 [00:01:19.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 7 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 8 [00:01:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 9 [00:01:18.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -45,8 +44,8 @@ Info 10 [00:01:19.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 11 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 12 [00:01:21.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 10 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 11 [00:01:20.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -58,10 +57,10 @@ Info 12 [00:01:21.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 13 [00:01:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 14 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 15 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 16 [00:01:25.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 12 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 13 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 14 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 15 [00:01:24.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -78,15 +77,15 @@ Info 16 [00:01:25.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 17 [00:01:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 18 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 20 [00:01:29.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 21 [00:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 22 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 23 [00:01:32.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:33.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 25 [00:01:34.000] Files (5) +Info 16 [00:01:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 17 [00:01:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 19 [00:01:28.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 20 [00:01:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 21 [00:01:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 22 [00:01:31.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:32.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 24 [00:01:33.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -105,21 +104,20 @@ Info 25 [00:01:34.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 26 [00:01:35.000] ----------------------------------------------- -Info 27 [00:01:36.000] event: +Info 25 [00:01:34.000] ----------------------------------------------- +Info 26 [00:01:35.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 28 [00:01:37.000] event: +Info 27 [00:01:36.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":4,"tsSize":166,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"outDir":"","baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":true,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 30 [00:01:39.000] event: +Info 28 [00:01:37.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 29 [00:01:38.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 36 [00:01:45.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 37 [00:01:46.000] Files (3) +Info 30 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 33 [00:01:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:43.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 35 [00:01:44.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -133,27 +131,27 @@ Info 37 [00:01:46.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 38 [00:01:47.000] ----------------------------------------------- -Info 39 [00:01:48.000] event: +Info 36 [00:01:45.000] ----------------------------------------------- +Info 37 [00:01:46.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 40 [00:01:49.000] event: +Info 38 [00:01:47.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"75d5ba36c0a162a329bf40235b10e96d2d129b95469e1f02c08da775fb38a2b4","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":77,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"other","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 41 [00:01:50.000] event: +Info 39 [00:01:48.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 42 [00:01:51.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 42 [00:01:52.000] Files (5) - -Info 42 [00:01:53.000] ----------------------------------------------- -Info 42 [00:01:54.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 42 [00:01:55.000] Files (3) - -Info 42 [00:01:56.000] ----------------------------------------------- -Info 42 [00:01:57.000] Open files: -Info 42 [00:01:58.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 42 [00:01:59.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 42 [00:02:00.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 42 [00:02:01.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json -Info 42 [00:02:02.000] request: +Info 40 [00:01:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 40 [00:01:50.000] Files (5) + +Info 40 [00:01:51.000] ----------------------------------------------- +Info 40 [00:01:52.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 40 [00:01:53.000] Files (3) + +Info 40 [00:01:54.000] ----------------------------------------------- +Info 40 [00:01:55.000] Open files: +Info 40 [00:01:56.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 40 [00:01:57.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 40 [00:01:58.000] getDefaultProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 40 [00:01:59.000] findDefaultConfiguredProject for /user/username/projects/myproject/src/main.ts: /user/username/projects/myproject/tsconfig-src.json +Info 40 [00:02:00.000] request: { "command": "geterr", "arguments": { @@ -293,7 +291,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 43 [00:02:03.000] response: +Info 41 [00:02:01.000] response: { "responseRequired": false } @@ -325,7 +323,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 44 [00:02:04.000] event: +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 @@ -383,7 +381,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 45 [00:02:05.000] event: +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) @@ -441,9 +439,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 46 [00:02:06.000] event: +Info 44 [00:02:04.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/user/username/projects/myproject/src/main.ts","diagnostics":[]}} -Info 47 [00:02:07.000] event: +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) @@ -473,15 +471,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 48 [00:02:08.000] Search path: /dummy -Info 49 [00:02:09.000] For info: /dummy/dummy.ts :: No config files found. -Info 50 [00:02:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 51 [00:02:11.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 52 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 53 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 54 [00:02:14.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 55 [00:02:15.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 56 [00:02:16.000] Files (2) +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* +Info 49 [00:02:09.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 50 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 51 [00:02:11.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 52 [00:02:12.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 53 [00:02:13.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -491,61 +488,61 @@ Info 56 [00:02:16.000] Files (2) dummy.ts Root file specified for compilation -Info 57 [00:02:17.000] ----------------------------------------------- -Info 58 [00:02:18.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 58 [00:02:19.000] Files (5) - -Info 58 [00:02:20.000] ----------------------------------------------- -Info 58 [00:02:21.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 58 [00:02:22.000] Files (3) - -Info 58 [00:02:23.000] ----------------------------------------------- -Info 58 [00:02:24.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 58 [00:02:25.000] Files (2) - -Info 58 [00:02:26.000] ----------------------------------------------- -Info 58 [00:02:27.000] Open files: -Info 58 [00:02:28.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 58 [00:02:29.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 58 [00:02:30.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 58 [00:02:31.000] Projects: /dev/null/inferredProject1* -Info 58 [00:02:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 59 [00:02:33.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 59 [00:02:34.000] Files (5) - -Info 59 [00:02:35.000] ----------------------------------------------- -Info 59 [00:02:36.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 59 [00:02:37.000] Files (3) - -Info 59 [00:02:38.000] ----------------------------------------------- -Info 59 [00:02:39.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 59 [00:02:40.000] Files (2) - -Info 59 [00:02:41.000] ----------------------------------------------- -Info 59 [00:02:42.000] Open files: -Info 59 [00:02:43.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 59 [00:02:44.000] Projects: /dev/null/inferredProject1* -Info 59 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 60 [00:02:46.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 60 [00:02:47.000] Files (5) - -Info 60 [00:02:48.000] ----------------------------------------------- -Info 60 [00:02:49.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 60 [00:02:50.000] Files (3) - -Info 60 [00:02:51.000] ----------------------------------------------- -Info 60 [00:02:52.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 60 [00:02:53.000] Files (2) - -Info 60 [00:02:54.000] ----------------------------------------------- -Info 60 [00:02:55.000] Open files: -Info 60 [00:02:56.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 61 [00:02:57.000] Search path: /dummy -Info 62 [00:02:58.000] For info: /dummy/dummy.ts :: No config files found. -Info 63 [00:02:59.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 64 [00:03:00.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 65 [00:03:01.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 66 [00:03:02.000] Files (2) +Info 54 [00:02:14.000] ----------------------------------------------- +Info 55 [00:02:15.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 55 [00:02:16.000] Files (5) + +Info 55 [00:02:17.000] ----------------------------------------------- +Info 55 [00:02:18.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 55 [00:02:19.000] Files (3) + +Info 55 [00:02:20.000] ----------------------------------------------- +Info 55 [00:02:21.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 55 [00:02:22.000] Files (2) + +Info 55 [00:02:23.000] ----------------------------------------------- +Info 55 [00:02:24.000] Open files: +Info 55 [00:02:25.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 55 [00:02:26.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 55 [00:02:27.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 55 [00:02:28.000] Projects: /dev/null/inferredProject1* +Info 55 [00:02:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 56 [00:02:30.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 56 [00:02:31.000] Files (5) + +Info 56 [00:02:32.000] ----------------------------------------------- +Info 56 [00:02:33.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 56 [00:02:34.000] Files (3) + +Info 56 [00:02:35.000] ----------------------------------------------- +Info 56 [00:02:36.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 56 [00:02:37.000] Files (2) + +Info 56 [00:02:38.000] ----------------------------------------------- +Info 56 [00:02:39.000] Open files: +Info 56 [00:02:40.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 56 [00:02:41.000] Projects: /dev/null/inferredProject1* +Info 56 [00:02:42.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 57 [00:02:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 57 [00:02:44.000] Files (5) + +Info 57 [00:02:45.000] ----------------------------------------------- +Info 57 [00:02:46.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 57 [00:02:47.000] Files (3) + +Info 57 [00:02:48.000] ----------------------------------------------- +Info 57 [00:02:49.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 57 [00:02:50.000] Files (2) + +Info 57 [00:02:51.000] ----------------------------------------------- +Info 57 [00:02:52.000] Open files: +Info 57 [00:02:53.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 58 [00:02:54.000] Search path: /dummy +Info 59 [00:02:55.000] For info: /dummy/dummy.ts :: No config files found. +Info 60 [00:02:56.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 61 [00:02:57.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:58.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 63 [00:02:59.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -555,10 +552,10 @@ Info 66 [00:03:02.000] Files (2) dummy.ts Root file specified for compilation -Info 67 [00:03:03.000] ----------------------------------------------- -Info 68 [00:03:04.000] `remove Project:: -Info 69 [00:03:05.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 70 [00:03:06.000] Files (5) +Info 64 [00:03:00.000] ----------------------------------------------- +Info 65 [00:03:01.000] `remove Project:: +Info 66 [00:03:02.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 67 [00:03:03.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -577,15 +574,15 @@ Info 70 [00:03:06.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 71 [00:03:07.000] ----------------------------------------------- -Info 72 [00:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 73 [00:03:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 74 [00:03:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 75 [00:03:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 76 [00:03:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 77 [00:03:13.000] `remove Project:: -Info 78 [00:03:14.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 79 [00:03:15.000] Files (3) +Info 68 [00:03:04.000] ----------------------------------------------- +Info 69 [00:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 70 [00:03:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 71 [00:03:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 72 [00:03:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 73 [00:03:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 74 [00:03:10.000] `remove Project:: +Info 75 [00:03:11.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 76 [00:03:12.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -599,30 +596,30 @@ Info 79 [00:03:15.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 80 [00:03:16.000] ----------------------------------------------- -Info 81 [00:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 82 [00:03:18.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 83 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 84 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 85 [00:03:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 86 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 87 [00:03:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 88 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 89 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 90 [00:03:26.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 90 [00:03:27.000] Files (2) - -Info 90 [00:03:28.000] ----------------------------------------------- -Info 90 [00:03:29.000] Open files: -Info 90 [00:03:30.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 90 [00:03:31.000] Projects: /dev/null/inferredProject1* -Info 90 [00:03:32.000] Search path: /user/username/projects/myproject/src -Info 91 [00:03:33.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 92 [00:03:34.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 93 [00:03:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 94 [00:03:36.000] event: +Info 77 [00:03:13.000] ----------------------------------------------- +Info 78 [00:03:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 79 [00:03:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 80 [00:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 81 [00:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 82 [00:03:18.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 83 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 84 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 85 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 86 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 87 [00:03:23.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 87 [00:03:24.000] Files (2) + +Info 87 [00:03:25.000] ----------------------------------------------- +Info 87 [00:03:26.000] Open files: +Info 87 [00:03:27.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 87 [00:03:28.000] Projects: /dev/null/inferredProject1* +Info 87 [00:03:29.000] Search path: /user/username/projects/myproject/src +Info 88 [00:03:30.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 89 [00:03:31.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 90 [00:03:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 91 [00:03:33.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 95 [00:03:37.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 92 [00:03:34.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -642,10 +639,9 @@ Info 95 [00:03:37.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 96 [00:03:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 97 [00:03:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 98 [00:03:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 99 [00:03:41.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 93 [00:03:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 94 [00:03:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 95 [00:03:37.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -662,8 +658,8 @@ Info 99 [00:03:41.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 100 [00:03:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 101 [00:03:43.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 96 [00:03:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 97 [00:03:39.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -675,10 +671,10 @@ Info 101 [00:03:43.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 102 [00:03:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 103 [00:03:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 104 [00:03:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 105 [00:03:47.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 98 [00:03:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 99 [00:03:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 100 [00:03:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 101 [00:03:43.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -695,14 +691,14 @@ Info 105 [00:03:47.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 106 [00:03:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 107 [00:03:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 108 [00:03:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info -Info 109 [00:03:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 110 [00:03:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 111 [00:03:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 112 [00:03:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 113 [00:03:55.000] Files (5) +Info 102 [00:03:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 103 [00:03:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 104 [00:03:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/helpers/functions.ts 500 undefined WatchType: Closed Script info +Info 105 [00:03:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 106 [00:03:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 107 [00:03:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 108 [00:03:50.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 109 [00:03:51.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -721,19 +717,18 @@ Info 113 [00:03:55.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 114 [00:03:56.000] ----------------------------------------------- -Info 115 [00:03:57.000] event: +Info 110 [00:03:52.000] ----------------------------------------------- +Info 111 [00:03:53.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 116 [00:03:58.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 117 [00:03:59.000] event: +Info 112 [00:03:54.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 113 [00:03:55.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for /user/username/projects/myproject/src/main.ts to open"}} -Info 118 [00:04:00.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 119 [00:04:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 120 [00:04:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 121 [00:04:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 122 [00:04:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 123 [00:04:05.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 124 [00:04:06.000] Files (3) +Info 114 [00:03:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 115 [00:03:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 116 [00:03:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 117 [00:03:59.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 118 [00:04:00.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 119 [00:04:01.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -747,51 +742,51 @@ Info 124 [00:04:06.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 125 [00:04:07.000] ----------------------------------------------- -Info 126 [00:04:08.000] event: +Info 120 [00:04:02.000] ----------------------------------------------- +Info 121 [00:04:03.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 127 [00:04:09.000] event: +Info 122 [00:04:04.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/src/main.ts","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 128 [00:04:10.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 128 [00:04:11.000] Files (5) - -Info 128 [00:04:12.000] ----------------------------------------------- -Info 128 [00:04:13.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 128 [00:04:14.000] Files (3) - -Info 128 [00:04:15.000] ----------------------------------------------- -Info 128 [00:04:16.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 128 [00:04:17.000] Files (2) - -Info 128 [00:04:18.000] ----------------------------------------------- -Info 128 [00:04:19.000] Open files: -Info 128 [00:04:20.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 128 [00:04:21.000] Projects: /dev/null/inferredProject1* -Info 128 [00:04:22.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 128 [00:04:23.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 128 [00:04:24.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 129 [00:04:25.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 129 [00:04:26.000] Files (5) - -Info 129 [00:04:27.000] ----------------------------------------------- -Info 129 [00:04:28.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 129 [00:04:29.000] Files (3) - -Info 129 [00:04:30.000] ----------------------------------------------- -Info 129 [00:04:31.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 129 [00:04:32.000] Files (2) - -Info 129 [00:04:33.000] ----------------------------------------------- -Info 129 [00:04:34.000] Open files: -Info 129 [00:04:35.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 129 [00:04:36.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 129 [00:04:37.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 130 [00:04:38.000] Search path: /dummy -Info 131 [00:04:39.000] For info: /dummy/dummy.ts :: No config files found. -Info 132 [00:04:40.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 133 [00:04:41.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 134 [00:04:42.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 135 [00:04:43.000] Files (2) +Info 123 [00:04:05.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 123 [00:04:06.000] Files (5) + +Info 123 [00:04:07.000] ----------------------------------------------- +Info 123 [00:04:08.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 123 [00:04:09.000] Files (3) + +Info 123 [00:04:10.000] ----------------------------------------------- +Info 123 [00:04:11.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 123 [00:04:12.000] Files (2) + +Info 123 [00:04:13.000] ----------------------------------------------- +Info 123 [00:04:14.000] Open files: +Info 123 [00:04:15.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 123 [00:04:16.000] Projects: /dev/null/inferredProject1* +Info 123 [00:04:17.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 123 [00:04:18.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 123 [00:04:19.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 124 [00:04:20.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 124 [00:04:21.000] Files (5) + +Info 124 [00:04:22.000] ----------------------------------------------- +Info 124 [00:04:23.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 124 [00:04:24.000] Files (3) + +Info 124 [00:04:25.000] ----------------------------------------------- +Info 124 [00:04:26.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 124 [00:04:27.000] Files (2) + +Info 124 [00:04:28.000] ----------------------------------------------- +Info 124 [00:04:29.000] Open files: +Info 124 [00:04:30.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 124 [00:04:31.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 124 [00:04:32.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 125 [00:04:33.000] Search path: /dummy +Info 126 [00:04:34.000] For info: /dummy/dummy.ts :: No config files found. +Info 127 [00:04:35.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 128 [00:04:36.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 129 [00:04:37.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 130 [00:04:38.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -801,44 +796,44 @@ Info 135 [00:04:43.000] Files (2) dummy.ts Root file specified for compilation -Info 136 [00:04:44.000] ----------------------------------------------- -Info 137 [00:04:45.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 137 [00:04:46.000] Files (5) - -Info 137 [00:04:47.000] ----------------------------------------------- -Info 137 [00:04:48.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 137 [00:04:49.000] Files (3) - -Info 137 [00:04:50.000] ----------------------------------------------- -Info 137 [00:04:51.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 137 [00:04:52.000] Files (2) - -Info 137 [00:04:53.000] ----------------------------------------------- -Info 137 [00:04:54.000] Open files: -Info 137 [00:04:55.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 137 [00:04:56.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 137 [00:04:57.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 137 [00:04:58.000] Projects: /dev/null/inferredProject1* -Info 137 [00:04:59.000] reload projects. -Info 138 [00:05:00.000] Scheduled: /dev/null/inferredProject1* -Info 139 [00:05:01.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 140 [00:05:02.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json -Info 141 [00:05:03.000] Scheduled: *ensureProjectForOpenFiles* -Info 142 [00:05:04.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 131 [00:04:39.000] ----------------------------------------------- +Info 132 [00:04:40.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 132 [00:04:41.000] Files (5) + +Info 132 [00:04:42.000] ----------------------------------------------- +Info 132 [00:04:43.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 132 [00:04:44.000] Files (3) + +Info 132 [00:04:45.000] ----------------------------------------------- +Info 132 [00:04:46.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 132 [00:04:47.000] Files (2) + +Info 132 [00:04:48.000] ----------------------------------------------- +Info 132 [00:04:49.000] Open files: +Info 132 [00:04:50.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 132 [00:04:51.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 132 [00:04:52.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 132 [00:04:53.000] Projects: /dev/null/inferredProject1* +Info 132 [00:04:54.000] reload projects. +Info 133 [00:04:55.000] Scheduled: /dev/null/inferredProject1* +Info 134 [00:04:56.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 135 [00:04:57.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json +Info 136 [00:04:58.000] Scheduled: *ensureProjectForOpenFiles* +Info 137 [00:04:59.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 138 [00:05:00.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 139 [00:05:01.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 140 [00:05:02.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 141 [00:05:03.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 142 [00:05:04.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one Info 143 [00:05:05.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 144 [00:05:06.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 145 [00:05:07.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 146 [00:05:08.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 147 [00:05:09.000] Scheduled: /user/username/projects/myproject/tsconfig-src.json, Cancelled earlier one -Info 148 [00:05:10.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 149 [00:05:11.000] Search path: /user/username/projects/myproject/src -Info 150 [00:05:12.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 151 [00:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 152 [00:05:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 153 [00:05:15.000] Reloading configured project /user/username/projects/myproject/tsconfig.json -Info 154 [00:05:16.000] event: +Info 144 [00:05:06.000] Search path: /user/username/projects/myproject/src +Info 145 [00:05:07.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 146 [00:05:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 147 [00:05:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 148 [00:05:10.000] Reloading configured project /user/username/projects/myproject/tsconfig.json +Info 149 [00:05:11.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"User requested reload projects"}} -Info 155 [00:05:17.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 150 [00:05:12.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -858,9 +853,8 @@ Info 155 [00:05:17.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 156 [00:05:18.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 157 [00:05:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 158 [00:05:20.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 151 [00:05:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 152 [00:05:14.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -877,7 +871,7 @@ Info 158 [00:05:20.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 159 [00:05:21.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 153 [00:05:15.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -889,7 +883,7 @@ Info 159 [00:05:21.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 160 [00:05:22.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 154 [00:05:16.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -906,75 +900,74 @@ Info 160 [00:05:22.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 161 [00:05:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 162 [00:05:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 163 [00:05:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 164 [00:05:26.000] Different program with same set of files -Info 165 [00:05:27.000] event: +Info 155 [00:05:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 156 [00:05:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 157 [00:05:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 158 [00:05:20.000] Different program with same set of files +Info 159 [00:05:21.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 166 [00:05:28.000] event: +Info 160 [00:05:22.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig.json","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[]}} -Info 167 [00:05:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 168 [00:05:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 169 [00:05:31.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json -Info 170 [00:05:32.000] event: +Info 161 [00:05:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 162 [00:05:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 163 [00:05:25.000] Reloading configured project /user/username/projects/myproject/tsconfig-src.json +Info 164 [00:05:26.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"User requested reload projects"}} -Info 171 [00:05:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 172 [00:05:34.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 173 [00:05:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 174 [00:05:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 175 [00:05:37.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 176 [00:05:38.000] Different program with same set of files -Info 177 [00:05:39.000] event: +Info 165 [00:05:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 166 [00:05:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 167 [00:05:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 168 [00:05:30.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 169 [00:05:31.000] Different program with same set of files +Info 170 [00:05:32.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 178 [00:05:40.000] event: +Info 171 [00:05:33.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/tsconfig-src.json","configFile":"/user/username/projects/myproject/tsconfig-src.json","diagnostics":[]}} -Info 179 [00:05:41.000] Search path: /dummy -Info 180 [00:05:42.000] For info: /dummy/dummy.ts :: No config files found. -Info 181 [00:05:43.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 182 [00:05:44.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 183 [00:05:45.000] Before ensureProjectForOpenFiles: -Info 184 [00:05:46.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 184 [00:05:47.000] Files (5) - -Info 184 [00:05:48.000] ----------------------------------------------- -Info 184 [00:05:49.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 184 [00:05:50.000] Files (3) - -Info 184 [00:05:51.000] ----------------------------------------------- -Info 184 [00:05:52.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 184 [00:05:53.000] Files (2) - -Info 184 [00:05:54.000] ----------------------------------------------- -Info 184 [00:05:55.000] Open files: -Info 184 [00:05:56.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 184 [00:05:57.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 184 [00:05:58.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 184 [00:05:59.000] Projects: /dev/null/inferredProject1* -Info 184 [00:06:00.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 185 [00:06:01.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 186 [00:06:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 187 [00:06:03.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 188 [00:06:04.000] Different program with same set of files -Info 189 [00:06:05.000] After ensureProjectForOpenFiles: -Info 190 [00:06:06.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 190 [00:06:07.000] Files (5) - -Info 190 [00:06:08.000] ----------------------------------------------- -Info 190 [00:06:09.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 190 [00:06:10.000] Files (3) - -Info 190 [00:06:11.000] ----------------------------------------------- -Info 190 [00:06:12.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 190 [00:06:13.000] Files (2) - -Info 190 [00:06:14.000] ----------------------------------------------- -Info 190 [00:06:15.000] Open files: -Info 190 [00:06:16.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 190 [00:06:17.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json -Info 190 [00:06:18.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 190 [00:06:19.000] Projects: /dev/null/inferredProject1* -Info 190 [00:06:20.000] request: +Info 172 [00:05:34.000] Search path: /dummy +Info 173 [00:05:35.000] For info: /dummy/dummy.ts :: No config files found. +Info 174 [00:05:36.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 175 [00:05:37.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 176 [00:05:38.000] Before ensureProjectForOpenFiles: +Info 177 [00:05:39.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 177 [00:05:40.000] Files (5) + +Info 177 [00:05:41.000] ----------------------------------------------- +Info 177 [00:05:42.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 177 [00:05:43.000] Files (3) + +Info 177 [00:05:44.000] ----------------------------------------------- +Info 177 [00:05:45.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 177 [00:05:46.000] Files (2) + +Info 177 [00:05:47.000] ----------------------------------------------- +Info 177 [00:05:48.000] Open files: +Info 177 [00:05:49.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 177 [00:05:50.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 177 [00:05:51.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 177 [00:05:52.000] Projects: /dev/null/inferredProject1* +Info 177 [00:05:53.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 178 [00:05:54.000] DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 179 [00:05:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 180 [00:05:56.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 181 [00:05:57.000] Different program with same set of files +Info 182 [00:05:58.000] After ensureProjectForOpenFiles: +Info 183 [00:05:59.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 183 [00:06:00.000] Files (5) + +Info 183 [00:06:01.000] ----------------------------------------------- +Info 183 [00:06:02.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 183 [00:06:03.000] Files (3) + +Info 183 [00:06:04.000] ----------------------------------------------- +Info 183 [00:06:05.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 183 [00:06:06.000] Files (2) + +Info 183 [00:06:07.000] ----------------------------------------------- +Info 183 [00:06:08.000] Open files: +Info 183 [00:06:09.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 183 [00:06:10.000] Projects: /user/username/projects/myproject/tsconfig.json,/user/username/projects/myproject/tsconfig-src.json +Info 183 [00:06:11.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 183 [00:06:12.000] Projects: /dev/null/inferredProject1* +Info 183 [00:06:13.000] request: { "command": "references", "arguments": { @@ -1015,30 +1008,29 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 191 [00:06:21.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig-src.json -Info 192 [00:06:22.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig.json -Info 193 [00:06:23.000] Search path: /user/username/projects/myproject/src -Info 194 [00:06:24.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 195 [00:06:25.000] Search path: /user/username/projects/myproject/src -Info 196 [00:06:26.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 197 [00:06:27.000] Search path: /user/username/projects/myproject/src -Info 198 [00:06:28.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 199 [00:06:29.000] Search path: /user/username/projects/myproject/src/helpers -Info 200 [00:06:30.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 201 [00:06:31.000] Search path: /user/username/projects/myproject/src/helpers -Info 202 [00:06:32.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 203 [00:06:33.000] Search path: /user/username/projects/myproject/indirect1 -Info 204 [00:06:34.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 205 [00:06:35.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json -Info 206 [00:06:36.000] event: +Info 184 [00:06:14.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig-src.json +Info 185 [00:06:15.000] Finding references to /user/username/projects/myproject/src/main.ts position 50 in project /user/username/projects/myproject/tsconfig.json +Info 186 [00:06:16.000] Search path: /user/username/projects/myproject/src +Info 187 [00:06:17.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 188 [00:06:18.000] Search path: /user/username/projects/myproject/src +Info 189 [00:06:19.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 190 [00:06:20.000] Search path: /user/username/projects/myproject/src +Info 191 [00:06:21.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 192 [00:06:22.000] Search path: /user/username/projects/myproject/src/helpers +Info 193 [00:06:23.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 194 [00:06:24.000] Search path: /user/username/projects/myproject/src/helpers +Info 195 [00:06:25.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 196 [00:06:26.000] Search path: /user/username/projects/myproject/indirect1 +Info 197 [00:06:27.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 198 [00:06:28.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json +Info 199 [00:06:29.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for original file: /user/username/projects/myproject/indirect1/main.ts"}} -Info 207 [00:06:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 208 [00:06:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info 209 [00:06:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 210 [00:06:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 211 [00:06:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 212 [00:06:42.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 213 [00:06:43.000] Files (4) +Info 200 [00:06:30.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json +Info 201 [00:06:31.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 202 [00:06:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 203 [00:06:33.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 204 [00:06:34.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 205 [00:06:35.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1054,37 +1046,36 @@ Info 213 [00:06:43.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 214 [00:06:44.000] ----------------------------------------------- -Info 215 [00:06:45.000] event: +Info 206 [00:06:36.000] ----------------------------------------------- +Info 207 [00:06:37.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json"}} -Info 216 [00:06:46.000] event: +Info 208 [00:06:38.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"9ccc3aed1af08832ccb25ea453f7b771199f56af238b53cc428549dbd2d59246","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":true,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"other","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 217 [00:06:47.000] Search path: /user/username/projects/myproject/indirect1 -Info 218 [00:06:48.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 219 [00:06:49.000] Search path: /user/username/projects/myproject/indirect1 -Info 220 [00:06:50.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 221 [00:06:51.000] Finding references to /user/username/projects/myproject/indirect1/main.ts position 9 in project /user/username/projects/myproject/tsconfig-indirect1.json -Info 222 [00:06:52.000] Search path: /user/username/projects/myproject/src -Info 223 [00:06:53.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 224 [00:06:54.000] Search path: /user/username/projects/myproject/src -Info 225 [00:06:55.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 226 [00:06:56.000] Search path: /user/username/projects/myproject/src -Info 227 [00:06:57.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 228 [00:06:58.000] Search path: /user/username/projects/myproject/src/helpers -Info 229 [00:06:59.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 230 [00:07:00.000] Search path: /user/username/projects/myproject/src/helpers -Info 231 [00:07:01.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 232 [00:07:02.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect2.json -Info 233 [00:07:03.000] event: +Info 209 [00:06:39.000] Search path: /user/username/projects/myproject/indirect1 +Info 210 [00:06:40.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 211 [00:06:41.000] Search path: /user/username/projects/myproject/indirect1 +Info 212 [00:06:42.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 213 [00:06:43.000] Finding references to /user/username/projects/myproject/indirect1/main.ts position 9 in project /user/username/projects/myproject/tsconfig-indirect1.json +Info 214 [00:06:44.000] Search path: /user/username/projects/myproject/src +Info 215 [00:06:45.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 216 [00:06:46.000] Search path: /user/username/projects/myproject/src +Info 217 [00:06:47.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 218 [00:06:48.000] Search path: /user/username/projects/myproject/src +Info 219 [00:06:49.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 220 [00:06:50.000] Search path: /user/username/projects/myproject/src/helpers +Info 221 [00:06:51.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 222 [00:06:52.000] Search path: /user/username/projects/myproject/src/helpers +Info 223 [00:06:53.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 224 [00:06:54.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect2.json +Info 225 [00:06:55.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect2.json","reason":"Creating project referenced by : /user/username/projects/myproject/tsconfig.json as it references project /user/username/projects/myproject/tsconfig-src.json"}} -Info 234 [00:07:04.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 235 [00:07:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info -Info 236 [00:07:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json -Info 237 [00:07:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info 238 [00:07:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info 239 [00:07:09.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 240 [00:07:10.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) -Info 241 [00:07:11.000] Files (4) +Info 226 [00:06:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info +Info 227 [00:06:57.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json +Info 228 [00:06:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots +Info 229 [00:06:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots +Info 230 [00:07:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 231 [00:07:01.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) +Info 232 [00:07:02.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1100,24 +1091,24 @@ Info 241 [00:07:11.000] Files (4) indirect2/main.ts Part of 'files' list in tsconfig.json -Info 242 [00:07:12.000] ----------------------------------------------- -Info 243 [00:07:13.000] event: +Info 233 [00:07:03.000] ----------------------------------------------- +Info 234 [00:07:04.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect2.json"}} -Info 244 [00:07:14.000] event: +Info 235 [00:07:05.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"d9a040bddd6b85b85abd507a988a4b809b1515b5e61257ea3f8263da59589565","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":3,"tsSize":134,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"composite":true,"outDir":"","baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":true,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"other","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 245 [00:07:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts 500 undefined WatchType: Closed Script info -Info 246 [00:07:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts.map 500 undefined WatchType: Closed Script info -Info 247 [00:07:17.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect2.json -Info 248 [00:07:18.000] Search path: /user/username/projects/myproject/src/helpers -Info 249 [00:07:19.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 250 [00:07:20.000] Search path: /user/username/projects/myproject/src/helpers -Info 251 [00:07:21.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 252 [00:07:22.000] Search path: /user/username/projects/myproject/src -Info 253 [00:07:23.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 254 [00:07:24.000] Search path: /user/username/projects/myproject/src -Info 255 [00:07:25.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 256 [00:07:26.000] Search path: /user/username/projects/myproject/src -Info 257 [00:07:27.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 236 [00:07:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts 500 undefined WatchType: Closed Script info +Info 237 [00:07:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/helpers/functions.d.ts.map 500 undefined WatchType: Closed Script info +Info 238 [00:07:08.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect2.json +Info 239 [00:07:09.000] Search path: /user/username/projects/myproject/src/helpers +Info 240 [00:07:10.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 241 [00:07:11.000] Search path: /user/username/projects/myproject/src/helpers +Info 242 [00:07:12.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 243 [00:07:13.000] Search path: /user/username/projects/myproject/src +Info 244 [00:07:14.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 245 [00:07:15.000] Search path: /user/username/projects/myproject/src +Info 246 [00:07:16.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 247 [00:07:17.000] Search path: /user/username/projects/myproject/src +Info 248 [00:07:18.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -1154,7 +1145,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 258 [00:07:28.000] response: +Info 249 [00:07:19.000] response: { "response": { "refs": [ @@ -1303,59 +1294,59 @@ Info 258 [00:07:28.000] response: }, "responseRequired": true } -Info 259 [00:07:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 260 [00:07:30.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 260 [00:07:31.000] Files (5) - -Info 260 [00:07:32.000] ----------------------------------------------- -Info 260 [00:07:33.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 260 [00:07:34.000] Files (3) - -Info 260 [00:07:35.000] ----------------------------------------------- -Info 260 [00:07:36.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 260 [00:07:37.000] Files (4) - -Info 260 [00:07:38.000] ----------------------------------------------- -Info 260 [00:07:39.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) -Info 260 [00:07:40.000] Files (4) - -Info 260 [00:07:41.000] ----------------------------------------------- -Info 260 [00:07:42.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 260 [00:07:43.000] Files (2) - -Info 260 [00:07:44.000] ----------------------------------------------- -Info 260 [00:07:45.000] Open files: -Info 260 [00:07:46.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined -Info 260 [00:07:47.000] Projects: /dev/null/inferredProject1* -Info 260 [00:07:48.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 261 [00:07:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 261 [00:07:50.000] Files (5) - -Info 261 [00:07:51.000] ----------------------------------------------- -Info 261 [00:07:52.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 261 [00:07:53.000] Files (3) - -Info 261 [00:07:54.000] ----------------------------------------------- -Info 261 [00:07:55.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 261 [00:07:56.000] Files (4) - -Info 261 [00:07:57.000] ----------------------------------------------- -Info 261 [00:07:58.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) -Info 261 [00:07:59.000] Files (4) - -Info 261 [00:08:00.000] ----------------------------------------------- -Info 261 [00:08:01.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 261 [00:08:02.000] Files (2) - -Info 261 [00:08:03.000] ----------------------------------------------- -Info 261 [00:08:04.000] Open files: -Info 261 [00:08:05.000] Search path: /user/username/projects/myproject/indirect3 -Info 262 [00:08:06.000] For info: /user/username/projects/myproject/indirect3/main.ts :: Config file name: /user/username/projects/myproject/indirect3/tsconfig.json -Info 263 [00:08:07.000] Creating configuration project /user/username/projects/myproject/indirect3/tsconfig.json -Info 264 [00:08:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Config file -Info 265 [00:08:09.000] event: +Info 250 [00:07:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 251 [00:07:21.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 251 [00:07:22.000] Files (5) + +Info 251 [00:07:23.000] ----------------------------------------------- +Info 251 [00:07:24.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 251 [00:07:25.000] Files (3) + +Info 251 [00:07:26.000] ----------------------------------------------- +Info 251 [00:07:27.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 251 [00:07:28.000] Files (4) + +Info 251 [00:07:29.000] ----------------------------------------------- +Info 251 [00:07:30.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) +Info 251 [00:07:31.000] Files (4) + +Info 251 [00:07:32.000] ----------------------------------------------- +Info 251 [00:07:33.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 251 [00:07:34.000] Files (2) + +Info 251 [00:07:35.000] ----------------------------------------------- +Info 251 [00:07:36.000] Open files: +Info 251 [00:07:37.000] FileName: /dummy/dummy.ts ProjectRootPath: undefined +Info 251 [00:07:38.000] Projects: /dev/null/inferredProject1* +Info 251 [00:07:39.000] FileWatcher:: Added:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 252 [00:07:40.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 252 [00:07:41.000] Files (5) + +Info 252 [00:07:42.000] ----------------------------------------------- +Info 252 [00:07:43.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 252 [00:07:44.000] Files (3) + +Info 252 [00:07:45.000] ----------------------------------------------- +Info 252 [00:07:46.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 252 [00:07:47.000] Files (4) + +Info 252 [00:07:48.000] ----------------------------------------------- +Info 252 [00:07:49.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) +Info 252 [00:07:50.000] Files (4) + +Info 252 [00:07:51.000] ----------------------------------------------- +Info 252 [00:07:52.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 252 [00:07:53.000] Files (2) + +Info 252 [00:07:54.000] ----------------------------------------------- +Info 252 [00:07:55.000] Open files: +Info 252 [00:07:56.000] Search path: /user/username/projects/myproject/indirect3 +Info 253 [00:07:57.000] For info: /user/username/projects/myproject/indirect3/main.ts :: Config file name: /user/username/projects/myproject/indirect3/tsconfig.json +Info 254 [00:07:58.000] Creating configuration project /user/username/projects/myproject/indirect3/tsconfig.json +Info 255 [00:07:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Config file +Info 256 [00:08:00.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/indirect3/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/indirect3/main.ts to open"}} -Info 266 [00:08:10.000] Config: /user/username/projects/myproject/indirect3/tsconfig.json : { +Info 257 [00:08:01.000] Config: /user/username/projects/myproject/indirect3/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/indirect3/main.ts" ], @@ -1364,20 +1355,19 @@ Info 266 [00:08:10.000] Config: /user/username/projects/myproject/indirect3/tsc "configFilePath": "/user/username/projects/myproject/indirect3/tsconfig.json" } } -Info 267 [00:08:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory -Info 268 [00:08:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory -Info 269 [00:08:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 270 [00:08:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json -Info 271 [00:08:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info -Info 272 [00:08:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations -Info 273 [00:08:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations -Info 274 [00:08:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info 275 [00:08:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info 276 [00:08:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info 277 [00:08:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots -Info 278 [00:08:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 279 [00:08:23.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) -Info 280 [00:08:24.000] Files (4) +Info 258 [00:08:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory +Info 259 [00:08:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3 1 undefined Config: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Wild card directory +Info 260 [00:08:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json +Info 261 [00:08:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts 500 undefined WatchType: Closed Script info +Info 262 [00:08:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations +Info 263 [00:08:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Failed Lookup Locations +Info 264 [00:08:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots +Info 265 [00:08:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots +Info 266 [00:08:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots +Info 267 [00:08:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect3/tsconfig.json WatchType: Type roots +Info 268 [00:08:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 269 [00:08:13.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) +Info 270 [00:08:14.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/target/src/helpers/functions.d.ts /user/username/projects/myproject/target/src/main.d.ts @@ -1393,16 +1383,16 @@ Info 280 [00:08:24.000] Files (4) main.ts Matched by default include pattern '**/*' -Info 281 [00:08:25.000] ----------------------------------------------- -Info 282 [00:08:26.000] event: +Info 271 [00:08:15.000] ----------------------------------------------- +Info 272 [00:08:16.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/indirect3/tsconfig.json"}} -Info 283 [00:08:27.000] event: +Info 273 [00:08:17.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"5b0817f69b6871821661b976aa73f4f2533b37c5f4b920541094c2d727d0dc39","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":57,"tsx":0,"tsxSize":0,"dts":3,"dtsSize":494,"deferred":0,"deferredSize":0},"compilerOptions":{"baseUrl":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 284 [00:08:28.000] event: +Info 274 [00:08:18.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/indirect3/main.ts","configFile":"/user/username/projects/myproject/indirect3/tsconfig.json","diagnostics":[]}} -Info 285 [00:08:29.000] `remove Project:: -Info 286 [00:08:30.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 287 [00:08:31.000] Files (5) +Info 275 [00:08:19.000] `remove Project:: +Info 276 [00:08:20.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 277 [00:08:21.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1421,13 +1411,13 @@ Info 287 [00:08:31.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 288 [00:08:32.000] ----------------------------------------------- -Info 289 [00:08:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 290 [00:08:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 291 [00:08:35.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 292 [00:08:36.000] `remove Project:: -Info 293 [00:08:37.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 294 [00:08:38.000] Files (3) +Info 278 [00:08:22.000] ----------------------------------------------- +Info 279 [00:08:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 280 [00:08:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 281 [00:08:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 282 [00:08:26.000] `remove Project:: +Info 283 [00:08:27.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 284 [00:08:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1441,12 +1431,12 @@ Info 294 [00:08:38.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 295 [00:08:39.000] ----------------------------------------------- -Info 296 [00:08:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 297 [00:08:41.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 298 [00:08:42.000] `remove Project:: -Info 299 [00:08:43.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 300 [00:08:44.000] Files (4) +Info 285 [00:08:29.000] ----------------------------------------------- +Info 286 [00:08:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 287 [00:08:31.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 288 [00:08:32.000] `remove Project:: +Info 289 [00:08:33.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 290 [00:08:34.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1462,13 +1452,13 @@ Info 300 [00:08:44.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 301 [00:08:45.000] ----------------------------------------------- -Info 302 [00:08:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 303 [00:08:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 304 [00:08:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 305 [00:08:49.000] `remove Project:: -Info 306 [00:08:50.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) -Info 307 [00:08:51.000] Files (4) +Info 291 [00:08:35.000] ----------------------------------------------- +Info 292 [00:08:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 293 [00:08:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 294 [00:08:38.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 295 [00:08:39.000] `remove Project:: +Info 296 [00:08:40.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) +Info 297 [00:08:41.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1484,16 +1474,16 @@ Info 307 [00:08:51.000] Files (4) indirect2/main.ts Part of 'files' list in tsconfig.json -Info 308 [00:08:52.000] ----------------------------------------------- -Info 309 [00:08:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 310 [00:08:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 311 [00:08:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 312 [00:08:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 313 [00:08:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info 314 [00:08:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info 315 [00:08:59.000] `remove Project:: -Info 316 [00:09:00.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 317 [00:09:01.000] Files (2) +Info 298 [00:08:42.000] ----------------------------------------------- +Info 299 [00:08:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 300 [00:08:44.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 301 [00:08:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 302 [00:08:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 303 [00:08:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots +Info 304 [00:08:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots +Info 305 [00:08:49.000] `remove Project:: +Info 306 [00:08:50.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 307 [00:08:51.000] Files (2) /a/lib/lib.d.ts /dummy/dummy.ts @@ -1503,22 +1493,22 @@ Info 317 [00:09:01.000] Files (2) dummy.ts Root file specified for compilation -Info 318 [00:09:02.000] ----------------------------------------------- -Info 319 [00:09:03.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 320 [00:09:04.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 321 [00:09:05.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info -Info 322 [00:09:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 323 [00:09:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 324 [00:09:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 325 [00:09:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info -Info 326 [00:09:10.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) -Info 326 [00:09:11.000] Files (4) - -Info 326 [00:09:12.000] ----------------------------------------------- -Info 326 [00:09:13.000] Open files: -Info 326 [00:09:14.000] FileName: /user/username/projects/myproject/indirect3/main.ts ProjectRootPath: undefined -Info 326 [00:09:15.000] Projects: /user/username/projects/myproject/indirect3/tsconfig.json -Info 326 [00:09:16.000] request: +Info 308 [00:08:52.000] ----------------------------------------------- +Info 309 [00:08:53.000] DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 310 [00:08:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /dummy/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 311 [00:08:55.000] FileWatcher:: Close:: WatchInfo: /dummy/dummy.ts 500 undefined WatchType: Closed Script info +Info 312 [00:08:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 313 [00:08:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 314 [00:08:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 315 [00:08:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info +Info 316 [00:09:00.000] Project '/user/username/projects/myproject/indirect3/tsconfig.json' (Configured) +Info 316 [00:09:01.000] Files (4) + +Info 316 [00:09:02.000] ----------------------------------------------- +Info 316 [00:09:03.000] Open files: +Info 316 [00:09:04.000] FileName: /user/username/projects/myproject/indirect3/main.ts ProjectRootPath: undefined +Info 316 [00:09:05.000] Projects: /user/username/projects/myproject/indirect3/tsconfig.json +Info 316 [00:09:06.000] request: { "command": "references", "arguments": { @@ -1557,16 +1547,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/target: {} -Info 327 [00:09:17.000] Finding references to /user/username/projects/myproject/indirect3/main.ts position 9 in project /user/username/projects/myproject/indirect3/tsconfig.json -Info 328 [00:09:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts.map 500 undefined WatchType: Closed Script info -Info 329 [00:09:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 330 [00:09:20.000] Search path: /user/username/projects/myproject/src -Info 331 [00:09:21.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 332 [00:09:22.000] Creating configuration project /user/username/projects/myproject/tsconfig.json -Info 333 [00:09:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 334 [00:09:24.000] event: +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 +Info 318 [00:09:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/target/src/main.d.ts.map 500 undefined WatchType: Closed Script info +Info 319 [00:09:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 320 [00:09:10.000] Search path: /user/username/projects/myproject/src +Info 321 [00:09:11.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 322 [00:09:12.000] Creating configuration project /user/username/projects/myproject/tsconfig.json +Info 323 [00:09:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 324 [00:09:14.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig.json","reason":"Creating project for original file: /user/username/projects/myproject/src/main.ts for location: /user/username/projects/myproject/target/src/main.d.ts"}} -Info 335 [00:09:25.000] Config: /user/username/projects/myproject/tsconfig.json : { +Info 325 [00:09:15.000] Config: /user/username/projects/myproject/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/own/main.ts" ], @@ -1586,10 +1576,9 @@ Info 335 [00:09:25.000] Config: /user/username/projects/myproject/tsconfig.json } ] } -Info 336 [00:09:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 337 [00:09:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info -Info 338 [00:09:28.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 339 [00:09:29.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { +Info 326 [00:09:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/own/main.ts 500 undefined WatchType: Closed Script info +Info 327 [00:09:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 328 [00:09:18.000] Config: /user/username/projects/myproject/tsconfig-indirect1.json : { "rootNames": [ "/user/username/projects/myproject/indirect1/main.ts" ], @@ -1606,8 +1595,8 @@ Info 339 [00:09:29.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 340 [00:09:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 341 [00:09:31.000] Config: /user/username/projects/myproject/tsconfig-src.json : { +Info 329 [00:09:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect1.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 330 [00:09:20.000] Config: /user/username/projects/myproject/tsconfig-src.json : { "rootNames": [ "/user/username/projects/myproject/src/main.ts", "/user/username/projects/myproject/src/helpers/functions.ts" @@ -1619,10 +1608,10 @@ Info 341 [00:09:31.000] Config: /user/username/projects/myproject/tsconfig-src. "configFilePath": "/user/username/projects/myproject/tsconfig-src.json" } } -Info 342 [00:09:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 343 [00:09:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 344 [00:09:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory -Info 345 [00:09:35.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { +Info 331 [00:09:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-src.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 332 [00:09:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 333 [00:09:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/tsconfig-src.json WatchType: Wild card directory +Info 334 [00:09:24.000] Config: /user/username/projects/myproject/tsconfig-indirect2.json : { "rootNames": [ "/user/username/projects/myproject/indirect2/main.ts" ], @@ -1639,13 +1628,13 @@ Info 345 [00:09:35.000] Config: /user/username/projects/myproject/tsconfig-indi } ] } -Info 346 [00:09:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 347 [00:09:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info -Info 348 [00:09:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 349 [00:09:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 350 [00:09:40.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 351 [00:09:41.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 352 [00:09:42.000] Files (5) +Info 335 [00:09:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig-indirect2.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 336 [00:09:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect1/main.ts 500 undefined WatchType: Closed Script info +Info 337 [00:09:27.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 338 [00:09:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 339 [00:09:29.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 340 [00:09:30.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 341 [00:09:31.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1664,19 +1653,18 @@ Info 352 [00:09:42.000] Files (5) own/main.ts Part of 'files' list in tsconfig.json -Info 353 [00:09:43.000] ----------------------------------------------- -Info 354 [00:09:44.000] event: +Info 342 [00:09:32.000] ----------------------------------------------- +Info 343 [00:09:33.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 355 [00:09:45.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json -Info 356 [00:09:46.000] event: +Info 344 [00:09:34.000] Creating configuration project /user/username/projects/myproject/tsconfig-src.json +Info 345 [00:09:35.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for original file: /user/username/projects/myproject/src/main.ts for location: /user/username/projects/myproject/target/src/main.d.ts"}} -Info 357 [00:09:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 358 [00:09:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json -Info 359 [00:09:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 360 [00:09:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots -Info 361 [00:09:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 362 [00:09:52.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) -Info 363 [00:09:53.000] Files (3) +Info 346 [00:09:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json +Info 347 [00:09:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 348 [00:09:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-src.json WatchType: Type roots +Info 349 [00:09:39.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-src.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 350 [00:09:40.000] Project '/user/username/projects/myproject/tsconfig-src.json' (Configured) +Info 351 [00:09:41.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1690,40 +1678,39 @@ Info 363 [00:09:53.000] Files (3) src/main.ts Matched by include pattern './src/**/*' in 'tsconfig-src.json' -Info 364 [00:09:54.000] ----------------------------------------------- -Info 365 [00:09:55.000] event: +Info 352 [00:09:42.000] ----------------------------------------------- +Info 353 [00:09:43.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-src.json"}} -Info 366 [00:09:56.000] Search path: /user/username/projects/myproject/src -Info 367 [00:09:57.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 368 [00:09:58.000] Search path: /user/username/projects/myproject/src -Info 369 [00:09:59.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 370 [00:10:00.000] Search path: /user/username/projects/myproject/src/helpers -Info 371 [00:10:01.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 372 [00:10:02.000] Search path: /user/username/projects/myproject/src/helpers -Info 373 [00:10:03.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 374 [00:10:04.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig.json -Info 375 [00:10:05.000] Search path: /user/username/projects/myproject/src -Info 376 [00:10:06.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 377 [00:10:07.000] Search path: /user/username/projects/myproject/src -Info 378 [00:10:08.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 379 [00:10:09.000] Search path: /user/username/projects/myproject/src -Info 380 [00:10:10.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 381 [00:10:11.000] Search path: /user/username/projects/myproject/src/helpers -Info 382 [00:10:12.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 383 [00:10:13.000] Search path: /user/username/projects/myproject/src/helpers -Info 384 [00:10:14.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 385 [00:10:15.000] Search path: /user/username/projects/myproject/indirect1 -Info 386 [00:10:16.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 387 [00:10:17.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json -Info 388 [00:10:18.000] event: +Info 354 [00:09:44.000] Search path: /user/username/projects/myproject/src +Info 355 [00:09:45.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 356 [00:09:46.000] Search path: /user/username/projects/myproject/src +Info 357 [00:09:47.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 358 [00:09:48.000] Search path: /user/username/projects/myproject/src/helpers +Info 359 [00:09:49.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 360 [00:09:50.000] Search path: /user/username/projects/myproject/src/helpers +Info 361 [00:09:51.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 362 [00:09:52.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig.json +Info 363 [00:09:53.000] Search path: /user/username/projects/myproject/src +Info 364 [00:09:54.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 365 [00:09:55.000] Search path: /user/username/projects/myproject/src +Info 366 [00:09:56.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 367 [00:09:57.000] Search path: /user/username/projects/myproject/src +Info 368 [00:09:58.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 369 [00:09:59.000] Search path: /user/username/projects/myproject/src/helpers +Info 370 [00:10:00.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 371 [00:10:01.000] Search path: /user/username/projects/myproject/src/helpers +Info 372 [00:10:02.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 373 [00:10:03.000] Search path: /user/username/projects/myproject/indirect1 +Info 374 [00:10:04.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 375 [00:10:05.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect1.json +Info 376 [00:10:06.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json","reason":"Creating project referenced in solution /user/username/projects/myproject/tsconfig.json to find possible configured project for original file: /user/username/projects/myproject/indirect1/main.ts"}} -Info 389 [00:10:19.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 390 [00:10:20.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json -Info 391 [00:10:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 392 [00:10:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots -Info 393 [00:10:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 394 [00:10:24.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) -Info 395 [00:10:25.000] Files (4) +Info 377 [00:10:07.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json +Info 378 [00:10:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 379 [00:10:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect1.json WatchType: Type roots +Info 380 [00:10:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect1.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 381 [00:10:11.000] Project '/user/username/projects/myproject/tsconfig-indirect1.json' (Configured) +Info 382 [00:10:12.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1739,36 +1726,35 @@ Info 395 [00:10:25.000] Files (4) indirect1/main.ts Part of 'files' list in tsconfig.json -Info 396 [00:10:26.000] ----------------------------------------------- -Info 397 [00:10:27.000] event: +Info 383 [00:10:13.000] ----------------------------------------------- +Info 384 [00:10:14.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect1.json"}} -Info 398 [00:10:28.000] Search path: /user/username/projects/myproject/indirect1 -Info 399 [00:10:29.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 400 [00:10:30.000] Search path: /user/username/projects/myproject/indirect1 -Info 401 [00:10:31.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 402 [00:10:32.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig-src.json -Info 403 [00:10:33.000] Finding references to /user/username/projects/myproject/indirect1/main.ts position 9 in project /user/username/projects/myproject/tsconfig-indirect1.json -Info 404 [00:10:34.000] Search path: /user/username/projects/myproject/src -Info 405 [00:10:35.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 406 [00:10:36.000] Search path: /user/username/projects/myproject/src -Info 407 [00:10:37.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 408 [00:10:38.000] Search path: /user/username/projects/myproject/src -Info 409 [00:10:39.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 410 [00:10:40.000] Search path: /user/username/projects/myproject/src/helpers -Info 411 [00:10:41.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 412 [00:10:42.000] Search path: /user/username/projects/myproject/src/helpers -Info 413 [00:10:43.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 414 [00:10:44.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect2.json -Info 415 [00:10:45.000] event: +Info 385 [00:10:15.000] Search path: /user/username/projects/myproject/indirect1 +Info 386 [00:10:16.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 387 [00:10:17.000] Search path: /user/username/projects/myproject/indirect1 +Info 388 [00:10:18.000] For info: /user/username/projects/myproject/indirect1/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 389 [00:10:19.000] Finding references to /user/username/projects/myproject/src/main.ts position 9 in project /user/username/projects/myproject/tsconfig-src.json +Info 390 [00:10:20.000] Finding references to /user/username/projects/myproject/indirect1/main.ts position 9 in project /user/username/projects/myproject/tsconfig-indirect1.json +Info 391 [00:10:21.000] Search path: /user/username/projects/myproject/src +Info 392 [00:10:22.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 393 [00:10:23.000] Search path: /user/username/projects/myproject/src +Info 394 [00:10:24.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 395 [00:10:25.000] Search path: /user/username/projects/myproject/src +Info 396 [00:10:26.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 397 [00:10:27.000] Search path: /user/username/projects/myproject/src/helpers +Info 398 [00:10:28.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 399 [00:10:29.000] Search path: /user/username/projects/myproject/src/helpers +Info 400 [00:10:30.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 401 [00:10:31.000] Creating configuration project /user/username/projects/myproject/tsconfig-indirect2.json +Info 402 [00:10:32.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect2.json","reason":"Creating project referenced by : /user/username/projects/myproject/tsconfig.json as it references project /user/username/projects/myproject/tsconfig-src.json"}} -Info 416 [00:10:46.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 417 [00:10:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info -Info 418 [00:10:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json -Info 419 [00:10:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info 420 [00:10:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots -Info 421 [00:10:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 422 [00:10:52.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) -Info 423 [00:10:53.000] Files (4) +Info 403 [00:10:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect2/main.ts 500 undefined WatchType: Closed Script info +Info 404 [00:10:34.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json +Info 405 [00:10:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots +Info 406 [00:10:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig-indirect2.json WatchType: Type roots +Info 407 [00:10:37.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig-indirect2.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 408 [00:10:38.000] Project '/user/username/projects/myproject/tsconfig-indirect2.json' (Configured) +Info 409 [00:10:39.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/helpers/functions.ts /user/username/projects/myproject/src/main.ts @@ -1784,20 +1770,20 @@ Info 423 [00:10:53.000] Files (4) indirect2/main.ts Part of 'files' list in tsconfig.json -Info 424 [00:10:54.000] ----------------------------------------------- -Info 425 [00:10:55.000] event: +Info 410 [00:10:40.000] ----------------------------------------------- +Info 411 [00:10:41.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig-indirect2.json"}} -Info 426 [00:10:56.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect2.json -Info 427 [00:10:57.000] Search path: /user/username/projects/myproject/src/helpers -Info 428 [00:10:58.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 429 [00:10:59.000] Search path: /user/username/projects/myproject/src/helpers -Info 430 [00:11:00.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 431 [00:11:01.000] Search path: /user/username/projects/myproject/src -Info 432 [00:11:02.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 433 [00:11:03.000] Search path: /user/username/projects/myproject/src -Info 434 [00:11:04.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json -Info 435 [00:11:05.000] Search path: /user/username/projects/myproject/src -Info 436 [00:11:06.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 412 [00:10:42.000] Finding references to /user/username/projects/myproject/src/helpers/functions.ts position 13 in project /user/username/projects/myproject/tsconfig-indirect2.json +Info 413 [00:10:43.000] Search path: /user/username/projects/myproject/src/helpers +Info 414 [00:10:44.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 415 [00:10:45.000] Search path: /user/username/projects/myproject/src/helpers +Info 416 [00:10:46.000] For info: /user/username/projects/myproject/src/helpers/functions.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 417 [00:10:47.000] Search path: /user/username/projects/myproject/src +Info 418 [00:10:48.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 419 [00:10:49.000] Search path: /user/username/projects/myproject/src +Info 420 [00:10:50.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json +Info 421 [00:10:51.000] Search path: /user/username/projects/myproject/src +Info 422 [00:10:52.000] For info: /user/username/projects/myproject/src/main.ts :: Config file name: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -1846,7 +1832,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 437 [00:11:07.000] response: +Info 423 [00:10:53.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-as-object-literal-property-types.js b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-as-object-literal-property-types.js index ca4d75663870c..2aaec1966be6b 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 @@ -75,9 +75,8 @@ Info 6 [00:00:50.000] Config: /user/username/projects/solution/api/tsconfig.j } Info 7 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory Info 8 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json -Info 11 [00:00:55.000] Config: /user/username/projects/solution/shared/tsconfig.json : { +Info 9 [00:00:53.000] Starting updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json +Info 10 [00:00:54.000] Config: /user/username/projects/solution/shared/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/shared/src/index.ts" ], @@ -88,20 +87,20 @@ Info 11 [00:00:55.000] Config: /user/username/projects/solution/shared/tsconfi "configFilePath": "/user/username/projects/solution/shared/tsconfig.json" } } -Info 12 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file -Info 13 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src/index.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 20 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 21 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 22 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 23 [00:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:08.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) -Info 25 [00:01:09.000] Files (3) +Info 11 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file +Info 12 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 19 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 20 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 21 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 22 [00:01:06.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:07.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) +Info 24 [00:01:08.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts /user/username/projects/solution/api/src/server.ts @@ -114,24 +113,24 @@ Info 25 [00:01:09.000] Files (3) src/server.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 26 [00:01:10.000] ----------------------------------------------- -Info 27 [00:01:11.000] Search path: /user/username/projects/solution/api -Info 28 [00:01:12.000] For info: /user/username/projects/solution/api/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json -Info 29 [00:01:13.000] Creating configuration project /user/username/projects/solution/tsconfig.json -Info 30 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 31 [00:01:15.000] Search path: /user/username/projects/solution -Info 32 [00:01:16.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. -Info 33 [00:01:17.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) -Info 33 [00:01:18.000] Files (3) +Info 25 [00:01:09.000] ----------------------------------------------- +Info 26 [00:01:10.000] Search path: /user/username/projects/solution/api +Info 27 [00:01:11.000] For info: /user/username/projects/solution/api/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json +Info 28 [00:01:12.000] Creating configuration project /user/username/projects/solution/tsconfig.json +Info 29 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 30 [00:01:14.000] Search path: /user/username/projects/solution +Info 31 [00:01:15.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. +Info 32 [00:01:16.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) +Info 32 [00:01:17.000] Files (3) -Info 33 [00:01:19.000] ----------------------------------------------- -Info 33 [00:01:20.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) -Info 33 [00:01:21.000] Files (0) InitialLoadPending +Info 32 [00:01:18.000] ----------------------------------------------- +Info 32 [00:01:19.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) +Info 32 [00:01:20.000] Files (0) InitialLoadPending -Info 33 [00:01:22.000] ----------------------------------------------- -Info 33 [00:01:23.000] Open files: -Info 33 [00:01:24.000] FileName: /user/username/projects/solution/api/src/server.ts ProjectRootPath: undefined -Info 33 [00:01:25.000] Projects: /user/username/projects/solution/api/tsconfig.json +Info 32 [00:01:21.000] ----------------------------------------------- +Info 32 [00:01:22.000] Open files: +Info 32 [00:01:23.000] FileName: /user/username/projects/solution/api/src/server.ts ProjectRootPath: undefined +Info 32 [00:01:24.000] Projects: /user/username/projects/solution/api/tsconfig.json After request PolledWatches:: @@ -160,11 +159,11 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 33 [00:01:26.000] response: +Info 32 [00:01:25.000] response: { "responseRequired": false } -Info 34 [00:01:27.000] request: +Info 33 [00:01:26.000] request: { "command": "references", "arguments": { @@ -203,19 +202,18 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 35 [00:01:28.000] Finding references to /user/username/projects/solution/api/src/server.ts position 56 in project /user/username/projects/solution/api/tsconfig.json -Info 36 [00:01:29.000] Search path: /user/username/projects/solution/shared/src -Info 37 [00:01:30.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 38 [00:01:31.000] Creating configuration project /user/username/projects/solution/shared/tsconfig.json -Info 39 [00:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 40 [00:01:33.000] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json -Info 41 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 42 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 43 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 44 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 45 [00:01:38.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 46 [00:01:39.000] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) -Info 47 [00:01:40.000] Files (2) +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 +Info 37 [00:01:30.000] Creating configuration project /user/username/projects/solution/shared/tsconfig.json +Info 38 [00:01:31.000] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json +Info 39 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 40 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 41 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 42 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 43 [00:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:37.000] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) +Info 45 [00:01:38.000] Files (2) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts @@ -225,12 +223,12 @@ Info 47 [00:01:40.000] Files (2) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 48 [00:01:41.000] ----------------------------------------------- -Info 49 [00:01:42.000] Search path: /user/username/projects/solution/shared/src -Info 50 [00:01:43.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 51 [00:01:44.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 21 in project /user/username/projects/solution/shared/tsconfig.json -Info 52 [00:01:45.000] Loading configured project /user/username/projects/solution/tsconfig.json -Info 53 [00:01:46.000] Config: /user/username/projects/solution/tsconfig.json : { +Info 46 [00:01:39.000] ----------------------------------------------- +Info 47 [00:01:40.000] Search path: /user/username/projects/solution/shared/src +Info 48 [00:01:41.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 49 [00:01:42.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 21 in project /user/username/projects/solution/shared/tsconfig.json +Info 50 [00:01:43.000] Loading configured project /user/username/projects/solution/tsconfig.json +Info 51 [00:01:44.000] Config: /user/username/projects/solution/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/solution/tsconfig.json" @@ -246,9 +244,8 @@ Info 53 [00:01:46.000] Config: /user/username/projects/solution/tsconfig.json } ] } -Info 54 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 55 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json -Info 56 [00:01:49.000] Config: /user/username/projects/solution/app/tsconfig.json : { +Info 52 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json +Info 53 [00:01:46.000] Config: /user/username/projects/solution/app/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/app/src/app.ts" ], @@ -265,26 +262,25 @@ Info 56 [00:01:49.000] Config: /user/username/projects/solution/app/tsconfig.j } ] } -Info 57 [00:01:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 58 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory -Info 59 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory -Info 60 [00:01:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info 61 [00:01:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info 62 [00:01:55.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [00:01:56.000] Different program with same set of files -Info 64 [00:01:57.000] Creating configuration project /user/username/projects/solution/app/tsconfig.json -Info 65 [00:01:58.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 66 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src/app.ts 500 undefined WatchType: Closed Script info -Info 67 [00:02:00.000] Starting updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json -Info 68 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [00:02:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [00:02:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info 71 [00:02:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info 72 [00:02:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info 73 [00:02:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info 74 [00:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 75 [00:02:08.000] Project '/user/username/projects/solution/app/tsconfig.json' (Configured) -Info 76 [00:02:09.000] Files (3) +Info 54 [00:01:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 55 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory +Info 56 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory +Info 57 [00:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots +Info 58 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots +Info 59 [00:01:52.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:01:53.000] Different program with same set of files +Info 61 [00:01:54.000] Creating configuration project /user/username/projects/solution/app/tsconfig.json +Info 62 [00:01:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src/app.ts 500 undefined WatchType: Closed Script info +Info 63 [00:01:56.000] Starting updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json +Info 64 [00:01:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:01:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations +Info 66 [00:01:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots +Info 67 [00:02:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots +Info 68 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots +Info 69 [00:02:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots +Info 70 [00:02:03.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 71 [00:02:04.000] Project '/user/username/projects/solution/app/tsconfig.json' (Configured) +Info 72 [00:02:05.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts /user/username/projects/solution/app/src/app.ts @@ -297,12 +293,12 @@ Info 76 [00:02:09.000] Files (3) src/app.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 77 [00:02:10.000] ----------------------------------------------- -Info 78 [00:02:11.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 21 in project /user/username/projects/solution/app/tsconfig.json -Info 79 [00:02:12.000] Search path: /user/username/projects/solution/shared/src -Info 80 [00:02:13.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 81 [00:02:14.000] Search path: /user/username/projects/solution/shared/src -Info 82 [00:02:15.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 73 [00:02:06.000] ----------------------------------------------- +Info 74 [00:02:07.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 21 in project /user/username/projects/solution/app/tsconfig.json +Info 75 [00:02:08.000] Search path: /user/username/projects/solution/shared/src +Info 76 [00:02:09.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 77 [00:02:10.000] Search path: /user/username/projects/solution/shared/src +Info 78 [00:02:11.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json After request PolledWatches:: @@ -341,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/solution/app/src: {} -Info 83 [00:02:16.000] response: +Info 79 [00:02:12.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-as-object-literal-property.js b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-as-object-literal-property.js index 22769bbc224ae..b0b09a35b98ce 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 @@ -76,9 +76,8 @@ Info 6 [00:00:50.000] Config: /user/username/projects/solution/api/tsconfig.j } Info 7 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory Info 8 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json -Info 11 [00:00:55.000] Config: /user/username/projects/solution/shared/tsconfig.json : { +Info 9 [00:00:53.000] Starting updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json +Info 10 [00:00:54.000] Config: /user/username/projects/solution/shared/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/shared/src/index.ts" ], @@ -89,20 +88,20 @@ Info 11 [00:00:55.000] Config: /user/username/projects/solution/shared/tsconfi "configFilePath": "/user/username/projects/solution/shared/tsconfig.json" } } -Info 12 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file -Info 13 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src/index.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 20 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 21 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 22 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 23 [00:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:08.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) -Info 25 [00:01:09.000] Files (3) +Info 11 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file +Info 12 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 19 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 20 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 21 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 22 [00:01:06.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:07.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) +Info 24 [00:01:08.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts /user/username/projects/solution/api/src/server.ts @@ -115,24 +114,24 @@ Info 25 [00:01:09.000] Files (3) src/server.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 26 [00:01:10.000] ----------------------------------------------- -Info 27 [00:01:11.000] Search path: /user/username/projects/solution/api -Info 28 [00:01:12.000] For info: /user/username/projects/solution/api/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json -Info 29 [00:01:13.000] Creating configuration project /user/username/projects/solution/tsconfig.json -Info 30 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 31 [00:01:15.000] Search path: /user/username/projects/solution -Info 32 [00:01:16.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. -Info 33 [00:01:17.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) -Info 33 [00:01:18.000] Files (3) +Info 25 [00:01:09.000] ----------------------------------------------- +Info 26 [00:01:10.000] Search path: /user/username/projects/solution/api +Info 27 [00:01:11.000] For info: /user/username/projects/solution/api/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json +Info 28 [00:01:12.000] Creating configuration project /user/username/projects/solution/tsconfig.json +Info 29 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 30 [00:01:14.000] Search path: /user/username/projects/solution +Info 31 [00:01:15.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. +Info 32 [00:01:16.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) +Info 32 [00:01:17.000] Files (3) -Info 33 [00:01:19.000] ----------------------------------------------- -Info 33 [00:01:20.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) -Info 33 [00:01:21.000] Files (0) InitialLoadPending +Info 32 [00:01:18.000] ----------------------------------------------- +Info 32 [00:01:19.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) +Info 32 [00:01:20.000] Files (0) InitialLoadPending -Info 33 [00:01:22.000] ----------------------------------------------- -Info 33 [00:01:23.000] Open files: -Info 33 [00:01:24.000] FileName: /user/username/projects/solution/api/src/server.ts ProjectRootPath: undefined -Info 33 [00:01:25.000] Projects: /user/username/projects/solution/api/tsconfig.json +Info 32 [00:01:21.000] ----------------------------------------------- +Info 32 [00:01:22.000] Open files: +Info 32 [00:01:23.000] FileName: /user/username/projects/solution/api/src/server.ts ProjectRootPath: undefined +Info 32 [00:01:24.000] Projects: /user/username/projects/solution/api/tsconfig.json After request PolledWatches:: @@ -161,11 +160,11 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 33 [00:01:26.000] response: +Info 32 [00:01:25.000] response: { "responseRequired": false } -Info 34 [00:01:27.000] request: +Info 33 [00:01:26.000] request: { "command": "references", "arguments": { @@ -204,19 +203,18 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 35 [00:01:28.000] Finding references to /user/username/projects/solution/api/src/server.ts position 56 in project /user/username/projects/solution/api/tsconfig.json -Info 36 [00:01:29.000] Search path: /user/username/projects/solution/shared/src -Info 37 [00:01:30.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 38 [00:01:31.000] Creating configuration project /user/username/projects/solution/shared/tsconfig.json -Info 39 [00:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 40 [00:01:33.000] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json -Info 41 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 42 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 43 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 44 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 45 [00:01:38.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 46 [00:01:39.000] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) -Info 47 [00:01:40.000] Files (2) +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 +Info 37 [00:01:30.000] Creating configuration project /user/username/projects/solution/shared/tsconfig.json +Info 38 [00:01:31.000] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json +Info 39 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 40 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 41 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 42 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 43 [00:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:37.000] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) +Info 45 [00:01:38.000] Files (2) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts @@ -226,10 +224,10 @@ Info 47 [00:01:40.000] Files (2) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 48 [00:01:41.000] ----------------------------------------------- -Info 49 [00:01:42.000] Search path: /user/username/projects/solution/shared/src -Info 50 [00:01:43.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 51 [00:01:44.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 16 in project /user/username/projects/solution/shared/tsconfig.json +Info 46 [00:01:39.000] ----------------------------------------------- +Info 47 [00:01:40.000] Search path: /user/username/projects/solution/shared/src +Info 48 [00:01:41.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 49 [00:01:42.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 16 in project /user/username/projects/solution/shared/tsconfig.json After request PolledWatches:: @@ -260,7 +258,7 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 52 [00:01:45.000] response: +Info 50 [00:01:43.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-assignment.js b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-arrow-function-assignment.js index a3dd14df9498b..ddd27b55e9954 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 @@ -75,9 +75,8 @@ Info 6 [00:00:50.000] Config: /user/username/projects/solution/api/tsconfig.j } Info 7 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory Info 8 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json -Info 11 [00:00:55.000] Config: /user/username/projects/solution/shared/tsconfig.json : { +Info 9 [00:00:53.000] Starting updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json +Info 10 [00:00:54.000] Config: /user/username/projects/solution/shared/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/shared/src/index.ts" ], @@ -88,20 +87,20 @@ Info 11 [00:00:55.000] Config: /user/username/projects/solution/shared/tsconfi "configFilePath": "/user/username/projects/solution/shared/tsconfig.json" } } -Info 12 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file -Info 13 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src/index.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 20 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 21 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 22 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 23 [00:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:08.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) -Info 25 [00:01:09.000] Files (3) +Info 11 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file +Info 12 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 19 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 20 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 21 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 22 [00:01:06.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:07.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) +Info 24 [00:01:08.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts /user/username/projects/solution/api/src/server.ts @@ -114,24 +113,24 @@ Info 25 [00:01:09.000] Files (3) src/server.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 26 [00:01:10.000] ----------------------------------------------- -Info 27 [00:01:11.000] Search path: /user/username/projects/solution/api -Info 28 [00:01:12.000] For info: /user/username/projects/solution/api/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json -Info 29 [00:01:13.000] Creating configuration project /user/username/projects/solution/tsconfig.json -Info 30 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 31 [00:01:15.000] Search path: /user/username/projects/solution -Info 32 [00:01:16.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. -Info 33 [00:01:17.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) -Info 33 [00:01:18.000] Files (3) +Info 25 [00:01:09.000] ----------------------------------------------- +Info 26 [00:01:10.000] Search path: /user/username/projects/solution/api +Info 27 [00:01:11.000] For info: /user/username/projects/solution/api/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json +Info 28 [00:01:12.000] Creating configuration project /user/username/projects/solution/tsconfig.json +Info 29 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 30 [00:01:14.000] Search path: /user/username/projects/solution +Info 31 [00:01:15.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. +Info 32 [00:01:16.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) +Info 32 [00:01:17.000] Files (3) -Info 33 [00:01:19.000] ----------------------------------------------- -Info 33 [00:01:20.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) -Info 33 [00:01:21.000] Files (0) InitialLoadPending +Info 32 [00:01:18.000] ----------------------------------------------- +Info 32 [00:01:19.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) +Info 32 [00:01:20.000] Files (0) InitialLoadPending -Info 33 [00:01:22.000] ----------------------------------------------- -Info 33 [00:01:23.000] Open files: -Info 33 [00:01:24.000] FileName: /user/username/projects/solution/api/src/server.ts ProjectRootPath: undefined -Info 33 [00:01:25.000] Projects: /user/username/projects/solution/api/tsconfig.json +Info 32 [00:01:21.000] ----------------------------------------------- +Info 32 [00:01:22.000] Open files: +Info 32 [00:01:23.000] FileName: /user/username/projects/solution/api/src/server.ts ProjectRootPath: undefined +Info 32 [00:01:24.000] Projects: /user/username/projects/solution/api/tsconfig.json After request PolledWatches:: @@ -160,11 +159,11 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 33 [00:01:26.000] response: +Info 32 [00:01:25.000] response: { "responseRequired": false } -Info 34 [00:01:27.000] request: +Info 33 [00:01:26.000] request: { "command": "references", "arguments": { @@ -203,19 +202,18 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 35 [00:01:28.000] Finding references to /user/username/projects/solution/api/src/server.ts position 52 in project /user/username/projects/solution/api/tsconfig.json -Info 36 [00:01:29.000] Search path: /user/username/projects/solution/shared/src -Info 37 [00:01:30.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 38 [00:01:31.000] Creating configuration project /user/username/projects/solution/shared/tsconfig.json -Info 39 [00:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 40 [00:01:33.000] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json -Info 41 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 42 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 43 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 44 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 45 [00:01:38.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 46 [00:01:39.000] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) -Info 47 [00:01:40.000] Files (2) +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 +Info 37 [00:01:30.000] Creating configuration project /user/username/projects/solution/shared/tsconfig.json +Info 38 [00:01:31.000] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json +Info 39 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 40 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 41 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 42 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 43 [00:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:37.000] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) +Info 45 [00:01:38.000] Files (2) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts @@ -225,12 +223,12 @@ Info 47 [00:01:40.000] Files (2) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 48 [00:01:41.000] ----------------------------------------------- -Info 49 [00:01:42.000] Search path: /user/username/projects/solution/shared/src -Info 50 [00:01:43.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 51 [00:01:44.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 13 in project /user/username/projects/solution/shared/tsconfig.json -Info 52 [00:01:45.000] Loading configured project /user/username/projects/solution/tsconfig.json -Info 53 [00:01:46.000] Config: /user/username/projects/solution/tsconfig.json : { +Info 46 [00:01:39.000] ----------------------------------------------- +Info 47 [00:01:40.000] Search path: /user/username/projects/solution/shared/src +Info 48 [00:01:41.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 49 [00:01:42.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 13 in project /user/username/projects/solution/shared/tsconfig.json +Info 50 [00:01:43.000] Loading configured project /user/username/projects/solution/tsconfig.json +Info 51 [00:01:44.000] Config: /user/username/projects/solution/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/solution/tsconfig.json" @@ -246,9 +244,8 @@ Info 53 [00:01:46.000] Config: /user/username/projects/solution/tsconfig.json } ] } -Info 54 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 55 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json -Info 56 [00:01:49.000] Config: /user/username/projects/solution/app/tsconfig.json : { +Info 52 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json +Info 53 [00:01:46.000] Config: /user/username/projects/solution/app/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/app/src/app.ts" ], @@ -265,26 +262,25 @@ Info 56 [00:01:49.000] Config: /user/username/projects/solution/app/tsconfig.j } ] } -Info 57 [00:01:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 58 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory -Info 59 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory -Info 60 [00:01:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info 61 [00:01:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info 62 [00:01:55.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [00:01:56.000] Different program with same set of files -Info 64 [00:01:57.000] Creating configuration project /user/username/projects/solution/app/tsconfig.json -Info 65 [00:01:58.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 66 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src/app.ts 500 undefined WatchType: Closed Script info -Info 67 [00:02:00.000] Starting updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json -Info 68 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [00:02:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [00:02:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info 71 [00:02:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info 72 [00:02:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info 73 [00:02:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info 74 [00:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 75 [00:02:08.000] Project '/user/username/projects/solution/app/tsconfig.json' (Configured) -Info 76 [00:02:09.000] Files (3) +Info 54 [00:01:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 55 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory +Info 56 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory +Info 57 [00:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots +Info 58 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots +Info 59 [00:01:52.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:01:53.000] Different program with same set of files +Info 61 [00:01:54.000] Creating configuration project /user/username/projects/solution/app/tsconfig.json +Info 62 [00:01:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src/app.ts 500 undefined WatchType: Closed Script info +Info 63 [00:01:56.000] Starting updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json +Info 64 [00:01:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:01:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations +Info 66 [00:01:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots +Info 67 [00:02:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots +Info 68 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots +Info 69 [00:02:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots +Info 70 [00:02:03.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 71 [00:02:04.000] Project '/user/username/projects/solution/app/tsconfig.json' (Configured) +Info 72 [00:02:05.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts /user/username/projects/solution/app/src/app.ts @@ -297,12 +293,12 @@ Info 76 [00:02:09.000] Files (3) src/app.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 77 [00:02:10.000] ----------------------------------------------- -Info 78 [00:02:11.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 13 in project /user/username/projects/solution/app/tsconfig.json -Info 79 [00:02:12.000] Search path: /user/username/projects/solution/shared/src -Info 80 [00:02:13.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 81 [00:02:14.000] Search path: /user/username/projects/solution/shared/src -Info 82 [00:02:15.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 73 [00:02:06.000] ----------------------------------------------- +Info 74 [00:02:07.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 13 in project /user/username/projects/solution/app/tsconfig.json +Info 75 [00:02:08.000] Search path: /user/username/projects/solution/shared/src +Info 76 [00:02:09.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 77 [00:02:10.000] Search path: /user/username/projects/solution/shared/src +Info 78 [00:02:11.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json After request PolledWatches:: @@ -341,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/solution/app/src: {} -Info 83 [00:02:16.000] response: +Info 79 [00:02:12.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-method-of-class-expression.js b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-method-of-class-expression.js index f3a144530fe66..a0036076da22b 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 @@ -77,9 +77,8 @@ Info 6 [00:00:50.000] Config: /user/username/projects/solution/api/tsconfig.j } Info 7 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory Info 8 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json -Info 11 [00:00:55.000] Config: /user/username/projects/solution/shared/tsconfig.json : { +Info 9 [00:00:53.000] Starting updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json +Info 10 [00:00:54.000] Config: /user/username/projects/solution/shared/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/shared/src/index.ts" ], @@ -90,20 +89,20 @@ Info 11 [00:00:55.000] Config: /user/username/projects/solution/shared/tsconfi "configFilePath": "/user/username/projects/solution/shared/tsconfig.json" } } -Info 12 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file -Info 13 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src/index.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 20 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 21 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 22 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 23 [00:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:08.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) -Info 25 [00:01:09.000] Files (3) +Info 11 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file +Info 12 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 19 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 20 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 21 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 22 [00:01:06.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:07.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) +Info 24 [00:01:08.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts /user/username/projects/solution/api/src/server.ts @@ -116,24 +115,24 @@ Info 25 [00:01:09.000] Files (3) src/server.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 26 [00:01:10.000] ----------------------------------------------- -Info 27 [00:01:11.000] Search path: /user/username/projects/solution/api -Info 28 [00:01:12.000] For info: /user/username/projects/solution/api/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json -Info 29 [00:01:13.000] Creating configuration project /user/username/projects/solution/tsconfig.json -Info 30 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 31 [00:01:15.000] Search path: /user/username/projects/solution -Info 32 [00:01:16.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. -Info 33 [00:01:17.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) -Info 33 [00:01:18.000] Files (3) +Info 25 [00:01:09.000] ----------------------------------------------- +Info 26 [00:01:10.000] Search path: /user/username/projects/solution/api +Info 27 [00:01:11.000] For info: /user/username/projects/solution/api/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json +Info 28 [00:01:12.000] Creating configuration project /user/username/projects/solution/tsconfig.json +Info 29 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 30 [00:01:14.000] Search path: /user/username/projects/solution +Info 31 [00:01:15.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. +Info 32 [00:01:16.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) +Info 32 [00:01:17.000] Files (3) -Info 33 [00:01:19.000] ----------------------------------------------- -Info 33 [00:01:20.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) -Info 33 [00:01:21.000] Files (0) InitialLoadPending +Info 32 [00:01:18.000] ----------------------------------------------- +Info 32 [00:01:19.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) +Info 32 [00:01:20.000] Files (0) InitialLoadPending -Info 33 [00:01:22.000] ----------------------------------------------- -Info 33 [00:01:23.000] Open files: -Info 33 [00:01:24.000] FileName: /user/username/projects/solution/api/src/server.ts ProjectRootPath: undefined -Info 33 [00:01:25.000] Projects: /user/username/projects/solution/api/tsconfig.json +Info 32 [00:01:21.000] ----------------------------------------------- +Info 32 [00:01:22.000] Open files: +Info 32 [00:01:23.000] FileName: /user/username/projects/solution/api/src/server.ts ProjectRootPath: undefined +Info 32 [00:01:24.000] Projects: /user/username/projects/solution/api/tsconfig.json After request PolledWatches:: @@ -162,11 +161,11 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 33 [00:01:26.000] response: +Info 32 [00:01:25.000] response: { "responseRequired": false } -Info 34 [00:01:27.000] request: +Info 33 [00:01:26.000] request: { "command": "references", "arguments": { @@ -205,19 +204,18 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 35 [00:01:28.000] Finding references to /user/username/projects/solution/api/src/server.ts position 89 in project /user/username/projects/solution/api/tsconfig.json -Info 36 [00:01:29.000] Search path: /user/username/projects/solution/shared/src -Info 37 [00:01:30.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 38 [00:01:31.000] Creating configuration project /user/username/projects/solution/shared/tsconfig.json -Info 39 [00:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 40 [00:01:33.000] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json -Info 41 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 42 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 43 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 44 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 45 [00:01:38.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 46 [00:01:39.000] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) -Info 47 [00:01:40.000] Files (2) +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 +Info 37 [00:01:30.000] Creating configuration project /user/username/projects/solution/shared/tsconfig.json +Info 38 [00:01:31.000] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json +Info 39 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 40 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 41 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 42 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 43 [00:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:37.000] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) +Info 45 [00:01:38.000] Files (2) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts @@ -227,12 +225,12 @@ Info 47 [00:01:40.000] Files (2) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 48 [00:01:41.000] ----------------------------------------------- -Info 49 [00:01:42.000] Search path: /user/username/projects/solution/shared/src -Info 50 [00:01:43.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 51 [00:01:44.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 27 in project /user/username/projects/solution/shared/tsconfig.json -Info 52 [00:01:45.000] Loading configured project /user/username/projects/solution/tsconfig.json -Info 53 [00:01:46.000] Config: /user/username/projects/solution/tsconfig.json : { +Info 46 [00:01:39.000] ----------------------------------------------- +Info 47 [00:01:40.000] Search path: /user/username/projects/solution/shared/src +Info 48 [00:01:41.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 49 [00:01:42.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 27 in project /user/username/projects/solution/shared/tsconfig.json +Info 50 [00:01:43.000] Loading configured project /user/username/projects/solution/tsconfig.json +Info 51 [00:01:44.000] Config: /user/username/projects/solution/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/solution/tsconfig.json" @@ -248,9 +246,8 @@ Info 53 [00:01:46.000] Config: /user/username/projects/solution/tsconfig.json } ] } -Info 54 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 55 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json -Info 56 [00:01:49.000] Config: /user/username/projects/solution/app/tsconfig.json : { +Info 52 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json +Info 53 [00:01:46.000] Config: /user/username/projects/solution/app/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/app/src/app.ts" ], @@ -267,26 +264,25 @@ Info 56 [00:01:49.000] Config: /user/username/projects/solution/app/tsconfig.j } ] } -Info 57 [00:01:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 58 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory -Info 59 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory -Info 60 [00:01:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info 61 [00:01:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info 62 [00:01:55.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [00:01:56.000] Different program with same set of files -Info 64 [00:01:57.000] Creating configuration project /user/username/projects/solution/app/tsconfig.json -Info 65 [00:01:58.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 66 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src/app.ts 500 undefined WatchType: Closed Script info -Info 67 [00:02:00.000] Starting updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json -Info 68 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [00:02:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [00:02:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info 71 [00:02:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info 72 [00:02:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info 73 [00:02:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info 74 [00:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 75 [00:02:08.000] Project '/user/username/projects/solution/app/tsconfig.json' (Configured) -Info 76 [00:02:09.000] Files (3) +Info 54 [00:01:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 55 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory +Info 56 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory +Info 57 [00:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots +Info 58 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots +Info 59 [00:01:52.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:01:53.000] Different program with same set of files +Info 61 [00:01:54.000] Creating configuration project /user/username/projects/solution/app/tsconfig.json +Info 62 [00:01:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src/app.ts 500 undefined WatchType: Closed Script info +Info 63 [00:01:56.000] Starting updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json +Info 64 [00:01:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:01:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations +Info 66 [00:01:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots +Info 67 [00:02:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots +Info 68 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots +Info 69 [00:02:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots +Info 70 [00:02:03.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 71 [00:02:04.000] Project '/user/username/projects/solution/app/tsconfig.json' (Configured) +Info 72 [00:02:05.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts /user/username/projects/solution/app/src/app.ts @@ -299,12 +295,12 @@ Info 76 [00:02:09.000] Files (3) src/app.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 77 [00:02:10.000] ----------------------------------------------- -Info 78 [00:02:11.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 27 in project /user/username/projects/solution/app/tsconfig.json -Info 79 [00:02:12.000] Search path: /user/username/projects/solution/shared/src -Info 80 [00:02:13.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 81 [00:02:14.000] Search path: /user/username/projects/solution/shared/src -Info 82 [00:02:15.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 73 [00:02:06.000] ----------------------------------------------- +Info 74 [00:02:07.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 27 in project /user/username/projects/solution/app/tsconfig.json +Info 75 [00:02:08.000] Search path: /user/username/projects/solution/shared/src +Info 76 [00:02:09.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 77 [00:02:10.000] Search path: /user/username/projects/solution/shared/src +Info 78 [00:02:11.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json After request PolledWatches:: @@ -343,7 +339,7 @@ FsWatchesRecursive:: /user/username/projects/solution/app/src: {} -Info 83 [00:02:16.000] response: +Info 79 [00:02:12.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-object-literal-property.js b/tests/baselines/reference/tsserver/projectReferences/special-handling-of-localness-when-using-object-literal-property.js index 8925bbf32ff77..7cb040a5b84ed 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 @@ -75,9 +75,8 @@ Info 6 [00:00:50.000] Config: /user/username/projects/solution/api/tsconfig.j } Info 7 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory Info 8 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/src 1 undefined Config: /user/username/projects/solution/api/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json -Info 11 [00:00:55.000] Config: /user/username/projects/solution/shared/tsconfig.json : { +Info 9 [00:00:53.000] Starting updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json +Info 10 [00:00:54.000] Config: /user/username/projects/solution/shared/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/shared/src/index.ts" ], @@ -88,20 +87,20 @@ Info 11 [00:00:55.000] Config: /user/username/projects/solution/shared/tsconfi "configFilePath": "/user/username/projects/solution/shared/tsconfig.json" } } -Info 12 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file -Info 13 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src/index.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 20 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 21 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 22 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots -Info 23 [00:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:08.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) -Info 25 [00:01:09.000] Files (3) +Info 11 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/tsconfig.json 2000 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Config file +Info 12 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src 1 undefined Config: /user/username/projects/solution/shared/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/src/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 19 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/api/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 20 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 21 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/api/tsconfig.json WatchType: Type roots +Info 22 [00:01:06.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/api/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:07.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) +Info 24 [00:01:08.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts /user/username/projects/solution/api/src/server.ts @@ -114,24 +113,24 @@ Info 25 [00:01:09.000] Files (3) src/server.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 26 [00:01:10.000] ----------------------------------------------- -Info 27 [00:01:11.000] Search path: /user/username/projects/solution/api -Info 28 [00:01:12.000] For info: /user/username/projects/solution/api/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json -Info 29 [00:01:13.000] Creating configuration project /user/username/projects/solution/tsconfig.json -Info 30 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 31 [00:01:15.000] Search path: /user/username/projects/solution -Info 32 [00:01:16.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. -Info 33 [00:01:17.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) -Info 33 [00:01:18.000] Files (3) +Info 25 [00:01:09.000] ----------------------------------------------- +Info 26 [00:01:10.000] Search path: /user/username/projects/solution/api +Info 27 [00:01:11.000] For info: /user/username/projects/solution/api/tsconfig.json :: Config file name: /user/username/projects/solution/tsconfig.json +Info 28 [00:01:12.000] Creating configuration project /user/username/projects/solution/tsconfig.json +Info 29 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 30 [00:01:14.000] Search path: /user/username/projects/solution +Info 31 [00:01:15.000] For info: /user/username/projects/solution/tsconfig.json :: No config files found. +Info 32 [00:01:16.000] Project '/user/username/projects/solution/api/tsconfig.json' (Configured) +Info 32 [00:01:17.000] Files (3) -Info 33 [00:01:19.000] ----------------------------------------------- -Info 33 [00:01:20.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) -Info 33 [00:01:21.000] Files (0) InitialLoadPending +Info 32 [00:01:18.000] ----------------------------------------------- +Info 32 [00:01:19.000] Project '/user/username/projects/solution/tsconfig.json' (Configured) +Info 32 [00:01:20.000] Files (0) InitialLoadPending -Info 33 [00:01:22.000] ----------------------------------------------- -Info 33 [00:01:23.000] Open files: -Info 33 [00:01:24.000] FileName: /user/username/projects/solution/api/src/server.ts ProjectRootPath: undefined -Info 33 [00:01:25.000] Projects: /user/username/projects/solution/api/tsconfig.json +Info 32 [00:01:21.000] ----------------------------------------------- +Info 32 [00:01:22.000] Open files: +Info 32 [00:01:23.000] FileName: /user/username/projects/solution/api/src/server.ts ProjectRootPath: undefined +Info 32 [00:01:24.000] Projects: /user/username/projects/solution/api/tsconfig.json After request PolledWatches:: @@ -160,11 +159,11 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 33 [00:01:26.000] response: +Info 32 [00:01:25.000] response: { "responseRequired": false } -Info 34 [00:01:27.000] request: +Info 33 [00:01:26.000] request: { "command": "references", "arguments": { @@ -203,19 +202,18 @@ FsWatchesRecursive:: /user/username/projects/solution/shared: {} -Info 35 [00:01:28.000] Finding references to /user/username/projects/solution/api/src/server.ts position 56 in project /user/username/projects/solution/api/tsconfig.json -Info 36 [00:01:29.000] Search path: /user/username/projects/solution/shared/src -Info 37 [00:01:30.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 38 [00:01:31.000] Creating configuration project /user/username/projects/solution/shared/tsconfig.json -Info 39 [00:01:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 40 [00:01:33.000] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json -Info 41 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 42 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 43 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 44 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots -Info 45 [00:01:38.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 46 [00:01:39.000] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) -Info 47 [00:01:40.000] Files (2) +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 +Info 37 [00:01:30.000] Creating configuration project /user/username/projects/solution/shared/tsconfig.json +Info 38 [00:01:31.000] Starting updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json +Info 39 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 40 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 41 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 42 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/shared/tsconfig.json WatchType: Type roots +Info 43 [00:01:36.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/shared/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:01:37.000] Project '/user/username/projects/solution/shared/tsconfig.json' (Configured) +Info 45 [00:01:38.000] Files (2) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts @@ -225,12 +223,12 @@ Info 47 [00:01:40.000] Files (2) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 48 [00:01:41.000] ----------------------------------------------- -Info 49 [00:01:42.000] Search path: /user/username/projects/solution/shared/src -Info 50 [00:01:43.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 51 [00:01:44.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 22 in project /user/username/projects/solution/shared/tsconfig.json -Info 52 [00:01:45.000] Loading configured project /user/username/projects/solution/tsconfig.json -Info 53 [00:01:46.000] Config: /user/username/projects/solution/tsconfig.json : { +Info 46 [00:01:39.000] ----------------------------------------------- +Info 47 [00:01:40.000] Search path: /user/username/projects/solution/shared/src +Info 48 [00:01:41.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 49 [00:01:42.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 22 in project /user/username/projects/solution/shared/tsconfig.json +Info 50 [00:01:43.000] Loading configured project /user/username/projects/solution/tsconfig.json +Info 51 [00:01:44.000] Config: /user/username/projects/solution/tsconfig.json : { "rootNames": [], "options": { "configFilePath": "/user/username/projects/solution/tsconfig.json" @@ -246,9 +244,8 @@ Info 53 [00:01:46.000] Config: /user/username/projects/solution/tsconfig.json } ] } -Info 54 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 55 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json -Info 56 [00:01:49.000] Config: /user/username/projects/solution/app/tsconfig.json : { +Info 52 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json +Info 53 [00:01:46.000] Config: /user/username/projects/solution/app/tsconfig.json : { "rootNames": [ "/user/username/projects/solution/app/src/app.ts" ], @@ -265,26 +262,25 @@ Info 56 [00:01:49.000] Config: /user/username/projects/solution/app/tsconfig.j } ] } -Info 57 [00:01:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file -Info 58 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory -Info 59 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory -Info 60 [00:01:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info 61 [00:01:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots -Info 62 [00:01:55.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [00:01:56.000] Different program with same set of files -Info 64 [00:01:57.000] Creating configuration project /user/username/projects/solution/app/tsconfig.json -Info 65 [00:01:58.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 66 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src/app.ts 500 undefined WatchType: Closed Script info -Info 67 [00:02:00.000] Starting updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json -Info 68 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [00:02:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [00:02:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info 71 [00:02:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info 72 [00:02:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info 73 [00:02:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots -Info 74 [00:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 75 [00:02:08.000] Project '/user/username/projects/solution/app/tsconfig.json' (Configured) -Info 76 [00:02:09.000] Files (3) +Info 54 [00:01:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/tsconfig.json 2000 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Config file +Info 55 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory +Info 56 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src 1 undefined Config: /user/username/projects/solution/app/tsconfig.json WatchType: Wild card directory +Info 57 [00:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots +Info 58 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/tsconfig.json WatchType: Type roots +Info 59 [00:01:52.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:01:53.000] Different program with same set of files +Info 61 [00:01:54.000] Creating configuration project /user/username/projects/solution/app/tsconfig.json +Info 62 [00:01:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/src/app.ts 500 undefined WatchType: Closed Script info +Info 63 [00:01:56.000] Starting updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json +Info 64 [00:01:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:01:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/shared 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Failed Lookup Locations +Info 66 [00:01:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots +Info 67 [00:02:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/app/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots +Info 68 [00:02:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots +Info 69 [00:02:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/app/tsconfig.json WatchType: Type roots +Info 70 [00:02:03.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/app/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 71 [00:02:04.000] Project '/user/username/projects/solution/app/tsconfig.json' (Configured) +Info 72 [00:02:05.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/shared/src/index.ts /user/username/projects/solution/app/src/app.ts @@ -297,12 +293,12 @@ Info 76 [00:02:09.000] Files (3) src/app.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 77 [00:02:10.000] ----------------------------------------------- -Info 78 [00:02:11.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 22 in project /user/username/projects/solution/app/tsconfig.json -Info 79 [00:02:12.000] Search path: /user/username/projects/solution/shared/src -Info 80 [00:02:13.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json -Info 81 [00:02:14.000] Search path: /user/username/projects/solution/shared/src -Info 82 [00:02:15.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 73 [00:02:06.000] ----------------------------------------------- +Info 74 [00:02:07.000] Finding references to /user/username/projects/solution/shared/src/index.ts position 22 in project /user/username/projects/solution/app/tsconfig.json +Info 75 [00:02:08.000] Search path: /user/username/projects/solution/shared/src +Info 76 [00:02:09.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json +Info 77 [00:02:10.000] Search path: /user/username/projects/solution/shared/src +Info 78 [00:02:11.000] For info: /user/username/projects/solution/shared/src/index.ts :: Config file name: /user/username/projects/solution/shared/tsconfig.json After request PolledWatches:: @@ -341,7 +337,7 @@ FsWatchesRecursive:: /user/username/projects/solution/app/src: {} -Info 83 [00:02:16.000] response: +Info 79 [00:02:12.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/when-files-from-two-projects-are-open-and-one-project-references.js b/tests/baselines/reference/tsserver/projectReferences/when-files-from-two-projects-are-open-and-one-project-references.js index 0f7ec68069535..9d64642339bb1 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 @@ -146,9 +146,8 @@ Info 6 [00:01:59.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:02:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:02:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:02:02.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:02:03.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:02:04.000] Config: /user/username/projects/myproject/core/tsconfig.json : { +Info 9 [00:02:02.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:02:03.000] Config: /user/username/projects/myproject/core/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/core/src/file1.ts" ], @@ -157,10 +156,10 @@ Info 11 [00:02:04.000] Config: /user/username/projects/myproject/core/tsconfig "configFilePath": "/user/username/projects/myproject/core/tsconfig.json" } } -Info 12 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:02:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core 1 undefined Config: /user/username/projects/myproject/core/tsconfig.json WatchType: Wild card directory -Info 14 [00:02:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core 1 undefined Config: /user/username/projects/myproject/core/tsconfig.json WatchType: Wild card directory -Info 15 [00:02:08.000] Config: /user/username/projects/myproject/indirect/tsconfig.json : { +Info 11 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:02:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core 1 undefined Config: /user/username/projects/myproject/core/tsconfig.json WatchType: Wild card directory +Info 13 [00:02:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core 1 undefined Config: /user/username/projects/myproject/core/tsconfig.json WatchType: Wild card directory +Info 14 [00:02:07.000] Config: /user/username/projects/myproject/indirect/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/indirect/src/file1.ts" ], @@ -175,10 +174,10 @@ Info 15 [00:02:08.000] Config: /user/username/projects/myproject/indirect/tsco } ] } -Info 16 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 17 [00:02:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect 1 undefined Config: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Wild card directory -Info 18 [00:02:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect 1 undefined Config: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Wild card directory -Info 19 [00:02:12.000] Config: /user/username/projects/myproject/coreRef1/tsconfig.json : { +Info 15 [00:02:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 16 [00:02:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect 1 undefined Config: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Wild card directory +Info 17 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect 1 undefined Config: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Wild card directory +Info 18 [00:02:11.000] Config: /user/username/projects/myproject/coreRef1/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/coreRef1/src/file1.ts" ], @@ -193,10 +192,10 @@ Info 19 [00:02:12.000] Config: /user/username/projects/myproject/coreRef1/tsco } ] } -Info 20 [00:02:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 21 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1 1 undefined Config: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Wild card directory -Info 22 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1 1 undefined Config: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Wild card directory -Info 23 [00:02:16.000] Config: /user/username/projects/myproject/noCoreRef1/tsconfig.json : { +Info 19 [00:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 20 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1 1 undefined Config: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Wild card directory +Info 21 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1 1 undefined Config: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Wild card directory +Info 22 [00:02:15.000] Config: /user/username/projects/myproject/noCoreRef1/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/noCoreRef1/src/file1.ts" ], @@ -205,10 +204,10 @@ Info 23 [00:02:16.000] Config: /user/username/projects/myproject/noCoreRef1/ts "configFilePath": "/user/username/projects/myproject/noCoreRef1/tsconfig.json" } } -Info 24 [00:02:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 25 [00:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef1 1 undefined Config: /user/username/projects/myproject/noCoreRef1/tsconfig.json WatchType: Wild card directory -Info 26 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef1 1 undefined Config: /user/username/projects/myproject/noCoreRef1/tsconfig.json WatchType: Wild card directory -Info 27 [00:02:20.000] Config: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json : { +Info 23 [00:02:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 24 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef1 1 undefined Config: /user/username/projects/myproject/noCoreRef1/tsconfig.json WatchType: Wild card directory +Info 25 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef1 1 undefined Config: /user/username/projects/myproject/noCoreRef1/tsconfig.json WatchType: Wild card directory +Info 26 [00:02:19.000] Config: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/indirectDisabledChildLoad1/src/file1.ts" ], @@ -224,10 +223,10 @@ Info 27 [00:02:20.000] Config: /user/username/projects/myproject/indirectDisab } ] } -Info 28 [00:02:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 29 [00:02:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1 1 undefined Config: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Wild card directory -Info 30 [00:02:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1 1 undefined Config: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Wild card directory -Info 31 [00:02:24.000] Config: /user/username/projects/myproject/coreRef2/tsconfig.json : { +Info 27 [00:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 28 [00:02:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1 1 undefined Config: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Wild card directory +Info 29 [00:02:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1 1 undefined Config: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Wild card directory +Info 30 [00:02:23.000] Config: /user/username/projects/myproject/coreRef2/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/coreRef2/src/file1.ts" ], @@ -242,10 +241,10 @@ Info 31 [00:02:24.000] Config: /user/username/projects/myproject/coreRef2/tsco } ] } -Info 32 [00:02:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef2/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 33 [00:02:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef2 1 undefined Config: /user/username/projects/myproject/coreRef2/tsconfig.json WatchType: Wild card directory -Info 34 [00:02:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef2 1 undefined Config: /user/username/projects/myproject/coreRef2/tsconfig.json WatchType: Wild card directory -Info 35 [00:02:28.000] Config: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json : { +Info 31 [00:02:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef2/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 32 [00:02:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef2 1 undefined Config: /user/username/projects/myproject/coreRef2/tsconfig.json WatchType: Wild card directory +Info 33 [00:02:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef2 1 undefined Config: /user/username/projects/myproject/coreRef2/tsconfig.json WatchType: Wild card directory +Info 34 [00:02:27.000] Config: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/indirectDisabledChildLoad2/src/file1.ts" ], @@ -261,10 +260,10 @@ Info 35 [00:02:28.000] Config: /user/username/projects/myproject/indirectDisab } ] } -Info 36 [00:02:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 37 [00:02:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2 1 undefined Config: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Wild card directory -Info 38 [00:02:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2 1 undefined Config: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Wild card directory -Info 39 [00:02:32.000] Config: /user/username/projects/myproject/coreRef3/tsconfig.json : { +Info 35 [00:02:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 36 [00:02:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2 1 undefined Config: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Wild card directory +Info 37 [00:02:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2 1 undefined Config: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Wild card directory +Info 38 [00:02:31.000] Config: /user/username/projects/myproject/coreRef3/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/coreRef3/src/file1.ts" ], @@ -279,10 +278,10 @@ Info 39 [00:02:32.000] Config: /user/username/projects/myproject/coreRef3/tsco } ] } -Info 40 [00:02:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 41 [00:02:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3 1 undefined Config: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Wild card directory -Info 42 [00:02:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3 1 undefined Config: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Wild card directory -Info 43 [00:02:36.000] Config: /user/username/projects/myproject/refToCoreRef3/tsconfig.json : { +Info 39 [00:02:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 40 [00:02:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3 1 undefined Config: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Wild card directory +Info 41 [00:02:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3 1 undefined Config: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Wild card directory +Info 42 [00:02:35.000] Config: /user/username/projects/myproject/refToCoreRef3/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/refToCoreRef3/src/file1.ts" ], @@ -297,10 +296,10 @@ Info 43 [00:02:36.000] Config: /user/username/projects/myproject/refToCoreRef3 } ] } -Info 44 [00:02:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 45 [00:02:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3 1 undefined Config: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Wild card directory -Info 46 [00:02:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3 1 undefined Config: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Wild card directory -Info 47 [00:02:40.000] Config: /user/username/projects/myproject/indirectNoCoreRef/tsconfig.json : { +Info 43 [00:02:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 44 [00:02:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3 1 undefined Config: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Wild card directory +Info 45 [00:02:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3 1 undefined Config: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Wild card directory +Info 46 [00:02:39.000] Config: /user/username/projects/myproject/indirectNoCoreRef/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/indirectNoCoreRef/src/file1.ts" ], @@ -315,10 +314,10 @@ Info 47 [00:02:40.000] Config: /user/username/projects/myproject/indirectNoCor } ] } -Info 48 [00:02:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectNoCoreRef/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 49 [00:02:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectNoCoreRef 1 undefined Config: /user/username/projects/myproject/indirectNoCoreRef/tsconfig.json WatchType: Wild card directory -Info 50 [00:02:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectNoCoreRef 1 undefined Config: /user/username/projects/myproject/indirectNoCoreRef/tsconfig.json WatchType: Wild card directory -Info 51 [00:02:44.000] Config: /user/username/projects/myproject/noCoreRef2/tsconfig.json : { +Info 47 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectNoCoreRef/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 48 [00:02:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectNoCoreRef 1 undefined Config: /user/username/projects/myproject/indirectNoCoreRef/tsconfig.json WatchType: Wild card directory +Info 49 [00:02:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectNoCoreRef 1 undefined Config: /user/username/projects/myproject/indirectNoCoreRef/tsconfig.json WatchType: Wild card directory +Info 50 [00:02:43.000] Config: /user/username/projects/myproject/noCoreRef2/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/noCoreRef2/src/file1.ts" ], @@ -327,17 +326,17 @@ Info 51 [00:02:44.000] Config: /user/username/projects/myproject/noCoreRef2/ts "configFilePath": "/user/username/projects/myproject/noCoreRef2/tsconfig.json" } } -Info 52 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef2/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 53 [00:02:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef2 1 undefined Config: /user/username/projects/myproject/noCoreRef2/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef2 1 undefined Config: /user/username/projects/myproject/noCoreRef2/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 56 [00:02:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 57 [00:02:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 58 [00:02:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 59 [00:02:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 60 [00:02:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 61 [00:02:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 62 [00:02:55.000] Files (2) +Info 51 [00:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef2/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 52 [00:02:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef2 1 undefined Config: /user/username/projects/myproject/noCoreRef2/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/noCoreRef2 1 undefined Config: /user/username/projects/myproject/noCoreRef2/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 55 [00:02:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 56 [00:02:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 57 [00:02:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 58 [00:02:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 59 [00:02:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:02:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 61 [00:02:54.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/src/file1.ts @@ -347,16 +346,16 @@ Info 62 [00:02:55.000] Files (2) src/file1.ts Matched by default include pattern '**/*' -Info 63 [00:02:56.000] ----------------------------------------------- -Info 64 [00:02:57.000] Search path: /user/username/projects/myproject/main -Info 65 [00:02:58.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 66 [00:02:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:03:00.000] Files (2) +Info 62 [00:02:55.000] ----------------------------------------------- +Info 63 [00:02:56.000] Search path: /user/username/projects/myproject/main +Info 64 [00:02:57.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 65 [00:02:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:59.000] Files (2) -Info 66 [00:03:01.000] ----------------------------------------------- -Info 66 [00:03:02.000] Open files: -Info 66 [00:03:03.000] FileName: /user/username/projects/myproject/main/src/file1.ts ProjectRootPath: undefined -Info 66 [00:03:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:03:00.000] ----------------------------------------------- +Info 65 [00:03:01.000] Open files: +Info 65 [00:03:02.000] FileName: /user/username/projects/myproject/main/src/file1.ts ProjectRootPath: undefined +Info 65 [00:03:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -419,11 +418,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/noCoreRef2: {} -Info 66 [00:03:05.000] response: +Info 65 [00:03:04.000] response: { "responseRequired": false } -Info 67 [00:03:06.000] request: +Info 66 [00:03:05.000] request: { "seq": 0, "type": "request", @@ -494,18 +493,17 @@ FsWatchesRecursive:: /user/username/projects/myproject/noCoreRef2: {} -Info 68 [00:03:07.000] Search path: /user/username/projects/myproject/core/src -Info 69 [00:03:08.000] For info: /user/username/projects/myproject/core/src/file1.ts :: Config file name: /user/username/projects/myproject/core/tsconfig.json -Info 70 [00:03:09.000] Creating configuration project /user/username/projects/myproject/core/tsconfig.json -Info 71 [00:03:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 72 [00:03:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/core/tsconfig.json -Info 73 [00:03:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core/node_modules/@types 1 undefined Project: /user/username/projects/myproject/core/tsconfig.json WatchType: Type roots -Info 74 [00:03:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core/node_modules/@types 1 undefined Project: /user/username/projects/myproject/core/tsconfig.json WatchType: Type roots -Info 75 [00:03:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/core/tsconfig.json WatchType: Type roots -Info 76 [00:03:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/core/tsconfig.json WatchType: Type roots -Info 77 [00:03:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/core/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 78 [00:03:17.000] Project '/user/username/projects/myproject/core/tsconfig.json' (Configured) -Info 79 [00:03:18.000] Files (2) +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 +Info 70 [00:03:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/core/tsconfig.json +Info 71 [00:03:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core/node_modules/@types 1 undefined Project: /user/username/projects/myproject/core/tsconfig.json WatchType: Type roots +Info 72 [00:03:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core/node_modules/@types 1 undefined Project: /user/username/projects/myproject/core/tsconfig.json WatchType: Type roots +Info 73 [00:03:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/core/tsconfig.json WatchType: Type roots +Info 74 [00:03:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/core/tsconfig.json WatchType: Type roots +Info 75 [00:03:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/core/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 76 [00:03:15.000] Project '/user/username/projects/myproject/core/tsconfig.json' (Configured) +Info 77 [00:03:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/core/src/file1.ts @@ -515,22 +513,22 @@ Info 79 [00:03:18.000] Files (2) src/file1.ts Matched by default include pattern '**/*' -Info 80 [00:03:19.000] ----------------------------------------------- -Info 81 [00:03:20.000] Search path: /user/username/projects/myproject/core -Info 82 [00:03:21.000] For info: /user/username/projects/myproject/core/tsconfig.json :: No config files found. -Info 83 [00:03:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 83 [00:03:23.000] Files (2) - -Info 83 [00:03:24.000] ----------------------------------------------- -Info 83 [00:03:25.000] Project '/user/username/projects/myproject/core/tsconfig.json' (Configured) -Info 83 [00:03:26.000] Files (2) - -Info 83 [00:03:27.000] ----------------------------------------------- -Info 83 [00:03:28.000] Open files: -Info 83 [00:03:29.000] FileName: /user/username/projects/myproject/main/src/file1.ts ProjectRootPath: undefined -Info 83 [00:03:30.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 83 [00:03:31.000] FileName: /user/username/projects/myproject/core/src/file1.ts ProjectRootPath: undefined -Info 83 [00:03:32.000] Projects: /user/username/projects/myproject/core/tsconfig.json +Info 78 [00:03:17.000] ----------------------------------------------- +Info 79 [00:03:18.000] Search path: /user/username/projects/myproject/core +Info 80 [00:03:19.000] For info: /user/username/projects/myproject/core/tsconfig.json :: No config files found. +Info 81 [00:03:20.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 81 [00:03:21.000] Files (2) + +Info 81 [00:03:22.000] ----------------------------------------------- +Info 81 [00:03:23.000] Project '/user/username/projects/myproject/core/tsconfig.json' (Configured) +Info 81 [00:03:24.000] Files (2) + +Info 81 [00:03:25.000] ----------------------------------------------- +Info 81 [00:03:26.000] Open files: +Info 81 [00:03:27.000] FileName: /user/username/projects/myproject/main/src/file1.ts ProjectRootPath: undefined +Info 81 [00:03:28.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 81 [00:03:29.000] FileName: /user/username/projects/myproject/core/src/file1.ts ProjectRootPath: undefined +Info 81 [00:03:30.000] Projects: /user/username/projects/myproject/core/tsconfig.json After request PolledWatches:: @@ -595,11 +593,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/noCoreRef2: {} -Info 83 [00:03:33.000] response: +Info 81 [00:03:31.000] response: { "responseRequired": false } -Info 84 [00:03:34.000] request: +Info 82 [00:03:32.000] request: { "command": "references", "arguments": { @@ -674,18 +672,17 @@ FsWatchesRecursive:: /user/username/projects/myproject/noCoreRef2: {} -Info 85 [00:03:35.000] Finding references to /user/username/projects/myproject/core/src/file1.ts position 13 in project /user/username/projects/myproject/core/tsconfig.json -Info 86 [00:03:36.000] Creating configuration project /user/username/projects/myproject/indirect/tsconfig.json -Info 87 [00:03:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 88 [00:03:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect/src/file1.ts 500 undefined WatchType: Closed Script info -Info 89 [00:03:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect/tsconfig.json -Info 90 [00:03:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Type roots -Info 91 [00:03:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Type roots -Info 92 [00:03:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Type roots -Info 93 [00:03:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Type roots -Info 94 [00:03:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 95 [00:03:45.000] Project '/user/username/projects/myproject/indirect/tsconfig.json' (Configured) -Info 96 [00:03:46.000] Files (2) +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 +Info 86 [00:03:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirect/tsconfig.json +Info 87 [00:03:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Type roots +Info 88 [00:03:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirect/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Type roots +Info 89 [00:03:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Type roots +Info 90 [00:03:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirect/tsconfig.json WatchType: Type roots +Info 91 [00:03:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirect/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 92 [00:03:42.000] Project '/user/username/projects/myproject/indirect/tsconfig.json' (Configured) +Info 93 [00:03:43.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/indirect/src/file1.ts @@ -695,18 +692,17 @@ Info 96 [00:03:46.000] Files (2) src/file1.ts Matched by default include pattern '**/*' -Info 97 [00:03:47.000] ----------------------------------------------- -Info 98 [00:03:48.000] Creating configuration project /user/username/projects/myproject/coreRef1/tsconfig.json -Info 99 [00:03:49.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 100 [00:03:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1/src/file1.ts 500 undefined WatchType: Closed Script info -Info 101 [00:03:51.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/coreRef1/tsconfig.json -Info 102 [00:03:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Type roots -Info 103 [00:03:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Type roots -Info 104 [00:03:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Type roots -Info 105 [00:03:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Type roots -Info 106 [00:03:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/coreRef1/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 107 [00:03:57.000] Project '/user/username/projects/myproject/coreRef1/tsconfig.json' (Configured) -Info 108 [00:03:58.000] Files (2) +Info 94 [00:03:44.000] ----------------------------------------------- +Info 95 [00:03:45.000] Creating configuration project /user/username/projects/myproject/coreRef1/tsconfig.json +Info 96 [00:03:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1/src/file1.ts 500 undefined WatchType: Closed Script info +Info 97 [00:03:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/coreRef1/tsconfig.json +Info 98 [00:03:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Type roots +Info 99 [00:03:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Type roots +Info 100 [00:03:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Type roots +Info 101 [00:03:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef1/tsconfig.json WatchType: Type roots +Info 102 [00:03:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/coreRef1/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 103 [00:03:53.000] Project '/user/username/projects/myproject/coreRef1/tsconfig.json' (Configured) +Info 104 [00:03:54.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/coreRef1/src/file1.ts @@ -716,18 +712,17 @@ Info 108 [00:03:58.000] Files (2) src/file1.ts Matched by default include pattern '**/*' -Info 109 [00:03:59.000] ----------------------------------------------- -Info 110 [00:04:00.000] Creating configuration project /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json -Info 111 [00:04:01.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 112 [00:04:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1/src/file1.ts 500 undefined WatchType: Closed Script info -Info 113 [00:04:03.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json -Info 114 [00:04:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Type roots -Info 115 [00:04:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Type roots -Info 116 [00:04:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Type roots -Info 117 [00:04:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Type roots -Info 118 [00:04:08.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 119 [00:04:09.000] Project '/user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json' (Configured) -Info 120 [00:04:10.000] Files (2) +Info 105 [00:03:55.000] ----------------------------------------------- +Info 106 [00:03:56.000] Creating configuration project /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json +Info 107 [00:03:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1/src/file1.ts 500 undefined WatchType: Closed Script info +Info 108 [00:03:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json +Info 109 [00:03:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Type roots +Info 110 [00:04:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad1/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Type roots +Info 111 [00:04:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Type roots +Info 112 [00:04:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json WatchType: Type roots +Info 113 [00:04:03.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 114 [00:04:04.000] Project '/user/username/projects/myproject/indirectDisabledChildLoad1/tsconfig.json' (Configured) +Info 115 [00:04:05.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/indirectDisabledChildLoad1/src/file1.ts @@ -737,18 +732,17 @@ Info 120 [00:04:10.000] Files (2) src/file1.ts Matched by default include pattern '**/*' -Info 121 [00:04:11.000] ----------------------------------------------- -Info 122 [00:04:12.000] Creating configuration project /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json -Info 123 [00:04:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 124 [00:04:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2/src/file1.ts 500 undefined WatchType: Closed Script info -Info 125 [00:04:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json -Info 126 [00:04:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Type roots -Info 127 [00:04:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Type roots -Info 128 [00:04:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Type roots -Info 129 [00:04:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Type roots -Info 130 [00:04:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 131 [00:04:21.000] Project '/user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json' (Configured) -Info 132 [00:04:22.000] Files (2) +Info 116 [00:04:06.000] ----------------------------------------------- +Info 117 [00:04:07.000] Creating configuration project /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json +Info 118 [00:04:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2/src/file1.ts 500 undefined WatchType: Closed Script info +Info 119 [00:04:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json +Info 120 [00:04:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Type roots +Info 121 [00:04:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/indirectDisabledChildLoad2/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Type roots +Info 122 [00:04:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Type roots +Info 123 [00:04:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json WatchType: Type roots +Info 124 [00:04:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 125 [00:04:15.000] Project '/user/username/projects/myproject/indirectDisabledChildLoad2/tsconfig.json' (Configured) +Info 126 [00:04:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/indirectDisabledChildLoad2/src/file1.ts @@ -758,18 +752,17 @@ Info 132 [00:04:22.000] Files (2) src/file1.ts Matched by default include pattern '**/*' -Info 133 [00:04:23.000] ----------------------------------------------- -Info 134 [00:04:24.000] Creating configuration project /user/username/projects/myproject/refToCoreRef3/tsconfig.json -Info 135 [00:04:25.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 136 [00:04:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3/src/file1.ts 500 undefined WatchType: Closed Script info -Info 137 [00:04:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json -Info 138 [00:04:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Type roots -Info 139 [00:04:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Type roots -Info 140 [00:04:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Type roots -Info 141 [00:04:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Type roots -Info 142 [00:04:32.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 143 [00:04:33.000] Project '/user/username/projects/myproject/refToCoreRef3/tsconfig.json' (Configured) -Info 144 [00:04:34.000] Files (2) +Info 127 [00:04:17.000] ----------------------------------------------- +Info 128 [00:04:18.000] Creating configuration project /user/username/projects/myproject/refToCoreRef3/tsconfig.json +Info 129 [00:04:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3/src/file1.ts 500 undefined WatchType: Closed Script info +Info 130 [00:04:20.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json +Info 131 [00:04:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Type roots +Info 132 [00:04:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refToCoreRef3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Type roots +Info 133 [00:04:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Type roots +Info 134 [00:04:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json WatchType: Type roots +Info 135 [00:04:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/refToCoreRef3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 136 [00:04:26.000] Project '/user/username/projects/myproject/refToCoreRef3/tsconfig.json' (Configured) +Info 137 [00:04:27.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/refToCoreRef3/src/file1.ts @@ -779,18 +772,17 @@ Info 144 [00:04:34.000] Files (2) src/file1.ts Matched by default include pattern '**/*' -Info 145 [00:04:35.000] ----------------------------------------------- -Info 146 [00:04:36.000] Creating configuration project /user/username/projects/myproject/coreRef3/tsconfig.json -Info 147 [00:04:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 148 [00:04:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3/src/file1.ts 500 undefined WatchType: Closed Script info -Info 149 [00:04:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/coreRef3/tsconfig.json -Info 150 [00:04:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Type roots -Info 151 [00:04:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Type roots -Info 152 [00:04:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Type roots -Info 153 [00:04:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Type roots -Info 154 [00:04:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/coreRef3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 155 [00:04:45.000] Project '/user/username/projects/myproject/coreRef3/tsconfig.json' (Configured) -Info 156 [00:04:46.000] Files (2) +Info 138 [00:04:28.000] ----------------------------------------------- +Info 139 [00:04:29.000] Creating configuration project /user/username/projects/myproject/coreRef3/tsconfig.json +Info 140 [00:04:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3/src/file1.ts 500 undefined WatchType: Closed Script info +Info 141 [00:04:31.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/coreRef3/tsconfig.json +Info 142 [00:04:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Type roots +Info 143 [00:04:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/coreRef3/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Type roots +Info 144 [00:04:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Type roots +Info 145 [00:04:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/coreRef3/tsconfig.json WatchType: Type roots +Info 146 [00:04:36.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/coreRef3/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 147 [00:04:37.000] Project '/user/username/projects/myproject/coreRef3/tsconfig.json' (Configured) +Info 148 [00:04:38.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/coreRef3/src/file1.ts @@ -800,8 +792,8 @@ Info 156 [00:04:46.000] Files (2) src/file1.ts Matched by default include pattern '**/*' -Info 157 [00:04:47.000] ----------------------------------------------- -Info 158 [00:04:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core/src/file1.d.ts 2000 undefined Project: /user/username/projects/myproject/core/tsconfig.json WatchType: Missing generated file +Info 149 [00:04:39.000] ----------------------------------------------- +Info 150 [00:04:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/core/src/file1.d.ts 2000 undefined Project: /user/username/projects/myproject/core/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -892,7 +884,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/noCoreRef2: {} -Info 159 [00:04:49.000] response: +Info 151 [00:04:41.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferences/when-the-referenced-projects-have-allowJs-and-emitDeclarationOnly.js b/tests/baselines/reference/tsserver/projectReferences/when-the-referenced-projects-have-allowJs-and-emitDeclarationOnly.js index 4741d34fe0e40..a8a94b4a96c41 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 @@ -82,9 +82,8 @@ Info 7 [00:00:50.000] Config: /user/username/projects/myproject/packages/cons } Info 8 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/src 1 undefined Config: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Wild card directory Info 9 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/src 1 undefined Config: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:53.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/consumer/tsconfig.json -Info 12 [00:00:55.000] Config: /user/username/projects/myproject/packages/emit-composite/tsconfig.json : { +Info 10 [00:00:53.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/packages/consumer/tsconfig.json +Info 11 [00:00:54.000] Config: /user/username/projects/myproject/packages/emit-composite/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/packages/emit-composite/src/index.js", "/user/username/projects/myproject/packages/emit-composite/src/testModule.js" @@ -98,32 +97,32 @@ Info 12 [00:00:55.000] Config: /user/username/projects/myproject/packages/emit "configFilePath": "/user/username/projects/myproject/packages/emit-composite/tsconfig.json" } } -Info 13 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Config file -Info 14 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/src 1 undefined Config: /user/username/projects/myproject/packages/emit-composite/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/src 1 undefined Config: /user/username/projects/myproject/packages/emit-composite/tsconfig.json WatchType: Wild card directory -Info 16 [00:00:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/src/index.js 500 undefined WatchType: Closed Script info -Info 17 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/src/testModule.js 500 undefined WatchType: Closed Script info -Info 20 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 21 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/src 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/src 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/node_modules 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/node_modules 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations -Info 28 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations -Info 29 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/package.json 2000 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: File location affecting resolution -Info 30 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Type roots -Info 31 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Type roots -Info 32 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Type roots -Info 33 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Type roots -Info 34 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Type roots -Info 35 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Type roots -Info 36 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/consumer/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 37 [00:01:20.000] Project '/user/username/projects/myproject/packages/consumer/tsconfig.json' (Configured) -Info 38 [00:01:21.000] Files (4) +Info 12 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Config file +Info 13 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/src 1 undefined Config: /user/username/projects/myproject/packages/emit-composite/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/src 1 undefined Config: /user/username/projects/myproject/packages/emit-composite/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/src/index.js 500 undefined WatchType: Closed Script info +Info 16 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/src/testModule.js 500 undefined WatchType: Closed Script info +Info 19 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 20 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/src 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/src 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/node_modules 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/node_modules 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Failed Lookup Locations +Info 28 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/emit-composite/package.json 2000 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: File location affecting resolution +Info 29 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Type roots +Info 30 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/consumer/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Type roots +Info 31 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Type roots +Info 32 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/packages/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Type roots +Info 33 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Type roots +Info 34 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/packages/consumer/tsconfig.json WatchType: Type roots +Info 35 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/packages/consumer/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:19.000] Project '/user/username/projects/myproject/packages/consumer/tsconfig.json' (Configured) +Info 37 [00:01:20.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/packages/emit-composite/src/testModule.js /user/username/projects/myproject/packages/emit-composite/src/index.js @@ -139,20 +138,20 @@ Info 38 [00:01:21.000] Files (4) src/index.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 39 [00:01:22.000] ----------------------------------------------- -Info 40 [00:01:23.000] event: +Info 38 [00:01:21.000] ----------------------------------------------- +Info 39 [00:01:22.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/packages/consumer/tsconfig.json"}} -Info 41 [00:01:24.000] event: +Info 40 [00:01:23.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"f6f890b868ee990140855d3b392e7be25cc511c224e307bfaf73c9f27a024a79","fileStats":{"js":2,"jsSize":203,"jsx":0,"jsxSize":0,"ts":1,"tsSize":143,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 42 [00:01:25.000] event: +Info 41 [00:01:24.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/packages/consumer/src/index.ts","configFile":"/user/username/projects/myproject/packages/consumer/tsconfig.json","diagnostics":[]}} -Info 43 [00:01:26.000] Project '/user/username/projects/myproject/packages/consumer/tsconfig.json' (Configured) -Info 43 [00:01:27.000] Files (4) +Info 42 [00:01:25.000] Project '/user/username/projects/myproject/packages/consumer/tsconfig.json' (Configured) +Info 42 [00:01:26.000] Files (4) -Info 43 [00:01:28.000] ----------------------------------------------- -Info 43 [00:01:29.000] Open files: -Info 43 [00:01:30.000] FileName: /user/username/projects/myproject/packages/consumer/src/index.ts ProjectRootPath: undefined -Info 43 [00:01:31.000] Projects: /user/username/projects/myproject/packages/consumer/tsconfig.json +Info 42 [00:01:27.000] ----------------------------------------------- +Info 42 [00:01:28.000] Open files: +Info 42 [00:01:29.000] FileName: /user/username/projects/myproject/packages/consumer/src/index.ts ProjectRootPath: undefined +Info 42 [00:01:30.000] Projects: /user/username/projects/myproject/packages/consumer/tsconfig.json After request PolledWatches:: @@ -191,11 +190,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 43 [00:01:32.000] response: +Info 42 [00:01:31.000] response: { "responseRequired": false } -Info 44 [00:01:33.000] request: +Info 43 [00:01:32.000] request: { "command": "geterr", "arguments": { @@ -283,7 +282,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 45 [00:01:34.000] response: +Info 44 [00:01:33.000] response: { "responseRequired": false } @@ -325,7 +324,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 46 [00:01:35.000] event: +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 @@ -403,7 +402,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 47 [00:01:36.000] event: +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) @@ -481,9 +480,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 48 [00:01:37.000] event: +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 49 [00:01:38.000] event: +Info 48 [00:01:37.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projectReferences/with-disableSolutionSearching-solution-and-siblings-are-not-loaded.js b/tests/baselines/reference/tsserver/projectReferences/with-disableSolutionSearching-solution-and-siblings-are-not-loaded.js index b99fcf63d35f4..a5bcee5e8ede0 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 @@ -77,17 +77,16 @@ Info 6 [00:00:40.000] Config: /user/username/projects/solution/compiler/tscon "configFilePath": "/user/username/projects/solution/compiler/tsconfig.json" } } -Info 7 [00:00:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 8 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/types.ts 500 undefined WatchType: Closed Script info -Info 9 [00:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/solution/compiler/tsconfig.json -Info 10 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots -Info 12 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots -Info 13 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots -Info 14 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots -Info 15 [00:00:49.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/compiler/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:00:50.000] Project '/user/username/projects/solution/compiler/tsconfig.json' (Configured) -Info 17 [00:00:51.000] Files (3) +Info 7 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/types.ts 500 undefined WatchType: Closed Script info +Info 8 [00:00:42.000] Starting updateGraphWorker: Project: /user/username/projects/solution/compiler/tsconfig.json +Info 9 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots +Info 11 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/compiler/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots +Info 12 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots +Info 13 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/solution/node_modules/@types 1 undefined Project: /user/username/projects/solution/compiler/tsconfig.json WatchType: Type roots +Info 14 [00:00:48.000] Finishing updateGraphWorker: Project: /user/username/projects/solution/compiler/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:49.000] Project '/user/username/projects/solution/compiler/tsconfig.json' (Configured) +Info 16 [00:00:50.000] Files (3) /a/lib/lib.d.ts /user/username/projects/solution/compiler/types.ts /user/username/projects/solution/compiler/program.ts @@ -100,14 +99,14 @@ Info 17 [00:00:51.000] Files (3) program.ts Part of 'files' list in tsconfig.json -Info 18 [00:00:52.000] ----------------------------------------------- -Info 19 [00:00:53.000] Project '/user/username/projects/solution/compiler/tsconfig.json' (Configured) -Info 19 [00:00:54.000] Files (3) +Info 17 [00:00:51.000] ----------------------------------------------- +Info 18 [00:00:52.000] Project '/user/username/projects/solution/compiler/tsconfig.json' (Configured) +Info 18 [00:00:53.000] Files (3) -Info 19 [00:00:55.000] ----------------------------------------------- -Info 19 [00:00:56.000] Open files: -Info 19 [00:00:57.000] FileName: /user/username/projects/solution/compiler/program.ts ProjectRootPath: undefined -Info 19 [00:00:58.000] Projects: /user/username/projects/solution/compiler/tsconfig.json +Info 18 [00:00:54.000] ----------------------------------------------- +Info 18 [00:00:55.000] Open files: +Info 18 [00:00:56.000] FileName: /user/username/projects/solution/compiler/program.ts ProjectRootPath: undefined +Info 18 [00:00:57.000] Projects: /user/username/projects/solution/compiler/tsconfig.json After request PolledWatches:: @@ -126,11 +125,11 @@ FsWatches:: FsWatchesRecursive:: -Info 19 [00:00:59.000] response: +Info 18 [00:00:58.000] response: { "responseRequired": false } -Info 20 [00:01:00.000] request: +Info 19 [00:00:59.000] request: { "command": "references", "arguments": { @@ -159,7 +158,7 @@ FsWatches:: FsWatchesRecursive:: -Info 21 [00:01:01.000] Finding references to /user/username/projects/solution/compiler/program.ts position 110 in project /user/username/projects/solution/compiler/tsconfig.json +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:: @@ -178,7 +177,7 @@ FsWatches:: FsWatchesRecursive:: -Info 22 [00:01:02.000] response: +Info 21 [00:01:01.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js index 9c4fae357ff26..48ec306fa3ac2 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 @@ -217,16 +217,15 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:21.000] Files (2) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:22.000] ----------------------------------------------- -Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:26.000] Files (2) +Info 18 [00:01:21.000] ----------------------------------------------- +Info 19 [00:01:22.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:23.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (2) -Info 22 [00:01:27.000] ----------------------------------------------- -Info 22 [00:01:28.000] Open files: -Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:26.000] ----------------------------------------------- +Info 21 [00:01:27.000] Open files: +Info 21 [00:01:28.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:31.000] response: +Info 21 [00:01:30.000] response: { "responseRequired": false } -Info 23 [00:01:32.000] request: +Info 22 [00:01:31.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:36.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:48.000] Files (2) +Info 28 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 38 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:54.000] Files (2) +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:52.000] Files (2) -Info 41 [00:01:55.000] ----------------------------------------------- -Info 41 [00:01:56.000] Open files: -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:53.000] ----------------------------------------------- +Info 39 [00:01:54.000] Open files: +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:01.000] response: +Info 39 [00:01:59.000] response: { "responseRequired": false } -Info 42 [00:02:02.000] request: +Info 40 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:05.000] response: +Info 43 [00:02:03.000] response: { "response": { "info": { @@ -482,10 +480,10 @@ Info 45 [00:02:05.000] response: }, "responseRequired": true } -Info 46 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 45 [00:02:08.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:02:09.000] Scheduled: *ensureProjectForOpenFiles* +Info 47 [00:02:10.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts] export declare function fn1(): void; @@ -523,38 +521,38 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:13.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 51 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 53 [00:02:16.000] Running: *ensureProjectForOpenFiles* -Info 54 [00:02:17.000] Before ensureProjectForOpenFiles: -Info 55 [00:02:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [00:02:19.000] Files (2) - -Info 55 [00:02:20.000] ----------------------------------------------- -Info 55 [00:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 55 [00:02:22.000] Files (2) - -Info 55 [00:02:23.000] ----------------------------------------------- -Info 55 [00:02:24.000] Open files: -Info 55 [00:02:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 55 [00:02:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 55 [00:02:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 55 [00:02:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 55 [00:02:29.000] After ensureProjectForOpenFiles: -Info 56 [00:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [00:02:31.000] Files (2) - -Info 56 [00:02:32.000] ----------------------------------------------- -Info 56 [00:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [00:02:34.000] Files (2) - -Info 56 [00:02:35.000] ----------------------------------------------- -Info 56 [00:02:36.000] Open files: -Info 56 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 56 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 56 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 51 [00:02:14.000] Running: *ensureProjectForOpenFiles* +Info 52 [00:02:15.000] Before ensureProjectForOpenFiles: +Info 53 [00:02:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 53 [00:02:17.000] Files (2) + +Info 53 [00:02:18.000] ----------------------------------------------- +Info 53 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 53 [00:02:20.000] Files (2) + +Info 53 [00:02:21.000] ----------------------------------------------- +Info 53 [00:02:22.000] Open files: +Info 53 [00:02:23.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 53 [00:02:24.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:25.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 53 [00:02:26.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 53 [00:02:27.000] After ensureProjectForOpenFiles: +Info 54 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 54 [00:02:29.000] Files (2) + +Info 54 [00:02:30.000] ----------------------------------------------- +Info 54 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 54 [00:02:32.000] Files (2) + +Info 54 [00:02:33.000] ----------------------------------------------- +Info 54 [00:02:34.000] Open files: +Info 54 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 54 [00:02:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 54 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 54 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -583,7 +581,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:41.000] request: +Info 54 [00:02:39.000] request: { "command": "rename", "arguments": { @@ -650,7 +648,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:42.000] response: +Info 55 [00:02:40.000] response: { "response": { "info": { @@ -698,7 +696,7 @@ Info 57 [00:02:42.000] response: }, "responseRequired": true } -Info 58 [00:02:43.000] request: +Info 56 [00:02:41.000] request: { "command": "rename", "arguments": { @@ -765,7 +763,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:44.000] response: +Info 57 [00:02:42.000] response: { "response": { "info": { @@ -813,7 +811,7 @@ Info 59 [00:02:44.000] response: }, "responseRequired": true } -Info 60 [00:02:45.000] request: +Info 58 [00:02:43.000] request: { "command": "rename", "arguments": { @@ -880,7 +878,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:46.000] response: +Info 59 [00:02:44.000] response: { "response": { "info": { @@ -928,7 +926,7 @@ Info 61 [00:02:46.000] response: }, "responseRequired": true } -Info 62 [00:02:47.000] request: +Info 60 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -995,7 +993,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:48.000] response: +Info 61 [00:02:46.000] response: { "response": { "info": { @@ -1043,7 +1041,7 @@ Info 63 [00:02:48.000] response: }, "responseRequired": true } -Info 64 [00:02:49.000] request: +Info 62 [00:02:47.000] request: { "command": "rename", "arguments": { @@ -1110,7 +1108,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:50.000] response: +Info 63 [00:02:48.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-changes.js index 90816eaaad72a..486b339f645e7 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 @@ -217,16 +217,15 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:21.000] Files (2) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:22.000] ----------------------------------------------- -Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:26.000] Files (2) +Info 18 [00:01:21.000] ----------------------------------------------- +Info 19 [00:01:22.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:23.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (2) -Info 22 [00:01:27.000] ----------------------------------------------- -Info 22 [00:01:28.000] Open files: -Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:26.000] ----------------------------------------------- +Info 21 [00:01:27.000] Open files: +Info 21 [00:01:28.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:31.000] response: +Info 21 [00:01:30.000] response: { "responseRequired": false } -Info 23 [00:01:32.000] request: +Info 22 [00:01:31.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:36.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:48.000] Files (2) +Info 28 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 38 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:54.000] Files (2) +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:52.000] Files (2) -Info 41 [00:01:55.000] ----------------------------------------------- -Info 41 [00:01:56.000] Open files: -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:53.000] ----------------------------------------------- +Info 39 [00:01:54.000] Open files: +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:01.000] response: +Info 39 [00:01:59.000] response: { "responseRequired": false } -Info 42 [00:02:02.000] request: +Info 40 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:05.000] response: +Info 43 [00:02:03.000] response: { "response": { "info": { @@ -482,11 +480,11 @@ Info 45 [00:02:05.000] response: }, "responseRequired": true } -Info 46 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 50 [00:02:13.000] request: +Info 44 [00:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 45 [00:02:08.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:02:09.000] Scheduled: *ensureProjectForOpenFiles* +Info 47 [00:02:10.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 48 [00:02:11.000] request: { "command": "rename", "arguments": { @@ -534,8 +532,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 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:: @@ -564,7 +562,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [00:02:16.000] response: +Info 51 [00:02:14.000] response: { "response": { "info": { @@ -612,7 +610,7 @@ Info 53 [00:02:16.000] response: }, "responseRequired": true } -Info 54 [00:02:17.000] request: +Info 52 [00:02:15.000] request: { "command": "rename", "arguments": { @@ -679,7 +677,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:18.000] response: +Info 53 [00:02:16.000] response: { "response": { "info": { @@ -727,7 +725,7 @@ Info 55 [00:02:18.000] response: }, "responseRequired": true } -Info 56 [00:02:19.000] request: +Info 54 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -794,7 +792,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:20.000] response: +Info 55 [00:02:18.000] response: { "response": { "info": { @@ -842,7 +840,7 @@ Info 57 [00:02:20.000] response: }, "responseRequired": true } -Info 58 [00:02:21.000] request: +Info 56 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -909,7 +907,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:22.000] response: +Info 57 [00:02:20.000] response: { "response": { "info": { @@ -957,7 +955,7 @@ Info 59 [00:02:22.000] response: }, "responseRequired": true } -Info 60 [00:02:23.000] request: +Info 58 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -1024,7 +1022,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:24.000] response: +Info 59 [00:02:22.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-created.js index ced1eb819bbfe..330017b3415ce 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 @@ -209,16 +209,15 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:22.000] Files (2) +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -228,16 +227,16 @@ Info 18 [00:01:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:23.000] ----------------------------------------------- -Info 20 [00:01:24.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:27.000] Files (2) +Info 18 [00:01:22.000] ----------------------------------------------- +Info 19 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:26.000] Files (2) -Info 22 [00:01:28.000] ----------------------------------------------- -Info 22 [00:01:29.000] Open files: -Info 22 [00:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:27.000] ----------------------------------------------- +Info 21 [00:01:28.000] Open files: +Info 21 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -256,11 +255,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:32.000] response: +Info 21 [00:01:31.000] response: { "responseRequired": false } -Info 23 [00:01:33.000] request: +Info 22 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -287,11 +286,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:34.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -299,17 +298,16 @@ Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:49.000] Files (2) +Info 28 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:47.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -319,20 +317,20 @@ Info 39 [00:01:49.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:50.000] ----------------------------------------------- -Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:52.000] Files (2) +Info 38 [00:01:48.000] ----------------------------------------------- +Info 39 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:50.000] Files (2) -Info 41 [00:01:53.000] ----------------------------------------------- -Info 41 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:55.000] Files (2) +Info 39 [00:01:51.000] ----------------------------------------------- +Info 39 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:53.000] Files (2) -Info 41 [00:01:56.000] ----------------------------------------------- -Info 41 [00:01:57.000] Open files: -Info 41 [00:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:54.000] ----------------------------------------------- +Info 39 [00:01:55.000] Open files: +Info 39 [00:01:56.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:57.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -357,11 +355,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:02.000] response: +Info 39 [00:02:00.000] response: { "responseRequired": false } -Info 42 [00:02:03.000] request: +Info 40 [00:02:01.000] request: { "command": "rename", "arguments": { @@ -396,7 +394,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +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 PolledWatches:: @@ -423,7 +421,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [00:02:05.000] response: +Info 42 [00:02:03.000] response: { "response": { "info": { @@ -471,15 +469,15 @@ Info 44 [00:02:05.000] response: }, "responseRequired": true } -Info 45 [00:02:08.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 46 [00:02:09.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 47 [00:02:10.000] Scheduled: *ensureProjectForOpenFiles* -Info 48 [00:02:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 49 [00:02:12.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 50 [00:02:13.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one -Info 51 [00:02:14.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 52 [00:02:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 53 [00:02:16.000] request: +Info 43 [00:02:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 44 [00:02:07.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 45 [00:02:08.000] Scheduled: *ensureProjectForOpenFiles* +Info 46 [00:02:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 47 [00:02:10.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 48 [00:02:11.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one +Info 49 [00:02:12.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 50 [00:02:13.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 51 [00:02:14.000] request: { "command": "rename", "arguments": { @@ -524,10 +522,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 55 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 56 [00:02:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 57 [00:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 52 [00:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 54 [00:02:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 55 [00:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -556,7 +554,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:21.000] response: +Info 56 [00:02:19.000] response: { "response": { "info": { @@ -604,7 +602,7 @@ Info 58 [00:02:21.000] response: }, "responseRequired": true } -Info 59 [00:02:22.000] request: +Info 57 [00:02:20.000] request: { "command": "rename", "arguments": { @@ -671,7 +669,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:23.000] response: +Info 58 [00:02:21.000] response: { "response": { "info": { @@ -719,7 +717,7 @@ Info 60 [00:02:23.000] response: }, "responseRequired": true } -Info 61 [00:02:24.000] request: +Info 59 [00:02:22.000] request: { "command": "rename", "arguments": { @@ -786,7 +784,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [00:02:25.000] response: +Info 60 [00:02:23.000] response: { "response": { "info": { @@ -834,7 +832,7 @@ Info 62 [00:02:25.000] response: }, "responseRequired": true } -Info 63 [00:02:26.000] request: +Info 61 [00:02:24.000] request: { "command": "rename", "arguments": { @@ -901,7 +899,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:27.000] response: +Info 62 [00:02:25.000] response: { "response": { "info": { @@ -949,7 +947,7 @@ Info 64 [00:02:27.000] response: }, "responseRequired": true } -Info 65 [00:02:28.000] request: +Info 63 [00:02:26.000] request: { "command": "rename", "arguments": { @@ -1016,7 +1014,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:29.000] response: +Info 64 [00:02:27.000] response: { "response": { "info": { @@ -1064,7 +1062,7 @@ Info 66 [00:02:29.000] response: }, "responseRequired": true } -Info 67 [00:02:30.000] request: +Info 65 [00:02:28.000] request: { "seq": 0, "type": "request", @@ -1101,18 +1099,18 @@ FsWatchesRecursive:: /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/dependency/tsconfig.json' (Configured) -Info 69 [00:02:33.000] Files (2) +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) -Info 69 [00:02:34.000] ----------------------------------------------- -Info 69 [00:02:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 69 [00:02:36.000] Files (2) +Info 67 [00:02:32.000] ----------------------------------------------- +Info 67 [00:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 67 [00:02:34.000] Files (2) -Info 69 [00:02:37.000] ----------------------------------------------- -Info 69 [00:02:38.000] Open files: -Info 69 [00:02:39.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 69 [00:02:40.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 67 [00:02:35.000] ----------------------------------------------- +Info 67 [00:02:36.000] Open files: +Info 67 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 67 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1143,11 +1141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:02:41.000] response: +Info 67 [00:02:39.000] response: { "responseRequired": false } -Info 70 [00:02:42.000] request: +Info 68 [00:02:40.000] request: { "seq": 0, "type": "request", @@ -1186,22 +1184,22 @@ FsWatchesRecursive:: /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 -Info 74 [00:02:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [00:02:47.000] Files (2) +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 +Info 72 [00:02:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 72 [00:02:45.000] Files (2) -Info 74 [00:02:48.000] ----------------------------------------------- -Info 74 [00:02:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [00:02:50.000] Files (2) +Info 72 [00:02:46.000] ----------------------------------------------- +Info 72 [00:02:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 72 [00:02:48.000] Files (2) -Info 74 [00:02:51.000] ----------------------------------------------- -Info 74 [00:02:52.000] Open files: -Info 74 [00:02:53.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 74 [00:02:54.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 74 [00:02:55.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [00:02:56.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:02:49.000] ----------------------------------------------- +Info 72 [00:02:50.000] Open files: +Info 72 [00:02:51.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 72 [00:02:52.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:53.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 72 [00:02:54.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1230,11 +1228,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:57.000] response: +Info 72 [00:02:55.000] response: { "responseRequired": false } -Info 75 [00:02:58.000] request: +Info 73 [00:02:56.000] request: { "seq": 0, "type": "request", @@ -1271,18 +1269,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 77 [00:03:00.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 77 [00:03:01.000] Files (2) +Info 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) -Info 77 [00:03:02.000] ----------------------------------------------- -Info 77 [00:03:03.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [00:03:04.000] Files (2) +Info 75 [00:03:00.000] ----------------------------------------------- +Info 75 [00:03:01.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 75 [00:03:02.000] Files (2) -Info 77 [00:03:05.000] ----------------------------------------------- -Info 77 [00:03:06.000] Open files: -Info 77 [00:03:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 77 [00:03:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 75 [00:03:03.000] ----------------------------------------------- +Info 75 [00:03:04.000] Open files: +Info 75 [00:03:05.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 75 [00:03:06.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1313,11 +1311,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:03:09.000] response: +Info 75 [00:03:07.000] response: { "responseRequired": false } -Info 78 [00:03:10.000] request: +Info 76 [00:03:08.000] request: { "seq": 0, "type": "request", @@ -1356,16 +1354,16 @@ FsWatchesRecursive:: /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/dependency/tsconfig.json' (Configured) -Info 80 [00:03:13.000] Files (2) +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) -Info 80 [00:03:14.000] ----------------------------------------------- -Info 80 [00:03:15.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 80 [00:03:16.000] Files (2) +Info 78 [00:03:12.000] ----------------------------------------------- +Info 78 [00:03:13.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 78 [00:03:14.000] Files (2) -Info 80 [00:03:17.000] ----------------------------------------------- -Info 80 [00:03:18.000] Open files: +Info 78 [00:03:15.000] ----------------------------------------------- +Info 78 [00:03:16.000] Open files: After request PolledWatches:: @@ -1398,11 +1396,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:03:19.000] response: +Info 78 [00:03:17.000] response: { "responseRequired": false } -Info 81 [00:03:20.000] request: +Info 79 [00:03:18.000] request: { "seq": 0, "type": "request", @@ -1443,12 +1441,12 @@ FsWatchesRecursive:: /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 -Info 85 [00:03:24.000] `remove Project:: -Info 86 [00:03:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 87 [00:03:26.000] Files (2) +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 +Info 83 [00:03:22.000] `remove Project:: +Info 84 [00:03:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 85 [00:03:24.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1458,25 +1456,25 @@ Info 87 [00:03:26.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 88 [00:03:27.000] ----------------------------------------------- -Info 89 [00:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 90 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 91 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 92 [00:03:31.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 93 [00:03:32.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 94 [00:03:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 95 [00:03:34.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 96 [00:03:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 97 [00:03:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 98 [00:03:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 99 [00:03:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 100 [00:03:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 100 [00:03:40.000] Files (2) - -Info 100 [00:03:41.000] ----------------------------------------------- -Info 100 [00:03:42.000] Open files: -Info 100 [00:03:43.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 100 [00:03:44.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 86 [00:03:25.000] ----------------------------------------------- +Info 87 [00:03:26.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 88 [00:03:27.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 89 [00:03:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 90 [00:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 91 [00:03:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 92 [00:03:31.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 93 [00:03:32.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 94 [00:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 95 [00:03:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 96 [00:03:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 97 [00:03:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 98 [00:03:37.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 98 [00:03:38.000] Files (2) + +Info 98 [00:03:39.000] ----------------------------------------------- +Info 98 [00:03:40.000] Open files: +Info 98 [00:03:41.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 98 [00:03:42.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1495,7 +1493,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:45.000] response: +Info 98 [00:03:43.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-deleted.js index 6ed3893c58692..15165d082dfaf 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 @@ -217,16 +217,15 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:21.000] Files (2) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:22.000] ----------------------------------------------- -Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:26.000] Files (2) +Info 18 [00:01:21.000] ----------------------------------------------- +Info 19 [00:01:22.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:23.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (2) -Info 22 [00:01:27.000] ----------------------------------------------- -Info 22 [00:01:28.000] Open files: -Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:26.000] ----------------------------------------------- +Info 21 [00:01:27.000] Open files: +Info 21 [00:01:28.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:31.000] response: +Info 21 [00:01:30.000] response: { "responseRequired": false } -Info 23 [00:01:32.000] request: +Info 22 [00:01:31.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:36.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:48.000] Files (2) +Info 28 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 38 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:54.000] Files (2) +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:52.000] Files (2) -Info 41 [00:01:55.000] ----------------------------------------------- -Info 41 [00:01:56.000] Open files: -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:53.000] ----------------------------------------------- +Info 39 [00:01:54.000] Open files: +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:01.000] response: +Info 39 [00:01:59.000] response: { "responseRequired": false } -Info 42 [00:02:02.000] request: +Info 40 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:05.000] response: +Info 43 [00:02:03.000] response: { "response": { "info": { @@ -482,12 +480,12 @@ Info 45 [00:02:05.000] response: }, "responseRequired": true } -Info 46 [00:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 47 [00:02:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 48 [00:02:09.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 49 [00:02:10.000] Scheduled: *ensureProjectForOpenFiles* -Info 50 [00:02:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 51 [00:02:12.000] request: +Info 44 [00:02:05.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 45 [00:02:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 46 [00:02:07.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:02:08.000] Scheduled: *ensureProjectForOpenFiles* +Info 48 [00:02:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 49 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -525,9 +523,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 53 [00:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 54 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 50 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 51 [00:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 52 [00:02:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -556,7 +554,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:16.000] response: +Info 53 [00:02:14.000] response: { "response": { "info": { @@ -604,7 +602,7 @@ Info 55 [00:02:16.000] response: }, "responseRequired": true } -Info 56 [00:02:17.000] request: +Info 54 [00:02:15.000] request: { "command": "rename", "arguments": { @@ -671,7 +669,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:18.000] response: +Info 55 [00:02:16.000] response: { "response": { "info": { @@ -719,7 +717,7 @@ Info 57 [00:02:18.000] response: }, "responseRequired": true } -Info 58 [00:02:19.000] request: +Info 56 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -786,7 +784,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:20.000] response: +Info 57 [00:02:18.000] response: { "response": { "info": { @@ -834,7 +832,7 @@ Info 59 [00:02:20.000] response: }, "responseRequired": true } -Info 60 [00:02:21.000] request: +Info 58 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -901,7 +899,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:22.000] response: +Info 59 [00:02:20.000] response: { "response": { "info": { @@ -949,7 +947,7 @@ Info 61 [00:02:22.000] response: }, "responseRequired": true } -Info 62 [00:02:23.000] request: +Info 60 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -1016,7 +1014,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:24.000] response: +Info 61 [00:02:22.000] response: { "response": { "info": { @@ -1064,7 +1062,7 @@ Info 63 [00:02:24.000] response: }, "responseRequired": true } -Info 64 [00:02:25.000] request: +Info 62 [00:02:23.000] request: { "seq": 0, "type": "request", @@ -1101,18 +1099,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:28.000] Files (2) +Info 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) -Info 66 [00:02:29.000] ----------------------------------------------- -Info 66 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:31.000] Files (2) +Info 64 [00:02:27.000] ----------------------------------------------- +Info 64 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:29.000] Files (2) -Info 66 [00:02:32.000] ----------------------------------------------- -Info 66 [00:02:33.000] Open files: -Info 66 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 64 [00:02:30.000] ----------------------------------------------- +Info 64 [00:02:31.000] Open files: +Info 64 [00:02:32.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 64 [00:02:33.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1143,11 +1141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:36.000] response: +Info 64 [00:02:34.000] response: { "responseRequired": false } -Info 67 [00:02:37.000] request: +Info 65 [00:02:35.000] request: { "seq": 0, "type": "request", @@ -1186,23 +1184,23 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [00:02:39.000] Search path: /user/username/projects/myproject/random -Info 70 [00:02:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [00:02:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 72 [00:02:42.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 72 [00:02:43.000] Files (2) +Info 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 +Info 69 [00:02:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 70 [00:02:40.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 70 [00:02:41.000] Files (2) -Info 72 [00:02:44.000] ----------------------------------------------- -Info 72 [00:02:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 72 [00:02:46.000] Files (2) +Info 70 [00:02:42.000] ----------------------------------------------- +Info 70 [00:02:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 70 [00:02:44.000] Files (2) -Info 72 [00:02:47.000] ----------------------------------------------- -Info 72 [00:02:48.000] Open files: -Info 72 [00:02:49.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 72 [00:02:50.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [00:02:51.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 72 [00:02:52.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 70 [00:02:45.000] ----------------------------------------------- +Info 70 [00:02:46.000] Open files: +Info 70 [00:02:47.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 70 [00:02:48.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 70 [00:02:49.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 70 [00:02:50.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1229,11 +1227,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:53.000] response: +Info 70 [00:02:51.000] response: { "responseRequired": false } -Info 73 [00:02:54.000] request: +Info 71 [00:02:52.000] request: { "seq": 0, "type": "request", @@ -1268,18 +1266,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 75 [00:02:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 75 [00:02:57.000] Files (2) +Info 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) -Info 75 [00:02:58.000] ----------------------------------------------- -Info 75 [00:02:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 75 [00:03:00.000] Files (2) +Info 73 [00:02:56.000] ----------------------------------------------- +Info 73 [00:02:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 73 [00:02:58.000] Files (2) -Info 75 [00:03:01.000] ----------------------------------------------- -Info 75 [00:03:02.000] Open files: -Info 75 [00:03:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 75 [00:03:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 73 [00:02:59.000] ----------------------------------------------- +Info 73 [00:03:00.000] Open files: +Info 73 [00:03:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 73 [00:03:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1308,11 +1306,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 75 [00:03:05.000] response: +Info 73 [00:03:03.000] response: { "responseRequired": false } -Info 76 [00:03:06.000] request: +Info 74 [00:03:04.000] request: { "seq": 0, "type": "request", @@ -1349,16 +1347,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:03:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 78 [00:03:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 78 [00:03:09.000] Files (2) +Info 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) -Info 78 [00:03:10.000] ----------------------------------------------- -Info 78 [00:03:11.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 78 [00:03:12.000] Files (2) +Info 76 [00:03:08.000] ----------------------------------------------- +Info 76 [00:03:09.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 76 [00:03:10.000] Files (2) -Info 78 [00:03:13.000] ----------------------------------------------- -Info 78 [00:03:14.000] Open files: +Info 76 [00:03:11.000] ----------------------------------------------- +Info 76 [00:03:12.000] Open files: After request PolledWatches:: @@ -1389,11 +1387,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [00:03:15.000] response: +Info 76 [00:03:13.000] response: { "responseRequired": false } -Info 79 [00:03:16.000] request: +Info 77 [00:03:14.000] request: { "seq": 0, "type": "request", @@ -1432,12 +1430,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 81 [00:03:18.000] Search path: /user/username/projects/myproject/random -Info 82 [00:03:19.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 83 [00:03:20.000] `remove Project:: -Info 84 [00:03:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 85 [00:03:22.000] Files (2) +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 +Info 81 [00:03:18.000] `remove Project:: +Info 82 [00:03:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 83 [00:03:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1447,23 +1445,23 @@ Info 85 [00:03:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 86 [00:03:23.000] ----------------------------------------------- -Info 87 [00:03:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 88 [00:03:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 89 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 90 [00:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 91 [00:03:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 92 [00:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 93 [00:03:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 94 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 95 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 96 [00:03:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [00:03:34.000] Files (2) - -Info 96 [00:03:35.000] ----------------------------------------------- -Info 96 [00:03:36.000] Open files: -Info 96 [00:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [00:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 84 [00:03:21.000] ----------------------------------------------- +Info 85 [00:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 86 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 87 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 88 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 89 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 90 [00:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 91 [00:03:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 92 [00:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 93 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 94 [00:03:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 94 [00:03:32.000] Files (2) + +Info 94 [00:03:33.000] ----------------------------------------------- +Info 94 [00:03:34.000] Open files: +Info 94 [00:03:35.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 94 [00:03:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1482,7 +1480,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:39.000] response: +Info 94 [00:03:37.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dts-not-present.js index e0ebde7a96242..18be3a15f3090 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 @@ -209,16 +209,15 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:22.000] Files (2) +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -228,16 +227,16 @@ Info 18 [00:01:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:23.000] ----------------------------------------------- -Info 20 [00:01:24.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:27.000] Files (2) +Info 18 [00:01:22.000] ----------------------------------------------- +Info 19 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:26.000] Files (2) -Info 22 [00:01:28.000] ----------------------------------------------- -Info 22 [00:01:29.000] Open files: -Info 22 [00:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:27.000] ----------------------------------------------- +Info 21 [00:01:28.000] Open files: +Info 21 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -256,11 +255,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:32.000] response: +Info 21 [00:01:31.000] response: { "responseRequired": false } -Info 23 [00:01:33.000] request: +Info 22 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -287,11 +286,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:34.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -299,17 +298,16 @@ Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:49.000] Files (2) +Info 28 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:47.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -319,20 +317,20 @@ Info 39 [00:01:49.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:50.000] ----------------------------------------------- -Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:52.000] Files (2) +Info 38 [00:01:48.000] ----------------------------------------------- +Info 39 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:50.000] Files (2) -Info 41 [00:01:53.000] ----------------------------------------------- -Info 41 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:55.000] Files (2) +Info 39 [00:01:51.000] ----------------------------------------------- +Info 39 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:53.000] Files (2) -Info 41 [00:01:56.000] ----------------------------------------------- -Info 41 [00:01:57.000] Open files: -Info 41 [00:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:54.000] ----------------------------------------------- +Info 39 [00:01:55.000] Open files: +Info 39 [00:01:56.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:57.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -357,11 +355,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:02.000] response: +Info 39 [00:02:00.000] response: { "responseRequired": false } -Info 42 [00:02:03.000] request: +Info 40 [00:02:01.000] request: { "command": "rename", "arguments": { @@ -396,7 +394,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +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 PolledWatches:: @@ -423,7 +421,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [00:02:05.000] response: +Info 42 [00:02:03.000] response: { "response": { "info": { @@ -471,7 +469,7 @@ Info 44 [00:02:05.000] response: }, "responseRequired": true } -Info 45 [00:02:06.000] request: +Info 43 [00:02:04.000] request: { "command": "rename", "arguments": { @@ -534,7 +532,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [00:02:07.000] response: +Info 44 [00:02:05.000] response: { "response": { "info": { @@ -582,7 +580,7 @@ Info 46 [00:02:07.000] response: }, "responseRequired": true } -Info 47 [00:02:08.000] request: +Info 45 [00:02:06.000] request: { "command": "rename", "arguments": { @@ -645,7 +643,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:09.000] response: +Info 46 [00:02:07.000] response: { "response": { "info": { @@ -693,7 +691,7 @@ Info 48 [00:02:09.000] response: }, "responseRequired": true } -Info 49 [00:02:10.000] request: +Info 47 [00:02:08.000] request: { "command": "rename", "arguments": { @@ -756,7 +754,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:11.000] response: +Info 48 [00:02:09.000] response: { "response": { "info": { @@ -804,7 +802,7 @@ Info 50 [00:02:11.000] response: }, "responseRequired": true } -Info 51 [00:02:12.000] request: +Info 49 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -867,7 +865,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:13.000] response: +Info 50 [00:02:11.000] response: { "response": { "info": { @@ -915,7 +913,7 @@ Info 52 [00:02:13.000] response: }, "responseRequired": true } -Info 53 [00:02:14.000] request: +Info 51 [00:02:12.000] request: { "seq": 0, "type": "request", @@ -950,18 +948,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 55 [00:02:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [00:02:17.000] Files (2) +Info 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) -Info 55 [00:02:18.000] ----------------------------------------------- -Info 55 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 55 [00:02:20.000] Files (2) +Info 53 [00:02:16.000] ----------------------------------------------- +Info 53 [00:02:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 53 [00:02:18.000] Files (2) -Info 55 [00:02:21.000] ----------------------------------------------- -Info 55 [00:02:22.000] Open files: -Info 55 [00:02:23.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 55 [00:02:24.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:19.000] ----------------------------------------------- +Info 53 [00:02:20.000] Open files: +Info 53 [00:02:21.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 53 [00:02:22.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -990,11 +988,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:25.000] response: +Info 53 [00:02:23.000] response: { "responseRequired": false } -Info 56 [00:02:26.000] request: +Info 54 [00:02:24.000] request: { "seq": 0, "type": "request", @@ -1031,22 +1029,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 58 [00:02:28.000] Search path: /user/username/projects/myproject/random -Info 59 [00:02:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 60 [00:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 60 [00:02:31.000] Files (2) +Info 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 +Info 58 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 58 [00:02:29.000] Files (2) -Info 60 [00:02:32.000] ----------------------------------------------- -Info 60 [00:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 60 [00:02:34.000] Files (2) +Info 58 [00:02:30.000] ----------------------------------------------- +Info 58 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 58 [00:02:32.000] Files (2) -Info 60 [00:02:35.000] ----------------------------------------------- -Info 60 [00:02:36.000] Open files: -Info 60 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 60 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 60 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 60 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 58 [00:02:33.000] ----------------------------------------------- +Info 58 [00:02:34.000] Open files: +Info 58 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 58 [00:02:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 58 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 58 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1073,11 +1071,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:41.000] response: +Info 58 [00:02:39.000] response: { "responseRequired": false } -Info 61 [00:02:42.000] request: +Info 59 [00:02:40.000] request: { "seq": 0, "type": "request", @@ -1112,18 +1110,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 63 [00:02:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 63 [00:02:45.000] Files (2) +Info 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) -Info 63 [00:02:46.000] ----------------------------------------------- -Info 63 [00:02:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:48.000] Files (2) +Info 61 [00:02:44.000] ----------------------------------------------- +Info 61 [00:02:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:46.000] Files (2) -Info 63 [00:02:49.000] ----------------------------------------------- -Info 63 [00:02:50.000] Open files: -Info 63 [00:02:51.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 63 [00:02:52.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:47.000] ----------------------------------------------- +Info 61 [00:02:48.000] Open files: +Info 61 [00:02:49.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 61 [00:02:50.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1152,11 +1150,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:53.000] response: +Info 61 [00:02:51.000] response: { "responseRequired": false } -Info 64 [00:02:54.000] request: +Info 62 [00:02:52.000] request: { "seq": 0, "type": "request", @@ -1193,16 +1191,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [00:02:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:57.000] Files (2) +Info 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) -Info 66 [00:02:58.000] ----------------------------------------------- -Info 66 [00:02:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:03:00.000] Files (2) +Info 64 [00:02:56.000] ----------------------------------------------- +Info 64 [00:02:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:58.000] Files (2) -Info 66 [00:03:01.000] ----------------------------------------------- -Info 66 [00:03:02.000] Open files: +Info 64 [00:02:59.000] ----------------------------------------------- +Info 64 [00:03:00.000] Open files: After request PolledWatches:: @@ -1233,11 +1231,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:03:03.000] response: +Info 64 [00:03:01.000] response: { "responseRequired": false } -Info 67 [00:03:04.000] request: +Info 65 [00:03:02.000] request: { "seq": 0, "type": "request", @@ -1276,12 +1274,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [00:03:06.000] Search path: /user/username/projects/myproject/random -Info 70 [00:03:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [00:03:08.000] `remove Project:: -Info 72 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 73 [00:03:10.000] Files (2) +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 +Info 69 [00:03:06.000] `remove Project:: +Info 70 [00:03:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 71 [00:03:08.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1291,23 +1289,23 @@ Info 73 [00:03:10.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 74 [00:03:11.000] ----------------------------------------------- -Info 75 [00:03:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 76 [00:03:13.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 77 [00:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 78 [00:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 79 [00:03:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 80 [00:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 81 [00:03:18.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 82 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 83 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 84 [00:03:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 84 [00:03:22.000] Files (2) - -Info 84 [00:03:23.000] ----------------------------------------------- -Info 84 [00:03:24.000] Open files: -Info 84 [00:03:25.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 84 [00:03:26.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:03:09.000] ----------------------------------------------- +Info 73 [00:03:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 74 [00:03:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 75 [00:03:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 76 [00:03:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 77 [00:03:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 78 [00:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 79 [00:03:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 80 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 81 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 82 [00:03:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 82 [00:03:20.000] Files (2) + +Info 82 [00:03:21.000] ----------------------------------------------- +Info 82 [00:03:22.000] Open files: +Info 82 [00:03:23.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 82 [00:03:24.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1326,7 +1324,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:03:27.000] response: +Info 82 [00:03:25.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js index 07c9d152d8704..153b78f03e55e 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 @@ -217,16 +217,15 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:21.000] Files (2) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:22.000] ----------------------------------------------- -Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:26.000] Files (2) +Info 18 [00:01:21.000] ----------------------------------------------- +Info 19 [00:01:22.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:23.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (2) -Info 22 [00:01:27.000] ----------------------------------------------- -Info 22 [00:01:28.000] Open files: -Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:26.000] ----------------------------------------------- +Info 21 [00:01:27.000] Open files: +Info 21 [00:01:28.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:31.000] response: +Info 21 [00:01:30.000] response: { "responseRequired": false } -Info 23 [00:01:32.000] request: +Info 22 [00:01:31.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:36.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:48.000] Files (2) +Info 28 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 38 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:54.000] Files (2) +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:52.000] Files (2) -Info 41 [00:01:55.000] ----------------------------------------------- -Info 41 [00:01:56.000] Open files: -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:53.000] ----------------------------------------------- +Info 39 [00:01:54.000] Open files: +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:01.000] response: +Info 39 [00:01:59.000] response: { "responseRequired": false } -Info 42 [00:02:02.000] request: +Info 40 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:05.000] response: +Info 43 [00:02:03.000] response: { "response": { "info": { @@ -482,10 +480,10 @@ Info 45 [00:02:05.000] response: }, "responseRequired": true } -Info 46 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 44 [00:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 45 [00:02:08.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:02:09.000] Scheduled: *ensureProjectForOpenFiles* +Info 47 [00:02:10.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts.map] {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} @@ -517,38 +515,38 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:13.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 51 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 53 [00:02:16.000] Running: *ensureProjectForOpenFiles* -Info 54 [00:02:17.000] Before ensureProjectForOpenFiles: -Info 55 [00:02:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [00:02:19.000] Files (2) - -Info 55 [00:02:20.000] ----------------------------------------------- -Info 55 [00:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 55 [00:02:22.000] Files (2) - -Info 55 [00:02:23.000] ----------------------------------------------- -Info 55 [00:02:24.000] Open files: -Info 55 [00:02:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 55 [00:02:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 55 [00:02:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 55 [00:02:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 55 [00:02:29.000] After ensureProjectForOpenFiles: -Info 56 [00:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [00:02:31.000] Files (2) - -Info 56 [00:02:32.000] ----------------------------------------------- -Info 56 [00:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [00:02:34.000] Files (2) - -Info 56 [00:02:35.000] ----------------------------------------------- -Info 56 [00:02:36.000] Open files: -Info 56 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 56 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 56 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 51 [00:02:14.000] Running: *ensureProjectForOpenFiles* +Info 52 [00:02:15.000] Before ensureProjectForOpenFiles: +Info 53 [00:02:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 53 [00:02:17.000] Files (2) + +Info 53 [00:02:18.000] ----------------------------------------------- +Info 53 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 53 [00:02:20.000] Files (2) + +Info 53 [00:02:21.000] ----------------------------------------------- +Info 53 [00:02:22.000] Open files: +Info 53 [00:02:23.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 53 [00:02:24.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:25.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 53 [00:02:26.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 53 [00:02:27.000] After ensureProjectForOpenFiles: +Info 54 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 54 [00:02:29.000] Files (2) + +Info 54 [00:02:30.000] ----------------------------------------------- +Info 54 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 54 [00:02:32.000] Files (2) + +Info 54 [00:02:33.000] ----------------------------------------------- +Info 54 [00:02:34.000] Open files: +Info 54 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 54 [00:02:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 54 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 54 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -577,7 +575,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:41.000] request: +Info 54 [00:02:39.000] request: { "command": "rename", "arguments": { @@ -644,7 +642,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:42.000] response: +Info 55 [00:02:40.000] response: { "response": { "info": { @@ -692,7 +690,7 @@ Info 57 [00:02:42.000] response: }, "responseRequired": true } -Info 58 [00:02:43.000] request: +Info 56 [00:02:41.000] request: { "command": "rename", "arguments": { @@ -759,7 +757,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:44.000] response: +Info 57 [00:02:42.000] response: { "response": { "info": { @@ -807,7 +805,7 @@ Info 59 [00:02:44.000] response: }, "responseRequired": true } -Info 60 [00:02:45.000] request: +Info 58 [00:02:43.000] request: { "command": "rename", "arguments": { @@ -874,7 +872,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:46.000] response: +Info 59 [00:02:44.000] response: { "response": { "info": { @@ -922,7 +920,7 @@ Info 61 [00:02:46.000] response: }, "responseRequired": true } -Info 62 [00:02:47.000] request: +Info 60 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -989,7 +987,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:48.000] response: +Info 61 [00:02:46.000] response: { "response": { "info": { @@ -1037,7 +1035,7 @@ Info 63 [00:02:48.000] response: }, "responseRequired": true } -Info 64 [00:02:49.000] request: +Info 62 [00:02:47.000] request: { "command": "rename", "arguments": { @@ -1104,7 +1102,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:50.000] response: +Info 63 [00:02:48.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-changes.js index b0ee3d5bf0f76..c5e3eadbc84b4 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 @@ -217,16 +217,15 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:21.000] Files (2) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:22.000] ----------------------------------------------- -Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:26.000] Files (2) +Info 18 [00:01:21.000] ----------------------------------------------- +Info 19 [00:01:22.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:23.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (2) -Info 22 [00:01:27.000] ----------------------------------------------- -Info 22 [00:01:28.000] Open files: -Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:26.000] ----------------------------------------------- +Info 21 [00:01:27.000] Open files: +Info 21 [00:01:28.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:31.000] response: +Info 21 [00:01:30.000] response: { "responseRequired": false } -Info 23 [00:01:32.000] request: +Info 22 [00:01:31.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:36.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:48.000] Files (2) +Info 28 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 38 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:54.000] Files (2) +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:52.000] Files (2) -Info 41 [00:01:55.000] ----------------------------------------------- -Info 41 [00:01:56.000] Open files: -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:53.000] ----------------------------------------------- +Info 39 [00:01:54.000] Open files: +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:01.000] response: +Info 39 [00:01:59.000] response: { "responseRequired": false } -Info 42 [00:02:02.000] request: +Info 40 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:05.000] response: +Info 43 [00:02:03.000] response: { "response": { "info": { @@ -482,11 +480,11 @@ Info 45 [00:02:05.000] response: }, "responseRequired": true } -Info 46 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 50 [00:02:13.000] request: +Info 44 [00:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 45 [00:02:08.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:02:09.000] Scheduled: *ensureProjectForOpenFiles* +Info 47 [00:02:10.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 48 [00:02:11.000] request: { "command": "rename", "arguments": { @@ -528,8 +526,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 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:: @@ -558,7 +556,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [00:02:16.000] response: +Info 51 [00:02:14.000] response: { "response": { "info": { @@ -606,7 +604,7 @@ Info 53 [00:02:16.000] response: }, "responseRequired": true } -Info 54 [00:02:17.000] request: +Info 52 [00:02:15.000] request: { "command": "rename", "arguments": { @@ -673,7 +671,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:18.000] response: +Info 53 [00:02:16.000] response: { "response": { "info": { @@ -721,7 +719,7 @@ Info 55 [00:02:18.000] response: }, "responseRequired": true } -Info 56 [00:02:19.000] request: +Info 54 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -788,7 +786,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:20.000] response: +Info 55 [00:02:18.000] response: { "response": { "info": { @@ -836,7 +834,7 @@ Info 57 [00:02:20.000] response: }, "responseRequired": true } -Info 58 [00:02:21.000] request: +Info 56 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -903,7 +901,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:22.000] response: +Info 57 [00:02:20.000] response: { "response": { "info": { @@ -951,7 +949,7 @@ Info 59 [00:02:22.000] response: }, "responseRequired": true } -Info 60 [00:02:23.000] request: +Info 58 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -1018,7 +1016,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:24.000] response: +Info 59 [00:02:22.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-created.js index 897a61360997a..6405273df6c2c 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 @@ -214,16 +214,15 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:22.000] Files (2) +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -233,16 +232,16 @@ Info 18 [00:01:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:23.000] ----------------------------------------------- -Info 20 [00:01:24.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:27.000] Files (2) +Info 18 [00:01:22.000] ----------------------------------------------- +Info 19 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:26.000] Files (2) -Info 22 [00:01:28.000] ----------------------------------------------- -Info 22 [00:01:29.000] Open files: -Info 22 [00:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:27.000] ----------------------------------------------- +Info 21 [00:01:28.000] Open files: +Info 21 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -261,11 +260,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:32.000] response: +Info 21 [00:01:31.000] response: { "responseRequired": false } -Info 23 [00:01:33.000] request: +Info 22 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -292,11 +291,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:34.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -304,17 +303,16 @@ Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:49.000] Files (2) +Info 28 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:47.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -324,20 +322,20 @@ Info 39 [00:01:49.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:50.000] ----------------------------------------------- -Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:52.000] Files (2) +Info 38 [00:01:48.000] ----------------------------------------------- +Info 39 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:50.000] Files (2) -Info 41 [00:01:53.000] ----------------------------------------------- -Info 41 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:55.000] Files (2) +Info 39 [00:01:51.000] ----------------------------------------------- +Info 39 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:53.000] Files (2) -Info 41 [00:01:56.000] ----------------------------------------------- -Info 41 [00:01:57.000] Open files: -Info 41 [00:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:54.000] ----------------------------------------------- +Info 39 [00:01:55.000] Open files: +Info 39 [00:01:56.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:57.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -362,11 +360,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:02.000] response: +Info 39 [00:02:00.000] response: { "responseRequired": false } -Info 42 [00:02:03.000] request: +Info 40 [00:02:01.000] request: { "command": "rename", "arguments": { @@ -401,8 +399,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +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 PolledWatches:: @@ -431,7 +429,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:06.000] response: +Info 43 [00:02:04.000] response: { "response": { "info": { @@ -479,12 +477,12 @@ Info 45 [00:02:06.000] response: }, "responseRequired": true } -Info 46 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [00:02:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 50 [00:02:13.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 51 [00:02:14.000] request: +Info 44 [00:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 45 [00:02:08.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:02:09.000] Scheduled: *ensureProjectForOpenFiles* +Info 47 [00:02:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 48 [00:02:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 49 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -524,9 +522,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 53 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 54 [00:02:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 50 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 51 [00:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 52 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -555,7 +553,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:18.000] response: +Info 53 [00:02:16.000] response: { "response": { "info": { @@ -603,7 +601,7 @@ Info 55 [00:02:18.000] response: }, "responseRequired": true } -Info 56 [00:02:19.000] request: +Info 54 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -670,7 +668,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:20.000] response: +Info 55 [00:02:18.000] response: { "response": { "info": { @@ -718,7 +716,7 @@ Info 57 [00:02:20.000] response: }, "responseRequired": true } -Info 58 [00:02:21.000] request: +Info 56 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -785,7 +783,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:22.000] response: +Info 57 [00:02:20.000] response: { "response": { "info": { @@ -833,7 +831,7 @@ Info 59 [00:02:22.000] response: }, "responseRequired": true } -Info 60 [00:02:23.000] request: +Info 58 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -900,7 +898,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:24.000] response: +Info 59 [00:02:22.000] response: { "response": { "info": { @@ -948,7 +946,7 @@ Info 61 [00:02:24.000] response: }, "responseRequired": true } -Info 62 [00:02:25.000] request: +Info 60 [00:02:23.000] request: { "command": "rename", "arguments": { @@ -1015,7 +1013,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:26.000] response: +Info 61 [00:02:24.000] response: { "response": { "info": { @@ -1063,7 +1061,7 @@ Info 63 [00:02:26.000] response: }, "responseRequired": true } -Info 64 [00:02:27.000] request: +Info 62 [00:02:25.000] request: { "seq": 0, "type": "request", @@ -1100,18 +1098,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [00:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:30.000] Files (2) +Info 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) -Info 66 [00:02:31.000] ----------------------------------------------- -Info 66 [00:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:33.000] Files (2) +Info 64 [00:02:29.000] ----------------------------------------------- +Info 64 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:31.000] Files (2) -Info 66 [00:02:34.000] ----------------------------------------------- -Info 66 [00:02:35.000] Open files: -Info 66 [00:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 64 [00:02:32.000] ----------------------------------------------- +Info 64 [00:02:33.000] Open files: +Info 64 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 64 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1142,11 +1140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:38.000] response: +Info 64 [00:02:36.000] response: { "responseRequired": false } -Info 67 [00:02:39.000] request: +Info 65 [00:02:37.000] request: { "seq": 0, "type": "request", @@ -1185,22 +1183,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [00:02:41.000] Search path: /user/username/projects/myproject/random -Info 70 [00:02:42.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [00:02:43.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 71 [00:02:44.000] Files (2) +Info 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 +Info 69 [00:02:41.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 69 [00:02:42.000] Files (2) -Info 71 [00:02:45.000] ----------------------------------------------- -Info 71 [00:02:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [00:02:47.000] Files (2) +Info 69 [00:02:43.000] ----------------------------------------------- +Info 69 [00:02:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 69 [00:02:45.000] Files (2) -Info 71 [00:02:48.000] ----------------------------------------------- -Info 71 [00:02:49.000] Open files: -Info 71 [00:02:50.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 71 [00:02:51.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 71 [00:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 71 [00:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 69 [00:02:46.000] ----------------------------------------------- +Info 69 [00:02:47.000] Open files: +Info 69 [00:02:48.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 69 [00:02:49.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 69 [00:02:50.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 69 [00:02:51.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1229,11 +1227,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [00:02:54.000] response: +Info 69 [00:02:52.000] response: { "responseRequired": false } -Info 72 [00:02:55.000] request: +Info 70 [00:02:53.000] request: { "seq": 0, "type": "request", @@ -1270,18 +1268,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [00:02:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 74 [00:02:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [00:02:58.000] Files (2) +Info 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) -Info 74 [00:02:59.000] ----------------------------------------------- -Info 74 [00:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [00:03:01.000] Files (2) +Info 72 [00:02:57.000] ----------------------------------------------- +Info 72 [00:02:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 72 [00:02:59.000] Files (2) -Info 74 [00:03:02.000] ----------------------------------------------- -Info 74 [00:03:03.000] Open files: -Info 74 [00:03:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [00:03:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:03:00.000] ----------------------------------------------- +Info 72 [00:03:01.000] Open files: +Info 72 [00:03:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 72 [00:03:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1312,11 +1310,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:03:06.000] response: +Info 72 [00:03:04.000] response: { "responseRequired": false } -Info 75 [00:03:07.000] request: +Info 73 [00:03:05.000] request: { "seq": 0, "type": "request", @@ -1355,16 +1353,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:03:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 77 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 77 [00:03:10.000] Files (2) +Info 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) -Info 77 [00:03:11.000] ----------------------------------------------- -Info 77 [00:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [00:03:13.000] Files (2) +Info 75 [00:03:09.000] ----------------------------------------------- +Info 75 [00:03:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 75 [00:03:11.000] Files (2) -Info 77 [00:03:14.000] ----------------------------------------------- -Info 77 [00:03:15.000] Open files: +Info 75 [00:03:12.000] ----------------------------------------------- +Info 75 [00:03:13.000] Open files: After request PolledWatches:: @@ -1397,11 +1395,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:03:16.000] response: +Info 75 [00:03:14.000] response: { "responseRequired": false } -Info 78 [00:03:17.000] request: +Info 76 [00:03:15.000] request: { "seq": 0, "type": "request", @@ -1442,12 +1440,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 80 [00:03:19.000] Search path: /user/username/projects/myproject/random -Info 81 [00:03:20.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 82 [00:03:21.000] `remove Project:: -Info 83 [00:03:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 84 [00:03:23.000] Files (2) +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 +Info 80 [00:03:19.000] `remove Project:: +Info 81 [00:03:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 82 [00:03:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1457,24 +1455,24 @@ Info 84 [00:03:23.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 85 [00:03:24.000] ----------------------------------------------- -Info 86 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 87 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 88 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 89 [00:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 90 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 91 [00:03:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 92 [00:03:31.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 93 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 94 [00:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 95 [00:03:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 96 [00:03:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [00:03:36.000] Files (2) - -Info 96 [00:03:37.000] ----------------------------------------------- -Info 96 [00:03:38.000] Open files: -Info 96 [00:03:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [00:03:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 83 [00:03:22.000] ----------------------------------------------- +Info 84 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 85 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 86 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 87 [00:03:26.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 88 [00:03:27.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 89 [00:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 90 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 91 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 92 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 93 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 94 [00:03:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 94 [00:03:34.000] Files (2) + +Info 94 [00:03:35.000] ----------------------------------------------- +Info 94 [00:03:36.000] Open files: +Info 94 [00:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 94 [00:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1493,7 +1491,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:41.000] response: +Info 94 [00:03:39.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-deleted.js index 001bbd12905ac..7547073610f99 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 @@ -217,16 +217,15 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:21.000] Files (2) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:22.000] ----------------------------------------------- -Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:26.000] Files (2) +Info 18 [00:01:21.000] ----------------------------------------------- +Info 19 [00:01:22.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:23.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (2) -Info 22 [00:01:27.000] ----------------------------------------------- -Info 22 [00:01:28.000] Open files: -Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:26.000] ----------------------------------------------- +Info 21 [00:01:27.000] Open files: +Info 21 [00:01:28.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:31.000] response: +Info 21 [00:01:30.000] response: { "responseRequired": false } -Info 23 [00:01:32.000] request: +Info 22 [00:01:31.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:36.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:48.000] Files (2) +Info 28 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 38 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:54.000] Files (2) +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:52.000] Files (2) -Info 41 [00:01:55.000] ----------------------------------------------- -Info 41 [00:01:56.000] Open files: -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:53.000] ----------------------------------------------- +Info 39 [00:01:54.000] Open files: +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:01.000] response: +Info 39 [00:01:59.000] response: { "responseRequired": false } -Info 42 [00:02:02.000] request: +Info 40 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:05.000] response: +Info 43 [00:02:03.000] response: { "response": { "info": { @@ -482,12 +480,12 @@ Info 45 [00:02:05.000] response: }, "responseRequired": true } -Info 46 [00:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [00:02:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 48 [00:02:09.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 49 [00:02:10.000] Scheduled: *ensureProjectForOpenFiles* -Info 50 [00:02:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [00:02:12.000] request: +Info 44 [00:02:05.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 45 [00:02:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 46 [00:02:07.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:02:08.000] Scheduled: *ensureProjectForOpenFiles* +Info 48 [00:02:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 49 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -525,9 +523,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 53 [00:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 54 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 50 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 51 [00:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 52 [00:02:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -556,7 +554,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:16.000] response: +Info 53 [00:02:14.000] response: { "response": { "info": { @@ -604,7 +602,7 @@ Info 55 [00:02:16.000] response: }, "responseRequired": true } -Info 56 [00:02:17.000] request: +Info 54 [00:02:15.000] request: { "command": "rename", "arguments": { @@ -671,7 +669,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:18.000] response: +Info 55 [00:02:16.000] response: { "response": { "info": { @@ -719,7 +717,7 @@ Info 57 [00:02:18.000] response: }, "responseRequired": true } -Info 58 [00:02:19.000] request: +Info 56 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -786,7 +784,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:20.000] response: +Info 57 [00:02:18.000] response: { "response": { "info": { @@ -834,7 +832,7 @@ Info 59 [00:02:20.000] response: }, "responseRequired": true } -Info 60 [00:02:21.000] request: +Info 58 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -901,7 +899,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:22.000] response: +Info 59 [00:02:20.000] response: { "response": { "info": { @@ -949,7 +947,7 @@ Info 61 [00:02:22.000] response: }, "responseRequired": true } -Info 62 [00:02:23.000] request: +Info 60 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -1016,7 +1014,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:24.000] response: +Info 61 [00:02:22.000] response: { "response": { "info": { @@ -1064,7 +1062,7 @@ Info 63 [00:02:24.000] response: }, "responseRequired": true } -Info 64 [00:02:25.000] request: +Info 62 [00:02:23.000] request: { "seq": 0, "type": "request", @@ -1101,18 +1099,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:28.000] Files (2) +Info 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) -Info 66 [00:02:29.000] ----------------------------------------------- -Info 66 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:31.000] Files (2) +Info 64 [00:02:27.000] ----------------------------------------------- +Info 64 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:29.000] Files (2) -Info 66 [00:02:32.000] ----------------------------------------------- -Info 66 [00:02:33.000] Open files: -Info 66 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 64 [00:02:30.000] ----------------------------------------------- +Info 64 [00:02:31.000] Open files: +Info 64 [00:02:32.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 64 [00:02:33.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1143,11 +1141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:36.000] response: +Info 64 [00:02:34.000] response: { "responseRequired": false } -Info 67 [00:02:37.000] request: +Info 65 [00:02:35.000] request: { "seq": 0, "type": "request", @@ -1186,22 +1184,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [00:02:39.000] Search path: /user/username/projects/myproject/random -Info 70 [00:02:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [00:02:41.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 71 [00:02:42.000] Files (2) +Info 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 +Info 69 [00:02:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 69 [00:02:40.000] Files (2) -Info 71 [00:02:43.000] ----------------------------------------------- -Info 71 [00:02:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [00:02:45.000] Files (2) +Info 69 [00:02:41.000] ----------------------------------------------- +Info 69 [00:02:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 69 [00:02:43.000] Files (2) -Info 71 [00:02:46.000] ----------------------------------------------- -Info 71 [00:02:47.000] Open files: -Info 71 [00:02:48.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 71 [00:02:49.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 71 [00:02:50.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 71 [00:02:51.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 69 [00:02:44.000] ----------------------------------------------- +Info 69 [00:02:45.000] Open files: +Info 69 [00:02:46.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 69 [00:02:47.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 69 [00:02:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 69 [00:02:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1230,11 +1228,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [00:02:52.000] response: +Info 69 [00:02:50.000] response: { "responseRequired": false } -Info 72 [00:02:53.000] request: +Info 70 [00:02:51.000] request: { "seq": 0, "type": "request", @@ -1271,18 +1269,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [00:02:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 74 [00:02:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [00:02:56.000] Files (2) +Info 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) -Info 74 [00:02:57.000] ----------------------------------------------- -Info 74 [00:02:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [00:02:59.000] Files (2) +Info 72 [00:02:55.000] ----------------------------------------------- +Info 72 [00:02:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 72 [00:02:57.000] Files (2) -Info 74 [00:03:00.000] ----------------------------------------------- -Info 74 [00:03:01.000] Open files: -Info 74 [00:03:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [00:03:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:02:58.000] ----------------------------------------------- +Info 72 [00:02:59.000] Open files: +Info 72 [00:03:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 72 [00:03:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1313,11 +1311,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:03:04.000] response: +Info 72 [00:03:02.000] response: { "responseRequired": false } -Info 75 [00:03:05.000] request: +Info 73 [00:03:03.000] request: { "seq": 0, "type": "request", @@ -1356,16 +1354,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:03:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 77 [00:03:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 77 [00:03:08.000] Files (2) +Info 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) -Info 77 [00:03:09.000] ----------------------------------------------- -Info 77 [00:03:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [00:03:11.000] Files (2) +Info 75 [00:03:07.000] ----------------------------------------------- +Info 75 [00:03:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 75 [00:03:09.000] Files (2) -Info 77 [00:03:12.000] ----------------------------------------------- -Info 77 [00:03:13.000] Open files: +Info 75 [00:03:10.000] ----------------------------------------------- +Info 75 [00:03:11.000] Open files: After request PolledWatches:: @@ -1398,11 +1396,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:03:14.000] response: +Info 75 [00:03:12.000] response: { "responseRequired": false } -Info 78 [00:03:15.000] request: +Info 76 [00:03:13.000] request: { "seq": 0, "type": "request", @@ -1443,12 +1441,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [00:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 80 [00:03:17.000] Search path: /user/username/projects/myproject/random -Info 81 [00:03:18.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 82 [00:03:19.000] `remove Project:: -Info 83 [00:03:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 84 [00:03:21.000] Files (2) +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 +Info 80 [00:03:17.000] `remove Project:: +Info 81 [00:03:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 82 [00:03:19.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1458,24 +1456,24 @@ Info 84 [00:03:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 85 [00:03:22.000] ----------------------------------------------- -Info 86 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 87 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 88 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 89 [00:03:26.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 90 [00:03:27.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 91 [00:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 92 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 93 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 94 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 95 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 96 [00:03:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [00:03:34.000] Files (2) - -Info 96 [00:03:35.000] ----------------------------------------------- -Info 96 [00:03:36.000] Open files: -Info 96 [00:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [00:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 83 [00:03:20.000] ----------------------------------------------- +Info 84 [00:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 85 [00:03:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 86 [00:03:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 87 [00:03:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 88 [00:03:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 89 [00:03:26.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 90 [00:03:27.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 91 [00:03:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 92 [00:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 93 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 94 [00:03:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 94 [00:03:32.000] Files (2) + +Info 94 [00:03:33.000] ----------------------------------------------- +Info 94 [00:03:34.000] Open files: +Info 94 [00:03:35.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 94 [00:03:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1494,7 +1492,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:39.000] response: +Info 94 [00:03:37.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/dependency-dtsMap-not-present.js index ecf0bf9531a23..5249ce436bacb 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 @@ -214,16 +214,15 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:22.000] Files (2) +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -233,16 +232,16 @@ Info 18 [00:01:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:23.000] ----------------------------------------------- -Info 20 [00:01:24.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:27.000] Files (2) +Info 18 [00:01:22.000] ----------------------------------------------- +Info 19 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:26.000] Files (2) -Info 22 [00:01:28.000] ----------------------------------------------- -Info 22 [00:01:29.000] Open files: -Info 22 [00:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:27.000] ----------------------------------------------- +Info 21 [00:01:28.000] Open files: +Info 21 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -261,11 +260,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:32.000] response: +Info 21 [00:01:31.000] response: { "responseRequired": false } -Info 23 [00:01:33.000] request: +Info 22 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -292,11 +291,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:34.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -304,17 +303,16 @@ Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:49.000] Files (2) +Info 28 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:47.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -324,20 +322,20 @@ Info 39 [00:01:49.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:50.000] ----------------------------------------------- -Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:52.000] Files (2) +Info 38 [00:01:48.000] ----------------------------------------------- +Info 39 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:50.000] Files (2) -Info 41 [00:01:53.000] ----------------------------------------------- -Info 41 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:55.000] Files (2) +Info 39 [00:01:51.000] ----------------------------------------------- +Info 39 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:53.000] Files (2) -Info 41 [00:01:56.000] ----------------------------------------------- -Info 41 [00:01:57.000] Open files: -Info 41 [00:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:54.000] ----------------------------------------------- +Info 39 [00:01:55.000] Open files: +Info 39 [00:01:56.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:57.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -362,11 +360,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:02.000] response: +Info 39 [00:02:00.000] response: { "responseRequired": false } -Info 42 [00:02:03.000] request: +Info 40 [00:02:01.000] request: { "command": "rename", "arguments": { @@ -401,8 +399,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +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 PolledWatches:: @@ -431,7 +429,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:06.000] response: +Info 43 [00:02:04.000] response: { "response": { "info": { @@ -479,7 +477,7 @@ Info 45 [00:02:06.000] response: }, "responseRequired": true } -Info 46 [00:02:07.000] request: +Info 44 [00:02:05.000] request: { "command": "rename", "arguments": { @@ -546,7 +544,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [00:02:08.000] response: +Info 45 [00:02:06.000] response: { "response": { "info": { @@ -594,7 +592,7 @@ Info 47 [00:02:08.000] response: }, "responseRequired": true } -Info 48 [00:02:09.000] request: +Info 46 [00:02:07.000] request: { "command": "rename", "arguments": { @@ -661,7 +659,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [00:02:10.000] response: +Info 47 [00:02:08.000] response: { "response": { "info": { @@ -709,7 +707,7 @@ Info 49 [00:02:10.000] response: }, "responseRequired": true } -Info 50 [00:02:11.000] request: +Info 48 [00:02:09.000] request: { "command": "rename", "arguments": { @@ -776,7 +774,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [00:02:12.000] response: +Info 49 [00:02:10.000] response: { "response": { "info": { @@ -824,7 +822,7 @@ Info 51 [00:02:12.000] response: }, "responseRequired": true } -Info 52 [00:02:13.000] request: +Info 50 [00:02:11.000] request: { "command": "rename", "arguments": { @@ -891,7 +889,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [00:02:14.000] response: +Info 51 [00:02:12.000] response: { "response": { "info": { @@ -939,7 +937,7 @@ Info 53 [00:02:14.000] response: }, "responseRequired": true } -Info 54 [00:02:15.000] request: +Info 52 [00:02:13.000] request: { "seq": 0, "type": "request", @@ -976,18 +974,18 @@ FsWatchesRecursive:: /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/dependency/tsconfig.json' (Configured) -Info 56 [00:02:18.000] Files (2) +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) -Info 56 [00:02:19.000] ----------------------------------------------- -Info 56 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [00:02:21.000] Files (2) +Info 54 [00:02:17.000] ----------------------------------------------- +Info 54 [00:02:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 54 [00:02:19.000] Files (2) -Info 56 [00:02:22.000] ----------------------------------------------- -Info 56 [00:02:23.000] Open files: -Info 56 [00:02:24.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [00:02:25.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 54 [00:02:20.000] ----------------------------------------------- +Info 54 [00:02:21.000] Open files: +Info 54 [00:02:22.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 54 [00:02:23.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1018,11 +1016,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:26.000] response: +Info 54 [00:02:24.000] response: { "responseRequired": false } -Info 57 [00:02:27.000] request: +Info 55 [00:02:25.000] request: { "seq": 0, "type": "request", @@ -1061,22 +1059,22 @@ FsWatchesRecursive:: /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 -Info 61 [00:02:31.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 61 [00:02:32.000] Files (2) +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 +Info 59 [00:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 59 [00:02:30.000] Files (2) -Info 61 [00:02:33.000] ----------------------------------------------- -Info 61 [00:02:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [00:02:35.000] Files (2) +Info 59 [00:02:31.000] ----------------------------------------------- +Info 59 [00:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 59 [00:02:33.000] Files (2) -Info 61 [00:02:36.000] ----------------------------------------------- -Info 61 [00:02:37.000] Open files: -Info 61 [00:02:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 61 [00:02:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 61 [00:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 61 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 59 [00:02:34.000] ----------------------------------------------- +Info 59 [00:02:35.000] Open files: +Info 59 [00:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 59 [00:02:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 59 [00:02:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 59 [00:02:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1105,11 +1103,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:42.000] response: +Info 59 [00:02:40.000] response: { "responseRequired": false } -Info 62 [00:02:43.000] request: +Info 60 [00:02:41.000] request: { "seq": 0, "type": "request", @@ -1146,18 +1144,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 64 [00:02:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 64 [00:02:46.000] Files (2) +Info 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) -Info 64 [00:02:47.000] ----------------------------------------------- -Info 64 [00:02:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:49.000] Files (2) +Info 62 [00:02:45.000] ----------------------------------------------- +Info 62 [00:02:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:47.000] Files (2) -Info 64 [00:02:50.000] ----------------------------------------------- -Info 64 [00:02:51.000] Open files: -Info 64 [00:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [00:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:48.000] ----------------------------------------------- +Info 62 [00:02:49.000] Open files: +Info 62 [00:02:50.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:51.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1188,11 +1186,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:54.000] response: +Info 62 [00:02:52.000] response: { "responseRequired": false } -Info 65 [00:02:55.000] request: +Info 63 [00:02:53.000] request: { "seq": 0, "type": "request", @@ -1231,16 +1229,16 @@ FsWatchesRecursive:: /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/dependency/tsconfig.json' (Configured) -Info 67 [00:02:58.000] Files (2) +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) -Info 67 [00:02:59.000] ----------------------------------------------- -Info 67 [00:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 67 [00:03:01.000] Files (2) +Info 65 [00:02:57.000] ----------------------------------------------- +Info 65 [00:02:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:59.000] Files (2) -Info 67 [00:03:02.000] ----------------------------------------------- -Info 67 [00:03:03.000] Open files: +Info 65 [00:03:00.000] ----------------------------------------------- +Info 65 [00:03:01.000] Open files: After request PolledWatches:: @@ -1273,11 +1271,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:03:04.000] response: +Info 65 [00:03:02.000] response: { "responseRequired": false } -Info 68 [00:03:05.000] request: +Info 66 [00:03:03.000] request: { "seq": 0, "type": "request", @@ -1318,12 +1316,12 @@ FsWatchesRecursive:: /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 -Info 72 [00:03:09.000] `remove Project:: -Info 73 [00:03:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [00:03:11.000] Files (2) +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 +Info 70 [00:03:07.000] `remove Project:: +Info 71 [00:03:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 72 [00:03:09.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1333,24 +1331,24 @@ Info 74 [00:03:11.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 75 [00:03:12.000] ----------------------------------------------- -Info 76 [00:03:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 77 [00:03:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 78 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 79 [00:03:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 80 [00:03:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 81 [00:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 82 [00:03:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 83 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 84 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 85 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 86 [00:03:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 86 [00:03:24.000] Files (2) - -Info 86 [00:03:25.000] ----------------------------------------------- -Info 86 [00:03:26.000] Open files: -Info 86 [00:03:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 86 [00:03:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 73 [00:03:10.000] ----------------------------------------------- +Info 74 [00:03:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 75 [00:03:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 76 [00:03:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 77 [00:03:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 78 [00:03:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 79 [00:03:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 80 [00:03:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 81 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 82 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 83 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 84 [00:03:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 84 [00:03:22.000] Files (2) + +Info 84 [00:03:23.000] ----------------------------------------------- +Info 84 [00:03:24.000] Open files: +Info 84 [00:03:25.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 84 [00:03:26.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1369,7 +1367,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:29.000] response: +Info 84 [00:03:27.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/rename-locations.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/rename-locations.js index 5c2e5e935b912..cf15753d855d1 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/rename-locations.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/rename-locations.js @@ -217,16 +217,15 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:21.000] Files (2) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:22.000] ----------------------------------------------- -Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:26.000] Files (2) +Info 18 [00:01:21.000] ----------------------------------------------- +Info 19 [00:01:22.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:23.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (2) -Info 22 [00:01:27.000] ----------------------------------------------- -Info 22 [00:01:28.000] Open files: -Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:26.000] ----------------------------------------------- +Info 21 [00:01:27.000] Open files: +Info 21 [00:01:28.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:31.000] response: +Info 21 [00:01:30.000] response: { "responseRequired": false } -Info 23 [00:01:32.000] request: +Info 22 [00:01:31.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:36.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:48.000] Files (2) +Info 28 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 38 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:54.000] Files (2) +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:52.000] Files (2) -Info 41 [00:01:55.000] ----------------------------------------------- -Info 41 [00:01:56.000] Open files: -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:53.000] ----------------------------------------------- +Info 39 [00:01:54.000] Open files: +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:01.000] response: +Info 39 [00:01:59.000] response: { "responseRequired": false } -Info 42 [00:02:02.000] request: +Info 40 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:05.000] response: +Info 43 [00:02:03.000] response: { "response": { "info": { @@ -482,7 +480,7 @@ Info 45 [00:02:05.000] response: }, "responseRequired": true } -Info 46 [00:02:06.000] request: +Info 44 [00:02:04.000] request: { "command": "rename", "arguments": { @@ -549,7 +547,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [00:02:07.000] response: +Info 45 [00:02:05.000] response: { "response": { "info": { @@ -597,7 +595,7 @@ Info 47 [00:02:07.000] response: }, "responseRequired": true } -Info 48 [00:02:08.000] request: +Info 46 [00:02:06.000] request: { "command": "rename", "arguments": { @@ -664,7 +662,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [00:02:09.000] response: +Info 47 [00:02:07.000] response: { "response": { "info": { @@ -712,7 +710,7 @@ Info 49 [00:02:09.000] response: }, "responseRequired": true } -Info 50 [00:02:10.000] request: +Info 48 [00:02:08.000] request: { "command": "rename", "arguments": { @@ -779,7 +777,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [00:02:11.000] response: +Info 49 [00:02:09.000] response: { "response": { "info": { @@ -827,7 +825,7 @@ Info 51 [00:02:11.000] response: }, "responseRequired": true } -Info 52 [00:02:12.000] request: +Info 50 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -894,7 +892,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [00:02:13.000] response: +Info 51 [00:02:11.000] response: { "response": { "info": { @@ -942,7 +940,7 @@ Info 53 [00:02:13.000] response: }, "responseRequired": true } -Info 54 [00:02:14.000] request: +Info 52 [00:02:12.000] request: { "seq": 0, "type": "request", @@ -979,18 +977,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 56 [00:02:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [00:02:17.000] Files (2) +Info 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) -Info 56 [00:02:18.000] ----------------------------------------------- -Info 56 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [00:02:20.000] Files (2) +Info 54 [00:02:16.000] ----------------------------------------------- +Info 54 [00:02:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 54 [00:02:18.000] Files (2) -Info 56 [00:02:21.000] ----------------------------------------------- -Info 56 [00:02:22.000] Open files: -Info 56 [00:02:23.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [00:02:24.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 54 [00:02:19.000] ----------------------------------------------- +Info 54 [00:02:20.000] Open files: +Info 54 [00:02:21.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 54 [00:02:22.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1021,11 +1019,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:25.000] response: +Info 54 [00:02:23.000] response: { "responseRequired": false } -Info 57 [00:02:26.000] request: +Info 55 [00:02:24.000] request: { "seq": 0, "type": "request", @@ -1064,22 +1062,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 59 [00:02:28.000] Search path: /user/username/projects/myproject/random -Info 60 [00:02:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 61 [00:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 61 [00:02:31.000] Files (2) +Info 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 +Info 59 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 59 [00:02:29.000] Files (2) -Info 61 [00:02:32.000] ----------------------------------------------- -Info 61 [00:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [00:02:34.000] Files (2) +Info 59 [00:02:30.000] ----------------------------------------------- +Info 59 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 59 [00:02:32.000] Files (2) -Info 61 [00:02:35.000] ----------------------------------------------- -Info 61 [00:02:36.000] Open files: -Info 61 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 61 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 61 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 61 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 59 [00:02:33.000] ----------------------------------------------- +Info 59 [00:02:34.000] Open files: +Info 59 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 59 [00:02:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 59 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 59 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1108,11 +1106,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:41.000] response: +Info 59 [00:02:39.000] response: { "responseRequired": false } -Info 62 [00:02:42.000] request: +Info 60 [00:02:40.000] request: { "seq": 0, "type": "request", @@ -1149,18 +1147,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 64 [00:02:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 64 [00:02:45.000] Files (2) +Info 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) -Info 64 [00:02:46.000] ----------------------------------------------- -Info 64 [00:02:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:48.000] Files (2) +Info 62 [00:02:44.000] ----------------------------------------------- +Info 62 [00:02:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:46.000] Files (2) -Info 64 [00:02:49.000] ----------------------------------------------- -Info 64 [00:02:50.000] Open files: -Info 64 [00:02:51.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [00:02:52.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:47.000] ----------------------------------------------- +Info 62 [00:02:48.000] Open files: +Info 62 [00:02:49.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:50.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1191,11 +1189,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:53.000] response: +Info 62 [00:02:51.000] response: { "responseRequired": false } -Info 65 [00:02:54.000] request: +Info 63 [00:02:52.000] request: { "seq": 0, "type": "request", @@ -1234,16 +1232,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 67 [00:02:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 67 [00:02:57.000] Files (2) +Info 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) -Info 67 [00:02:58.000] ----------------------------------------------- -Info 67 [00:02:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 67 [00:03:00.000] Files (2) +Info 65 [00:02:56.000] ----------------------------------------------- +Info 65 [00:02:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:58.000] Files (2) -Info 67 [00:03:01.000] ----------------------------------------------- -Info 67 [00:03:02.000] Open files: +Info 65 [00:02:59.000] ----------------------------------------------- +Info 65 [00:03:00.000] Open files: After request PolledWatches:: @@ -1276,11 +1274,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:03:03.000] response: +Info 65 [00:03:01.000] response: { "responseRequired": false } -Info 68 [00:03:04.000] request: +Info 66 [00:03:02.000] request: { "seq": 0, "type": "request", @@ -1321,12 +1319,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 70 [00:03:06.000] Search path: /user/username/projects/myproject/random -Info 71 [00:03:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 72 [00:03:08.000] `remove Project:: -Info 73 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [00:03:10.000] Files (2) +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 +Info 70 [00:03:06.000] `remove Project:: +Info 71 [00:03:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 72 [00:03:08.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1336,24 +1334,24 @@ Info 74 [00:03:10.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 75 [00:03:11.000] ----------------------------------------------- -Info 76 [00:03:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 77 [00:03:13.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 78 [00:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 79 [00:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 80 [00:03:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 81 [00:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 82 [00:03:18.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 83 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 84 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 85 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 86 [00:03:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 86 [00:03:23.000] Files (2) - -Info 86 [00:03:24.000] ----------------------------------------------- -Info 86 [00:03:25.000] Open files: -Info 86 [00:03:26.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 86 [00:03:27.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 73 [00:03:09.000] ----------------------------------------------- +Info 74 [00:03:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 75 [00:03:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 76 [00:03:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 77 [00:03:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 78 [00:03:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 79 [00:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 80 [00:03:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 81 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 82 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 83 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 84 [00:03:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 84 [00:03:21.000] Files (2) + +Info 84 [00:03:22.000] ----------------------------------------------- +Info 84 [00:03:23.000] Open files: +Info 84 [00:03:24.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 84 [00:03:25.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1372,7 +1370,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:28.000] response: +Info 84 [00:03:26.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/usage-file-changes-with-timeout-before-request.js index f167dd0af9c7c..7010707134e98 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 @@ -217,16 +217,15 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:21.000] Files (2) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:22.000] ----------------------------------------------- -Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:26.000] Files (2) +Info 18 [00:01:21.000] ----------------------------------------------- +Info 19 [00:01:22.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:23.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (2) -Info 22 [00:01:27.000] ----------------------------------------------- -Info 22 [00:01:28.000] Open files: -Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:26.000] ----------------------------------------------- +Info 21 [00:01:27.000] Open files: +Info 21 [00:01:28.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:31.000] response: +Info 21 [00:01:30.000] response: { "responseRequired": false } -Info 23 [00:01:32.000] request: +Info 22 [00:01:31.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:36.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:48.000] Files (2) +Info 28 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 38 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:54.000] Files (2) +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:52.000] Files (2) -Info 41 [00:01:55.000] ----------------------------------------------- -Info 41 [00:01:56.000] Open files: -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:53.000] ----------------------------------------------- +Info 39 [00:01:54.000] Open files: +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:01.000] response: +Info 39 [00:01:59.000] response: { "responseRequired": false } -Info 42 [00:02:02.000] request: +Info 40 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:05.000] response: +Info 43 [00:02:03.000] response: { "response": { "info": { @@ -482,7 +480,7 @@ Info 45 [00:02:05.000] response: }, "responseRequired": true } -Info 46 [00:02:06.000] request: +Info 44 [00:02:04.000] request: { "command": "change", "arguments": { @@ -552,7 +550,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [00:02:07.000] response: +Info 45 [00:02:05.000] response: { "responseRequired": false } @@ -612,7 +610,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:08.000] request: +Info 46 [00:02:06.000] request: { "command": "rename", "arguments": { @@ -651,9 +649,9 @@ FsWatchesRecursive:: /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:: Completely Elapsed:: *ms -Info 51 [00:02:11.000] Different program with same set of files +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:: @@ -682,7 +680,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:12.000] response: +Info 50 [00:02:10.000] response: { "response": { "info": { @@ -730,7 +728,7 @@ Info 52 [00:02:12.000] response: }, "responseRequired": true } -Info 53 [00:02:13.000] request: +Info 51 [00:02:11.000] request: { "command": "rename", "arguments": { @@ -797,7 +795,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:14.000] response: +Info 52 [00:02:12.000] response: { "response": { "info": { @@ -845,7 +843,7 @@ Info 54 [00:02:14.000] response: }, "responseRequired": true } -Info 55 [00:02:15.000] request: +Info 53 [00:02:13.000] request: { "command": "rename", "arguments": { @@ -912,7 +910,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:16.000] response: +Info 54 [00:02:14.000] response: { "response": { "info": { @@ -960,7 +958,7 @@ Info 56 [00:02:16.000] response: }, "responseRequired": true } -Info 57 [00:02:17.000] request: +Info 55 [00:02:15.000] request: { "command": "rename", "arguments": { @@ -1027,7 +1025,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:18.000] response: +Info 56 [00:02:16.000] response: { "response": { "info": { @@ -1075,7 +1073,7 @@ Info 58 [00:02:18.000] response: }, "responseRequired": true } -Info 59 [00:02:19.000] request: +Info 57 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -1142,7 +1140,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:20.000] response: +Info 58 [00:02:18.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configHasNoReference/usage-file-changes.js index be2f9ea3482e2..205158cd6767d 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 @@ -217,16 +217,15 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:21.000] Files (2) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:22.000] ----------------------------------------------- -Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:26.000] Files (2) +Info 18 [00:01:21.000] ----------------------------------------------- +Info 19 [00:01:22.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:23.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (2) -Info 22 [00:01:27.000] ----------------------------------------------- -Info 22 [00:01:28.000] Open files: -Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:26.000] ----------------------------------------------- +Info 21 [00:01:27.000] Open files: +Info 21 [00:01:28.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:31.000] response: +Info 21 [00:01:30.000] response: { "responseRequired": false } -Info 23 [00:01:32.000] request: +Info 22 [00:01:31.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:36.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:48.000] Files (2) +Info 28 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 38 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:54.000] Files (2) +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:52.000] Files (2) -Info 41 [00:01:55.000] ----------------------------------------------- -Info 41 [00:01:56.000] Open files: -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:53.000] ----------------------------------------------- +Info 39 [00:01:54.000] Open files: +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:01.000] response: +Info 39 [00:01:59.000] response: { "responseRequired": false } -Info 42 [00:02:02.000] request: +Info 40 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:05.000] response: +Info 43 [00:02:03.000] response: { "response": { "info": { @@ -482,7 +480,7 @@ Info 45 [00:02:05.000] response: }, "responseRequired": true } -Info 46 [00:02:06.000] request: +Info 44 [00:02:04.000] request: { "command": "change", "arguments": { @@ -552,11 +550,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [00:02:07.000] response: +Info 45 [00:02:05.000] response: { "responseRequired": false } -Info 48 [00:02:08.000] request: +Info 46 [00:02:06.000] request: { "command": "rename", "arguments": { @@ -595,9 +593,9 @@ FsWatchesRecursive:: /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:: Completely Elapsed:: *ms -Info 51 [00:02:11.000] Different program with same set of files +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:: @@ -626,7 +624,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:12.000] response: +Info 50 [00:02:10.000] response: { "response": { "info": { @@ -674,7 +672,7 @@ Info 52 [00:02:12.000] response: }, "responseRequired": true } -Info 53 [00:02:13.000] request: +Info 51 [00:02:11.000] request: { "command": "rename", "arguments": { @@ -741,7 +739,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:14.000] response: +Info 52 [00:02:12.000] response: { "response": { "info": { @@ -789,7 +787,7 @@ Info 54 [00:02:14.000] response: }, "responseRequired": true } -Info 55 [00:02:15.000] request: +Info 53 [00:02:13.000] request: { "command": "rename", "arguments": { @@ -856,7 +854,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:16.000] response: +Info 54 [00:02:14.000] response: { "response": { "info": { @@ -904,7 +902,7 @@ Info 56 [00:02:16.000] response: }, "responseRequired": true } -Info 57 [00:02:17.000] request: +Info 55 [00:02:15.000] request: { "command": "rename", "arguments": { @@ -971,7 +969,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:18.000] response: +Info 56 [00:02:16.000] response: { "response": { "info": { @@ -1019,7 +1017,7 @@ Info 58 [00:02:18.000] response: }, "responseRequired": true } -Info 59 [00:02:19.000] request: +Info 57 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -1086,7 +1084,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:20.000] response: +Info 58 [00:02:18.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-changes-with-timeout-before-request.js index 7f37250dbbf1d..03aaa945c5c89 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 @@ -217,16 +217,15 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:18.000] Files (2) +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:17.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:19.000] ----------------------------------------------- -Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:23.000] Files (2) +Info 18 [00:01:18.000] ----------------------------------------------- +Info 19 [00:01:19.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:20.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:22.000] Files (2) -Info 22 [00:01:24.000] ----------------------------------------------- -Info 22 [00:01:25.000] Open files: -Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:23.000] ----------------------------------------------- +Info 21 [00:01:24.000] Open files: +Info 21 [00:01:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:28.000] response: +Info 21 [00:01:27.000] response: { "responseRequired": false } -Info 23 [00:01:29.000] request: +Info 22 [00:01:28.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:33.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:45.000] Files (2) +Info 28 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:43.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:46.000] ----------------------------------------------- -Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:48.000] Files (2) +Info 38 [00:01:44.000] ----------------------------------------------- +Info 39 [00:01:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:46.000] Files (2) -Info 41 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 39 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Open files: -Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Open files: +Info 39 [00:01:52.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:53.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:01:58.000] response: +Info 39 [00:01:56.000] response: { "responseRequired": false } -Info 42 [00:01:59.000] request: +Info 40 [00:01:57.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:02.000] response: +Info 43 [00:02:00.000] response: { "response": { "info": { @@ -482,10 +480,10 @@ Info 45 [00:02:02.000] response: }, "responseRequired": true } -Info 46 [00:02:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 47 [00:02:07.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:02:08.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [00:02:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:04.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 45 [00:02:05.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:02:06.000] Scheduled: *ensureProjectForOpenFiles* +Info 47 [00:02:07.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts] export declare function fn1(): void; @@ -523,38 +521,38 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:10.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 51 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [00:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 53 [00:02:13.000] Running: *ensureProjectForOpenFiles* -Info 54 [00:02:14.000] Before ensureProjectForOpenFiles: -Info 55 [00:02:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [00:02:16.000] Files (2) - -Info 55 [00:02:17.000] ----------------------------------------------- -Info 55 [00:02:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 55 [00:02:19.000] Files (2) - -Info 55 [00:02:20.000] ----------------------------------------------- -Info 55 [00:02:21.000] Open files: -Info 55 [00:02:22.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 55 [00:02:23.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 55 [00:02:24.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 55 [00:02:25.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 55 [00:02:26.000] After ensureProjectForOpenFiles: -Info 56 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [00:02:28.000] Files (2) - -Info 56 [00:02:29.000] ----------------------------------------------- -Info 56 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [00:02:31.000] Files (2) - -Info 56 [00:02:32.000] ----------------------------------------------- -Info 56 [00:02:33.000] Open files: -Info 56 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 56 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 56 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 51 [00:02:11.000] Running: *ensureProjectForOpenFiles* +Info 52 [00:02:12.000] Before ensureProjectForOpenFiles: +Info 53 [00:02:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 53 [00:02:14.000] Files (2) + +Info 53 [00:02:15.000] ----------------------------------------------- +Info 53 [00:02:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 53 [00:02:17.000] Files (2) + +Info 53 [00:02:18.000] ----------------------------------------------- +Info 53 [00:02:19.000] Open files: +Info 53 [00:02:20.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 53 [00:02:21.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:22.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 53 [00:02:23.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 53 [00:02:24.000] After ensureProjectForOpenFiles: +Info 54 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 54 [00:02:26.000] Files (2) + +Info 54 [00:02:27.000] ----------------------------------------------- +Info 54 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 54 [00:02:29.000] Files (2) + +Info 54 [00:02:30.000] ----------------------------------------------- +Info 54 [00:02:31.000] Open files: +Info 54 [00:02:32.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 54 [00:02:33.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 54 [00:02:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 54 [00:02:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -583,7 +581,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:38.000] request: +Info 54 [00:02:36.000] request: { "command": "rename", "arguments": { @@ -650,7 +648,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:39.000] response: +Info 55 [00:02:37.000] response: { "response": { "info": { @@ -698,7 +696,7 @@ Info 57 [00:02:39.000] response: }, "responseRequired": true } -Info 58 [00:02:40.000] request: +Info 56 [00:02:38.000] request: { "command": "rename", "arguments": { @@ -765,7 +763,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:41.000] response: +Info 57 [00:02:39.000] response: { "response": { "info": { @@ -813,7 +811,7 @@ Info 59 [00:02:41.000] response: }, "responseRequired": true } -Info 60 [00:02:42.000] request: +Info 58 [00:02:40.000] request: { "command": "rename", "arguments": { @@ -880,7 +878,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:43.000] response: +Info 59 [00:02:41.000] response: { "response": { "info": { @@ -928,7 +926,7 @@ Info 61 [00:02:43.000] response: }, "responseRequired": true } -Info 62 [00:02:44.000] request: +Info 60 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -995,7 +993,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:45.000] response: +Info 61 [00:02:43.000] response: { "response": { "info": { @@ -1043,7 +1041,7 @@ Info 63 [00:02:45.000] response: }, "responseRequired": true } -Info 64 [00:02:46.000] request: +Info 62 [00:02:44.000] request: { "command": "rename", "arguments": { @@ -1110,7 +1108,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:47.000] response: +Info 63 [00:02:45.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-changes.js index 3d3b2bd9327e9..99530ba1e0adb 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 @@ -217,16 +217,15 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:18.000] Files (2) +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:17.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:19.000] ----------------------------------------------- -Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:23.000] Files (2) +Info 18 [00:01:18.000] ----------------------------------------------- +Info 19 [00:01:19.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:20.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:22.000] Files (2) -Info 22 [00:01:24.000] ----------------------------------------------- -Info 22 [00:01:25.000] Open files: -Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:23.000] ----------------------------------------------- +Info 21 [00:01:24.000] Open files: +Info 21 [00:01:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:28.000] response: +Info 21 [00:01:27.000] response: { "responseRequired": false } -Info 23 [00:01:29.000] request: +Info 22 [00:01:28.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:33.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:45.000] Files (2) +Info 28 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:43.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:46.000] ----------------------------------------------- -Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:48.000] Files (2) +Info 38 [00:01:44.000] ----------------------------------------------- +Info 39 [00:01:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:46.000] Files (2) -Info 41 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 39 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Open files: -Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Open files: +Info 39 [00:01:52.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:53.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:01:58.000] response: +Info 39 [00:01:56.000] response: { "responseRequired": false } -Info 42 [00:01:59.000] request: +Info 40 [00:01:57.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:02.000] response: +Info 43 [00:02:00.000] response: { "response": { "info": { @@ -482,11 +480,11 @@ Info 45 [00:02:02.000] response: }, "responseRequired": true } -Info 46 [00:02:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 47 [00:02:07.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:02:08.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [00:02:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 50 [00:02:10.000] request: +Info 44 [00:02:04.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 45 [00:02:05.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:02:06.000] Scheduled: *ensureProjectForOpenFiles* +Info 47 [00:02:07.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 48 [00:02:08.000] request: { "command": "rename", "arguments": { @@ -534,8 +532,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [00:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 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:: @@ -564,7 +562,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [00:02:13.000] response: +Info 51 [00:02:11.000] response: { "response": { "info": { @@ -612,7 +610,7 @@ Info 53 [00:02:13.000] response: }, "responseRequired": true } -Info 54 [00:02:14.000] request: +Info 52 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -679,7 +677,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:15.000] response: +Info 53 [00:02:13.000] response: { "response": { "info": { @@ -727,7 +725,7 @@ Info 55 [00:02:15.000] response: }, "responseRequired": true } -Info 56 [00:02:16.000] request: +Info 54 [00:02:14.000] request: { "command": "rename", "arguments": { @@ -794,7 +792,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:17.000] response: +Info 55 [00:02:15.000] response: { "response": { "info": { @@ -842,7 +840,7 @@ Info 57 [00:02:17.000] response: }, "responseRequired": true } -Info 58 [00:02:18.000] request: +Info 56 [00:02:16.000] request: { "command": "rename", "arguments": { @@ -909,7 +907,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:19.000] response: +Info 57 [00:02:17.000] response: { "response": { "info": { @@ -957,7 +955,7 @@ Info 59 [00:02:19.000] response: }, "responseRequired": true } -Info 60 [00:02:20.000] request: +Info 58 [00:02:18.000] request: { "command": "rename", "arguments": { @@ -1024,7 +1022,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:21.000] response: +Info 59 [00:02:19.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-created.js index 000dcbfc09dde..4b8301531db0b 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 @@ -209,16 +209,15 @@ Info 6 [00:01:07.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:19.000] Files (2) +Info 9 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -228,16 +227,16 @@ Info 18 [00:01:19.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:20.000] ----------------------------------------------- -Info 20 [00:01:21.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:22.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:24.000] Files (2) +Info 18 [00:01:19.000] ----------------------------------------------- +Info 19 [00:01:20.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:23.000] Files (2) -Info 22 [00:01:25.000] ----------------------------------------------- -Info 22 [00:01:26.000] Open files: -Info 22 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:28.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:24.000] ----------------------------------------------- +Info 21 [00:01:25.000] Open files: +Info 21 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -256,11 +255,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:29.000] response: +Info 21 [00:01:28.000] response: { "responseRequired": false } -Info 23 [00:01:30.000] request: +Info 22 [00:01:29.000] request: { "seq": 0, "type": "request", @@ -287,11 +286,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:31.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:33.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:35.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -299,17 +298,16 @@ Info 28 [00:01:35.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:46.000] Files (2) +Info 28 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:37.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:44.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -319,20 +317,20 @@ Info 39 [00:01:46.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:47.000] ----------------------------------------------- -Info 41 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:49.000] Files (2) +Info 38 [00:01:45.000] ----------------------------------------------- +Info 39 [00:01:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:47.000] Files (2) -Info 41 [00:01:50.000] ----------------------------------------------- -Info 41 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:52.000] Files (2) +Info 39 [00:01:48.000] ----------------------------------------------- +Info 39 [00:01:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:50.000] Files (2) -Info 41 [00:01:53.000] ----------------------------------------------- -Info 41 [00:01:54.000] Open files: -Info 41 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:51.000] ----------------------------------------------- +Info 39 [00:01:52.000] Open files: +Info 39 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:54.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -357,11 +355,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:01:59.000] response: +Info 39 [00:01:57.000] response: { "responseRequired": false } -Info 42 [00:02:00.000] request: +Info 40 [00:01:58.000] request: { "command": "rename", "arguments": { @@ -396,7 +394,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +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 PolledWatches:: @@ -423,7 +421,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [00:02:02.000] response: +Info 42 [00:02:00.000] response: { "response": { "info": { @@ -471,15 +469,15 @@ Info 44 [00:02:02.000] response: }, "responseRequired": true } -Info 45 [00:02:05.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 46 [00:02:06.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 47 [00:02:07.000] Scheduled: *ensureProjectForOpenFiles* -Info 48 [00:02:08.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 49 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 50 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one -Info 51 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 52 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 53 [00:02:13.000] request: +Info 43 [00:02:03.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 44 [00:02:04.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 45 [00:02:05.000] Scheduled: *ensureProjectForOpenFiles* +Info 46 [00:02:06.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 47 [00:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 48 [00:02:08.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one +Info 49 [00:02:09.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 50 [00:02:10.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 51 [00:02:11.000] request: { "command": "rename", "arguments": { @@ -524,10 +522,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 55 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 56 [00:02:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 57 [00:02:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 52 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 54 [00:02:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 55 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -556,7 +554,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:18.000] response: +Info 56 [00:02:16.000] response: { "response": { "info": { @@ -604,7 +602,7 @@ Info 58 [00:02:18.000] response: }, "responseRequired": true } -Info 59 [00:02:19.000] request: +Info 57 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -671,7 +669,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:20.000] response: +Info 58 [00:02:18.000] response: { "response": { "info": { @@ -719,7 +717,7 @@ Info 60 [00:02:20.000] response: }, "responseRequired": true } -Info 61 [00:02:21.000] request: +Info 59 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -786,7 +784,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [00:02:22.000] response: +Info 60 [00:02:20.000] response: { "response": { "info": { @@ -834,7 +832,7 @@ Info 62 [00:02:22.000] response: }, "responseRequired": true } -Info 63 [00:02:23.000] request: +Info 61 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -901,7 +899,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:24.000] response: +Info 62 [00:02:22.000] response: { "response": { "info": { @@ -949,7 +947,7 @@ Info 64 [00:02:24.000] response: }, "responseRequired": true } -Info 65 [00:02:25.000] request: +Info 63 [00:02:23.000] request: { "command": "rename", "arguments": { @@ -1016,7 +1014,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:26.000] response: +Info 64 [00:02:24.000] response: { "response": { "info": { @@ -1064,7 +1062,7 @@ Info 66 [00:02:26.000] response: }, "responseRequired": true } -Info 67 [00:02:27.000] request: +Info 65 [00:02:25.000] request: { "seq": 0, "type": "request", @@ -1101,18 +1099,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [00:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 69 [00:02:30.000] Files (2) +Info 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) -Info 69 [00:02:31.000] ----------------------------------------------- -Info 69 [00:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 69 [00:02:33.000] Files (2) +Info 67 [00:02:29.000] ----------------------------------------------- +Info 67 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 67 [00:02:31.000] Files (2) -Info 69 [00:02:34.000] ----------------------------------------------- -Info 69 [00:02:35.000] Open files: -Info 69 [00:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 69 [00:02:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 67 [00:02:32.000] ----------------------------------------------- +Info 67 [00:02:33.000] Open files: +Info 67 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 67 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1143,11 +1141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:02:38.000] response: +Info 67 [00:02:36.000] response: { "responseRequired": false } -Info 70 [00:02:39.000] request: +Info 68 [00:02:37.000] request: { "seq": 0, "type": "request", @@ -1186,22 +1184,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [00:02:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 72 [00:02:41.000] Search path: /user/username/projects/myproject/random -Info 73 [00:02:42.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 74 [00:02:43.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [00:02:44.000] Files (2) +Info 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 +Info 72 [00:02:41.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 72 [00:02:42.000] Files (2) -Info 74 [00:02:45.000] ----------------------------------------------- -Info 74 [00:02:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [00:02:47.000] Files (2) +Info 72 [00:02:43.000] ----------------------------------------------- +Info 72 [00:02:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 72 [00:02:45.000] Files (2) -Info 74 [00:02:48.000] ----------------------------------------------- -Info 74 [00:02:49.000] Open files: -Info 74 [00:02:50.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 74 [00:02:51.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 74 [00:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [00:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:02:46.000] ----------------------------------------------- +Info 72 [00:02:47.000] Open files: +Info 72 [00:02:48.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 72 [00:02:49.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:50.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 72 [00:02:51.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1230,11 +1228,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:54.000] response: +Info 72 [00:02:52.000] response: { "responseRequired": false } -Info 75 [00:02:55.000] request: +Info 73 [00:02:53.000] request: { "seq": 0, "type": "request", @@ -1271,18 +1269,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 77 [00:02:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 77 [00:02:58.000] Files (2) +Info 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) -Info 77 [00:02:59.000] ----------------------------------------------- -Info 77 [00:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [00:03:01.000] Files (2) +Info 75 [00:02:57.000] ----------------------------------------------- +Info 75 [00:02:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 75 [00:02:59.000] Files (2) -Info 77 [00:03:02.000] ----------------------------------------------- -Info 77 [00:03:03.000] Open files: -Info 77 [00:03:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 77 [00:03:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 75 [00:03:00.000] ----------------------------------------------- +Info 75 [00:03:01.000] Open files: +Info 75 [00:03:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 75 [00:03:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1313,11 +1311,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:03:06.000] response: +Info 75 [00:03:04.000] response: { "responseRequired": false } -Info 78 [00:03:07.000] request: +Info 76 [00:03:05.000] request: { "seq": 0, "type": "request", @@ -1356,16 +1354,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [00:03:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 80 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 80 [00:03:10.000] Files (2) +Info 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) -Info 80 [00:03:11.000] ----------------------------------------------- -Info 80 [00:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 80 [00:03:13.000] Files (2) +Info 78 [00:03:09.000] ----------------------------------------------- +Info 78 [00:03:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 78 [00:03:11.000] Files (2) -Info 80 [00:03:14.000] ----------------------------------------------- -Info 80 [00:03:15.000] Open files: +Info 78 [00:03:12.000] ----------------------------------------------- +Info 78 [00:03:13.000] Open files: After request PolledWatches:: @@ -1398,11 +1396,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:03:16.000] response: +Info 78 [00:03:14.000] response: { "responseRequired": false } -Info 81 [00:03:17.000] request: +Info 79 [00:03:15.000] request: { "seq": 0, "type": "request", @@ -1443,12 +1441,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 83 [00:03:19.000] Search path: /user/username/projects/myproject/random -Info 84 [00:03:20.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 85 [00:03:21.000] `remove Project:: -Info 86 [00:03:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 87 [00:03:23.000] Files (2) +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 +Info 83 [00:03:19.000] `remove Project:: +Info 84 [00:03:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 85 [00:03:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1458,25 +1456,25 @@ Info 87 [00:03:23.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 88 [00:03:24.000] ----------------------------------------------- -Info 89 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 90 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 91 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 92 [00:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 93 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 94 [00:03:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 95 [00:03:31.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 96 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 97 [00:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 98 [00:03:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 99 [00:03:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 100 [00:03:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 100 [00:03:37.000] Files (2) - -Info 100 [00:03:38.000] ----------------------------------------------- -Info 100 [00:03:39.000] Open files: -Info 100 [00:03:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 100 [00:03:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 86 [00:03:22.000] ----------------------------------------------- +Info 87 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 88 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 89 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 90 [00:03:26.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 91 [00:03:27.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 92 [00:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 93 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 94 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 95 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 96 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 97 [00:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 98 [00:03:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 98 [00:03:35.000] Files (2) + +Info 98 [00:03:36.000] ----------------------------------------------- +Info 98 [00:03:37.000] Open files: +Info 98 [00:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 98 [00:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1495,7 +1493,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:42.000] response: +Info 98 [00:03:40.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-deleted.js index bbce4629d4a5f..b5e64fed223df 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 @@ -217,16 +217,15 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:18.000] Files (2) +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:17.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:19.000] ----------------------------------------------- -Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:23.000] Files (2) +Info 18 [00:01:18.000] ----------------------------------------------- +Info 19 [00:01:19.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:20.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:22.000] Files (2) -Info 22 [00:01:24.000] ----------------------------------------------- -Info 22 [00:01:25.000] Open files: -Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:23.000] ----------------------------------------------- +Info 21 [00:01:24.000] Open files: +Info 21 [00:01:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:28.000] response: +Info 21 [00:01:27.000] response: { "responseRequired": false } -Info 23 [00:01:29.000] request: +Info 22 [00:01:28.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:33.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:45.000] Files (2) +Info 28 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:43.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:46.000] ----------------------------------------------- -Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:48.000] Files (2) +Info 38 [00:01:44.000] ----------------------------------------------- +Info 39 [00:01:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:46.000] Files (2) -Info 41 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 39 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Open files: -Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Open files: +Info 39 [00:01:52.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:53.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:01:58.000] response: +Info 39 [00:01:56.000] response: { "responseRequired": false } -Info 42 [00:01:59.000] request: +Info 40 [00:01:57.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:02.000] response: +Info 43 [00:02:00.000] response: { "response": { "info": { @@ -482,12 +480,12 @@ Info 45 [00:02:02.000] response: }, "responseRequired": true } -Info 46 [00:02:04.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 47 [00:02:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 48 [00:02:06.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 49 [00:02:07.000] Scheduled: *ensureProjectForOpenFiles* -Info 50 [00:02:08.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 51 [00:02:09.000] request: +Info 44 [00:02:02.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 45 [00:02:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 46 [00:02:04.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:02:05.000] Scheduled: *ensureProjectForOpenFiles* +Info 48 [00:02:06.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 49 [00:02:07.000] request: { "command": "rename", "arguments": { @@ -525,9 +523,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 53 [00:02:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 54 [00:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 50 [00:02:08.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 51 [00:02:09.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 52 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -556,7 +554,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:13.000] response: +Info 53 [00:02:11.000] response: { "response": { "info": { @@ -604,7 +602,7 @@ Info 55 [00:02:13.000] response: }, "responseRequired": true } -Info 56 [00:02:14.000] request: +Info 54 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -671,7 +669,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:15.000] response: +Info 55 [00:02:13.000] response: { "response": { "info": { @@ -719,7 +717,7 @@ Info 57 [00:02:15.000] response: }, "responseRequired": true } -Info 58 [00:02:16.000] request: +Info 56 [00:02:14.000] request: { "command": "rename", "arguments": { @@ -786,7 +784,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:17.000] response: +Info 57 [00:02:15.000] response: { "response": { "info": { @@ -834,7 +832,7 @@ Info 59 [00:02:17.000] response: }, "responseRequired": true } -Info 60 [00:02:18.000] request: +Info 58 [00:02:16.000] request: { "command": "rename", "arguments": { @@ -901,7 +899,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:19.000] response: +Info 59 [00:02:17.000] response: { "response": { "info": { @@ -949,7 +947,7 @@ Info 61 [00:02:19.000] response: }, "responseRequired": true } -Info 62 [00:02:20.000] request: +Info 60 [00:02:18.000] request: { "command": "rename", "arguments": { @@ -1016,7 +1014,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:21.000] response: +Info 61 [00:02:19.000] response: { "response": { "info": { @@ -1064,7 +1062,7 @@ Info 63 [00:02:21.000] response: }, "responseRequired": true } -Info 64 [00:02:22.000] request: +Info 62 [00:02:20.000] request: { "seq": 0, "type": "request", @@ -1101,18 +1099,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [00:02:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:25.000] Files (2) +Info 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) -Info 66 [00:02:26.000] ----------------------------------------------- -Info 66 [00:02:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:28.000] Files (2) +Info 64 [00:02:24.000] ----------------------------------------------- +Info 64 [00:02:25.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:26.000] Files (2) -Info 66 [00:02:29.000] ----------------------------------------------- -Info 66 [00:02:30.000] Open files: -Info 66 [00:02:31.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:32.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 64 [00:02:27.000] ----------------------------------------------- +Info 64 [00:02:28.000] Open files: +Info 64 [00:02:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 64 [00:02:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1143,11 +1141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:33.000] response: +Info 64 [00:02:31.000] response: { "responseRequired": false } -Info 67 [00:02:34.000] request: +Info 65 [00:02:32.000] request: { "seq": 0, "type": "request", @@ -1186,23 +1184,23 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [00:02:36.000] Search path: /user/username/projects/myproject/random -Info 70 [00:02:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [00:02:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 72 [00:02:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 72 [00:02:40.000] Files (2) +Info 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 +Info 69 [00:02:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 70 [00:02:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 70 [00:02:38.000] Files (2) -Info 72 [00:02:41.000] ----------------------------------------------- -Info 72 [00:02:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 72 [00:02:43.000] Files (2) +Info 70 [00:02:39.000] ----------------------------------------------- +Info 70 [00:02:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 70 [00:02:41.000] Files (2) -Info 72 [00:02:44.000] ----------------------------------------------- -Info 72 [00:02:45.000] Open files: -Info 72 [00:02:46.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 72 [00:02:47.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [00:02:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 72 [00:02:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 70 [00:02:42.000] ----------------------------------------------- +Info 70 [00:02:43.000] Open files: +Info 70 [00:02:44.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 70 [00:02:45.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 70 [00:02:46.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 70 [00:02:47.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1229,11 +1227,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:50.000] response: +Info 70 [00:02:48.000] response: { "responseRequired": false } -Info 73 [00:02:51.000] request: +Info 71 [00:02:49.000] request: { "seq": 0, "type": "request", @@ -1268,18 +1266,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 75 [00:02:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 75 [00:02:54.000] Files (2) +Info 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) -Info 75 [00:02:55.000] ----------------------------------------------- -Info 75 [00:02:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 75 [00:02:57.000] Files (2) +Info 73 [00:02:53.000] ----------------------------------------------- +Info 73 [00:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 73 [00:02:55.000] Files (2) -Info 75 [00:02:58.000] ----------------------------------------------- -Info 75 [00:02:59.000] Open files: -Info 75 [00:03:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 75 [00:03:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 73 [00:02:56.000] ----------------------------------------------- +Info 73 [00:02:57.000] Open files: +Info 73 [00:02:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 73 [00:02:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1308,11 +1306,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 75 [00:03:02.000] response: +Info 73 [00:03:00.000] response: { "responseRequired": false } -Info 76 [00:03:03.000] request: +Info 74 [00:03:01.000] request: { "seq": 0, "type": "request", @@ -1349,16 +1347,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 78 [00:03:05.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 78 [00:03:06.000] Files (2) +Info 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) -Info 78 [00:03:07.000] ----------------------------------------------- -Info 78 [00:03:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 78 [00:03:09.000] Files (2) +Info 76 [00:03:05.000] ----------------------------------------------- +Info 76 [00:03:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 76 [00:03:07.000] Files (2) -Info 78 [00:03:10.000] ----------------------------------------------- -Info 78 [00:03:11.000] Open files: +Info 76 [00:03:08.000] ----------------------------------------------- +Info 76 [00:03:09.000] Open files: After request PolledWatches:: @@ -1389,11 +1387,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [00:03:12.000] response: +Info 76 [00:03:10.000] response: { "responseRequired": false } -Info 79 [00:03:13.000] request: +Info 77 [00:03:11.000] request: { "seq": 0, "type": "request", @@ -1432,12 +1430,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 81 [00:03:15.000] Search path: /user/username/projects/myproject/random -Info 82 [00:03:16.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 83 [00:03:17.000] `remove Project:: -Info 84 [00:03:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 85 [00:03:19.000] Files (2) +Info 78 [00:03:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 79 [00:03:13.000] Search path: /user/username/projects/myproject/random +Info 80 [00:03:14.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 81 [00:03:15.000] `remove Project:: +Info 82 [00:03:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 83 [00:03:17.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1447,23 +1445,23 @@ Info 85 [00:03:19.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 86 [00:03:20.000] ----------------------------------------------- -Info 87 [00:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 88 [00:03:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 89 [00:03:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 90 [00:03:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 91 [00:03:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 92 [00:03:26.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 93 [00:03:27.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 94 [00:03:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 95 [00:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 96 [00:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [00:03:31.000] Files (2) - -Info 96 [00:03:32.000] ----------------------------------------------- -Info 96 [00:03:33.000] Open files: -Info 96 [00:03:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [00:03:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 84 [00:03:18.000] ----------------------------------------------- +Info 85 [00:03:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 86 [00:03:20.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 87 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 88 [00:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 89 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 90 [00:03:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 91 [00:03:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 92 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 93 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 94 [00:03:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 94 [00:03:29.000] Files (2) + +Info 94 [00:03:30.000] ----------------------------------------------- +Info 94 [00:03:31.000] Open files: +Info 94 [00:03:32.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 94 [00:03:33.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1482,7 +1480,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:36.000] response: +Info 94 [00:03:34.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dts-not-present.js index a0f325eeafbc5..1e909682e7a59 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 @@ -209,16 +209,15 @@ Info 6 [00:01:07.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:19.000] Files (2) +Info 9 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -228,16 +227,16 @@ Info 18 [00:01:19.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:20.000] ----------------------------------------------- -Info 20 [00:01:21.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:22.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:24.000] Files (2) +Info 18 [00:01:19.000] ----------------------------------------------- +Info 19 [00:01:20.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:23.000] Files (2) -Info 22 [00:01:25.000] ----------------------------------------------- -Info 22 [00:01:26.000] Open files: -Info 22 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:28.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:24.000] ----------------------------------------------- +Info 21 [00:01:25.000] Open files: +Info 21 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -256,11 +255,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:29.000] response: +Info 21 [00:01:28.000] response: { "responseRequired": false } -Info 23 [00:01:30.000] request: +Info 22 [00:01:29.000] request: { "seq": 0, "type": "request", @@ -287,11 +286,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:31.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:33.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:35.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -299,17 +298,16 @@ Info 28 [00:01:35.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:46.000] Files (2) +Info 28 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:37.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:44.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -319,20 +317,20 @@ Info 39 [00:01:46.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:47.000] ----------------------------------------------- -Info 41 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:49.000] Files (2) +Info 38 [00:01:45.000] ----------------------------------------------- +Info 39 [00:01:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:47.000] Files (2) -Info 41 [00:01:50.000] ----------------------------------------------- -Info 41 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:52.000] Files (2) +Info 39 [00:01:48.000] ----------------------------------------------- +Info 39 [00:01:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:50.000] Files (2) -Info 41 [00:01:53.000] ----------------------------------------------- -Info 41 [00:01:54.000] Open files: -Info 41 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:51.000] ----------------------------------------------- +Info 39 [00:01:52.000] Open files: +Info 39 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:54.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -357,11 +355,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:01:59.000] response: +Info 39 [00:01:57.000] response: { "responseRequired": false } -Info 42 [00:02:00.000] request: +Info 40 [00:01:58.000] request: { "command": "rename", "arguments": { @@ -396,7 +394,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +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 PolledWatches:: @@ -423,7 +421,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [00:02:02.000] response: +Info 42 [00:02:00.000] response: { "response": { "info": { @@ -471,7 +469,7 @@ Info 44 [00:02:02.000] response: }, "responseRequired": true } -Info 45 [00:02:03.000] request: +Info 43 [00:02:01.000] request: { "command": "rename", "arguments": { @@ -534,7 +532,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [00:02:04.000] response: +Info 44 [00:02:02.000] response: { "response": { "info": { @@ -582,7 +580,7 @@ Info 46 [00:02:04.000] response: }, "responseRequired": true } -Info 47 [00:02:05.000] request: +Info 45 [00:02:03.000] request: { "command": "rename", "arguments": { @@ -645,7 +643,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:06.000] response: +Info 46 [00:02:04.000] response: { "response": { "info": { @@ -693,7 +691,7 @@ Info 48 [00:02:06.000] response: }, "responseRequired": true } -Info 49 [00:02:07.000] request: +Info 47 [00:02:05.000] request: { "command": "rename", "arguments": { @@ -756,7 +754,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:08.000] response: +Info 48 [00:02:06.000] response: { "response": { "info": { @@ -804,7 +802,7 @@ Info 50 [00:02:08.000] response: }, "responseRequired": true } -Info 51 [00:02:09.000] request: +Info 49 [00:02:07.000] request: { "command": "rename", "arguments": { @@ -867,7 +865,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:10.000] response: +Info 50 [00:02:08.000] response: { "response": { "info": { @@ -915,7 +913,7 @@ Info 52 [00:02:10.000] response: }, "responseRequired": true } -Info 53 [00:02:11.000] request: +Info 51 [00:02:09.000] request: { "seq": 0, "type": "request", @@ -950,18 +948,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 55 [00:02:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [00:02:14.000] Files (2) +Info 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) -Info 55 [00:02:15.000] ----------------------------------------------- -Info 55 [00:02:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 55 [00:02:17.000] Files (2) +Info 53 [00:02:13.000] ----------------------------------------------- +Info 53 [00:02:14.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 53 [00:02:15.000] Files (2) -Info 55 [00:02:18.000] ----------------------------------------------- -Info 55 [00:02:19.000] Open files: -Info 55 [00:02:20.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 55 [00:02:21.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:16.000] ----------------------------------------------- +Info 53 [00:02:17.000] Open files: +Info 53 [00:02:18.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 53 [00:02:19.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -990,11 +988,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:22.000] response: +Info 53 [00:02:20.000] response: { "responseRequired": false } -Info 56 [00:02:23.000] request: +Info 54 [00:02:21.000] request: { "seq": 0, "type": "request", @@ -1031,22 +1029,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 58 [00:02:25.000] Search path: /user/username/projects/myproject/random -Info 59 [00:02:26.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 60 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 60 [00:02:28.000] Files (2) +Info 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 +Info 58 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 58 [00:02:26.000] Files (2) -Info 60 [00:02:29.000] ----------------------------------------------- -Info 60 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 60 [00:02:31.000] Files (2) +Info 58 [00:02:27.000] ----------------------------------------------- +Info 58 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 58 [00:02:29.000] Files (2) -Info 60 [00:02:32.000] ----------------------------------------------- -Info 60 [00:02:33.000] Open files: -Info 60 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 60 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 60 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 60 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 58 [00:02:30.000] ----------------------------------------------- +Info 58 [00:02:31.000] Open files: +Info 58 [00:02:32.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 58 [00:02:33.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 58 [00:02:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 58 [00:02:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1073,11 +1071,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:38.000] response: +Info 58 [00:02:36.000] response: { "responseRequired": false } -Info 61 [00:02:39.000] request: +Info 59 [00:02:37.000] request: { "seq": 0, "type": "request", @@ -1112,18 +1110,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 63 [00:02:41.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 63 [00:02:42.000] Files (2) +Info 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) -Info 63 [00:02:43.000] ----------------------------------------------- -Info 63 [00:02:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:45.000] Files (2) +Info 61 [00:02:41.000] ----------------------------------------------- +Info 61 [00:02:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:43.000] Files (2) -Info 63 [00:02:46.000] ----------------------------------------------- -Info 63 [00:02:47.000] Open files: -Info 63 [00:02:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 63 [00:02:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:44.000] ----------------------------------------------- +Info 61 [00:02:45.000] Open files: +Info 61 [00:02:46.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 61 [00:02:47.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1152,11 +1150,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:50.000] response: +Info 61 [00:02:48.000] response: { "responseRequired": false } -Info 64 [00:02:51.000] request: +Info 62 [00:02:49.000] request: { "seq": 0, "type": "request", @@ -1193,16 +1191,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [00:02:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:54.000] Files (2) +Info 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) -Info 66 [00:02:55.000] ----------------------------------------------- -Info 66 [00:02:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:57.000] Files (2) +Info 64 [00:02:53.000] ----------------------------------------------- +Info 64 [00:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:55.000] Files (2) -Info 66 [00:02:58.000] ----------------------------------------------- -Info 66 [00:02:59.000] Open files: +Info 64 [00:02:56.000] ----------------------------------------------- +Info 64 [00:02:57.000] Open files: After request PolledWatches:: @@ -1233,11 +1231,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:03:00.000] response: +Info 64 [00:02:58.000] response: { "responseRequired": false } -Info 67 [00:03:01.000] request: +Info 65 [00:02:59.000] request: { "seq": 0, "type": "request", @@ -1276,12 +1274,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:03:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [00:03:03.000] Search path: /user/username/projects/myproject/random -Info 70 [00:03:04.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [00:03:05.000] `remove Project:: -Info 72 [00:03:06.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 73 [00:03:07.000] Files (2) +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 +Info 69 [00:03:03.000] `remove Project:: +Info 70 [00:03:04.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 71 [00:03:05.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1291,23 +1289,23 @@ Info 73 [00:03:07.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 74 [00:03:08.000] ----------------------------------------------- -Info 75 [00:03:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 76 [00:03:10.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 77 [00:03:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 78 [00:03:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 79 [00:03:13.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 80 [00:03:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 81 [00:03:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 82 [00:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 83 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 84 [00:03:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 84 [00:03:19.000] Files (2) - -Info 84 [00:03:20.000] ----------------------------------------------- -Info 84 [00:03:21.000] Open files: -Info 84 [00:03:22.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 84 [00:03:23.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:03:06.000] ----------------------------------------------- +Info 73 [00:03:07.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 74 [00:03:08.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 75 [00:03:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 76 [00:03:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 77 [00:03:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 78 [00:03:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 79 [00:03:13.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 80 [00:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 81 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 82 [00:03:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 82 [00:03:17.000] Files (2) + +Info 82 [00:03:18.000] ----------------------------------------------- +Info 82 [00:03:19.000] Open files: +Info 82 [00:03:20.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 82 [00:03:21.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1326,7 +1324,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:03:24.000] response: +Info 82 [00:03:22.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js index 81249a7a8009d..32efae59ae9d0 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 @@ -217,16 +217,15 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:18.000] Files (2) +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:17.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:19.000] ----------------------------------------------- -Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:23.000] Files (2) +Info 18 [00:01:18.000] ----------------------------------------------- +Info 19 [00:01:19.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:20.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:22.000] Files (2) -Info 22 [00:01:24.000] ----------------------------------------------- -Info 22 [00:01:25.000] Open files: -Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:23.000] ----------------------------------------------- +Info 21 [00:01:24.000] Open files: +Info 21 [00:01:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:28.000] response: +Info 21 [00:01:27.000] response: { "responseRequired": false } -Info 23 [00:01:29.000] request: +Info 22 [00:01:28.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:33.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:45.000] Files (2) +Info 28 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:43.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:46.000] ----------------------------------------------- -Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:48.000] Files (2) +Info 38 [00:01:44.000] ----------------------------------------------- +Info 39 [00:01:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:46.000] Files (2) -Info 41 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 39 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Open files: -Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Open files: +Info 39 [00:01:52.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:53.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:01:58.000] response: +Info 39 [00:01:56.000] response: { "responseRequired": false } -Info 42 [00:01:59.000] request: +Info 40 [00:01:57.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:02.000] response: +Info 43 [00:02:00.000] response: { "response": { "info": { @@ -482,10 +480,10 @@ Info 45 [00:02:02.000] response: }, "responseRequired": true } -Info 46 [00:02:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [00:02:07.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:02:08.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [00:02:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 44 [00:02:04.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 45 [00:02:05.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:02:06.000] Scheduled: *ensureProjectForOpenFiles* +Info 47 [00:02:07.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts.map] {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} @@ -517,38 +515,38 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:10.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 51 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [00:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 53 [00:02:13.000] Running: *ensureProjectForOpenFiles* -Info 54 [00:02:14.000] Before ensureProjectForOpenFiles: -Info 55 [00:02:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [00:02:16.000] Files (2) - -Info 55 [00:02:17.000] ----------------------------------------------- -Info 55 [00:02:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 55 [00:02:19.000] Files (2) - -Info 55 [00:02:20.000] ----------------------------------------------- -Info 55 [00:02:21.000] Open files: -Info 55 [00:02:22.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 55 [00:02:23.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 55 [00:02:24.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 55 [00:02:25.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 55 [00:02:26.000] After ensureProjectForOpenFiles: -Info 56 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [00:02:28.000] Files (2) - -Info 56 [00:02:29.000] ----------------------------------------------- -Info 56 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [00:02:31.000] Files (2) - -Info 56 [00:02:32.000] ----------------------------------------------- -Info 56 [00:02:33.000] Open files: -Info 56 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 56 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 56 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 51 [00:02:11.000] Running: *ensureProjectForOpenFiles* +Info 52 [00:02:12.000] Before ensureProjectForOpenFiles: +Info 53 [00:02:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 53 [00:02:14.000] Files (2) + +Info 53 [00:02:15.000] ----------------------------------------------- +Info 53 [00:02:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 53 [00:02:17.000] Files (2) + +Info 53 [00:02:18.000] ----------------------------------------------- +Info 53 [00:02:19.000] Open files: +Info 53 [00:02:20.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 53 [00:02:21.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:22.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 53 [00:02:23.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 53 [00:02:24.000] After ensureProjectForOpenFiles: +Info 54 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 54 [00:02:26.000] Files (2) + +Info 54 [00:02:27.000] ----------------------------------------------- +Info 54 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 54 [00:02:29.000] Files (2) + +Info 54 [00:02:30.000] ----------------------------------------------- +Info 54 [00:02:31.000] Open files: +Info 54 [00:02:32.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 54 [00:02:33.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 54 [00:02:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 54 [00:02:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -577,7 +575,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:38.000] request: +Info 54 [00:02:36.000] request: { "command": "rename", "arguments": { @@ -644,7 +642,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:39.000] response: +Info 55 [00:02:37.000] response: { "response": { "info": { @@ -692,7 +690,7 @@ Info 57 [00:02:39.000] response: }, "responseRequired": true } -Info 58 [00:02:40.000] request: +Info 56 [00:02:38.000] request: { "command": "rename", "arguments": { @@ -759,7 +757,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:41.000] response: +Info 57 [00:02:39.000] response: { "response": { "info": { @@ -807,7 +805,7 @@ Info 59 [00:02:41.000] response: }, "responseRequired": true } -Info 60 [00:02:42.000] request: +Info 58 [00:02:40.000] request: { "command": "rename", "arguments": { @@ -874,7 +872,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:43.000] response: +Info 59 [00:02:41.000] response: { "response": { "info": { @@ -922,7 +920,7 @@ Info 61 [00:02:43.000] response: }, "responseRequired": true } -Info 62 [00:02:44.000] request: +Info 60 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -989,7 +987,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:45.000] response: +Info 61 [00:02:43.000] response: { "response": { "info": { @@ -1037,7 +1035,7 @@ Info 63 [00:02:45.000] response: }, "responseRequired": true } -Info 64 [00:02:46.000] request: +Info 62 [00:02:44.000] request: { "command": "rename", "arguments": { @@ -1104,7 +1102,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:47.000] response: +Info 63 [00:02:45.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-changes.js index e4c4f8c4aacf4..7f8c3c960d8f0 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 @@ -217,16 +217,15 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:18.000] Files (2) +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:17.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:19.000] ----------------------------------------------- -Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:23.000] Files (2) +Info 18 [00:01:18.000] ----------------------------------------------- +Info 19 [00:01:19.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:20.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:22.000] Files (2) -Info 22 [00:01:24.000] ----------------------------------------------- -Info 22 [00:01:25.000] Open files: -Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:23.000] ----------------------------------------------- +Info 21 [00:01:24.000] Open files: +Info 21 [00:01:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:28.000] response: +Info 21 [00:01:27.000] response: { "responseRequired": false } -Info 23 [00:01:29.000] request: +Info 22 [00:01:28.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:33.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:45.000] Files (2) +Info 28 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:43.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:46.000] ----------------------------------------------- -Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:48.000] Files (2) +Info 38 [00:01:44.000] ----------------------------------------------- +Info 39 [00:01:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:46.000] Files (2) -Info 41 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 39 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Open files: -Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Open files: +Info 39 [00:01:52.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:53.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:01:58.000] response: +Info 39 [00:01:56.000] response: { "responseRequired": false } -Info 42 [00:01:59.000] request: +Info 40 [00:01:57.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:02.000] response: +Info 43 [00:02:00.000] response: { "response": { "info": { @@ -482,11 +480,11 @@ Info 45 [00:02:02.000] response: }, "responseRequired": true } -Info 46 [00:02:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [00:02:07.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:02:08.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [00:02:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 50 [00:02:10.000] request: +Info 44 [00:02:04.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 45 [00:02:05.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:02:06.000] Scheduled: *ensureProjectForOpenFiles* +Info 47 [00:02:07.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 48 [00:02:08.000] request: { "command": "rename", "arguments": { @@ -528,8 +526,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [00:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 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:: @@ -558,7 +556,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [00:02:13.000] response: +Info 51 [00:02:11.000] response: { "response": { "info": { @@ -606,7 +604,7 @@ Info 53 [00:02:13.000] response: }, "responseRequired": true } -Info 54 [00:02:14.000] request: +Info 52 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -673,7 +671,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:15.000] response: +Info 53 [00:02:13.000] response: { "response": { "info": { @@ -721,7 +719,7 @@ Info 55 [00:02:15.000] response: }, "responseRequired": true } -Info 56 [00:02:16.000] request: +Info 54 [00:02:14.000] request: { "command": "rename", "arguments": { @@ -788,7 +786,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:17.000] response: +Info 55 [00:02:15.000] response: { "response": { "info": { @@ -836,7 +834,7 @@ Info 57 [00:02:17.000] response: }, "responseRequired": true } -Info 58 [00:02:18.000] request: +Info 56 [00:02:16.000] request: { "command": "rename", "arguments": { @@ -903,7 +901,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:19.000] response: +Info 57 [00:02:17.000] response: { "response": { "info": { @@ -951,7 +949,7 @@ Info 59 [00:02:19.000] response: }, "responseRequired": true } -Info 60 [00:02:20.000] request: +Info 58 [00:02:18.000] request: { "command": "rename", "arguments": { @@ -1018,7 +1016,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:21.000] response: +Info 59 [00:02:19.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-created.js index 27b32d12f1245..311ac2bc50347 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 @@ -214,16 +214,15 @@ Info 6 [00:01:07.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:19.000] Files (2) +Info 9 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -233,16 +232,16 @@ Info 18 [00:01:19.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:20.000] ----------------------------------------------- -Info 20 [00:01:21.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:22.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:24.000] Files (2) +Info 18 [00:01:19.000] ----------------------------------------------- +Info 19 [00:01:20.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:23.000] Files (2) -Info 22 [00:01:25.000] ----------------------------------------------- -Info 22 [00:01:26.000] Open files: -Info 22 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:28.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:24.000] ----------------------------------------------- +Info 21 [00:01:25.000] Open files: +Info 21 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -261,11 +260,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:29.000] response: +Info 21 [00:01:28.000] response: { "responseRequired": false } -Info 23 [00:01:30.000] request: +Info 22 [00:01:29.000] request: { "seq": 0, "type": "request", @@ -292,11 +291,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:31.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:33.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:35.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -304,17 +303,16 @@ Info 28 [00:01:35.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:46.000] Files (2) +Info 28 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:37.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:44.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -324,20 +322,20 @@ Info 39 [00:01:46.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:47.000] ----------------------------------------------- -Info 41 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:49.000] Files (2) +Info 38 [00:01:45.000] ----------------------------------------------- +Info 39 [00:01:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:47.000] Files (2) -Info 41 [00:01:50.000] ----------------------------------------------- -Info 41 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:52.000] Files (2) +Info 39 [00:01:48.000] ----------------------------------------------- +Info 39 [00:01:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:50.000] Files (2) -Info 41 [00:01:53.000] ----------------------------------------------- -Info 41 [00:01:54.000] Open files: -Info 41 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:51.000] ----------------------------------------------- +Info 39 [00:01:52.000] Open files: +Info 39 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:54.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -362,11 +360,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:01:59.000] response: +Info 39 [00:01:57.000] response: { "responseRequired": false } -Info 42 [00:02:00.000] request: +Info 40 [00:01:58.000] request: { "command": "rename", "arguments": { @@ -401,8 +399,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +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 PolledWatches:: @@ -431,7 +429,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:03.000] response: +Info 43 [00:02:01.000] response: { "response": { "info": { @@ -479,12 +477,12 @@ Info 45 [00:02:03.000] response: }, "responseRequired": true } -Info 46 [00:02:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 47 [00:02:07.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:02:08.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [00:02:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 50 [00:02:10.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 51 [00:02:11.000] request: +Info 44 [00:02:04.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 45 [00:02:05.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:02:06.000] Scheduled: *ensureProjectForOpenFiles* +Info 47 [00:02:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 48 [00:02:08.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 49 [00:02:09.000] request: { "command": "rename", "arguments": { @@ -524,9 +522,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 53 [00:02:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 54 [00:02:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 50 [00:02:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 51 [00:02:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 52 [00:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -555,7 +553,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:15.000] response: +Info 53 [00:02:13.000] response: { "response": { "info": { @@ -603,7 +601,7 @@ Info 55 [00:02:15.000] response: }, "responseRequired": true } -Info 56 [00:02:16.000] request: +Info 54 [00:02:14.000] request: { "command": "rename", "arguments": { @@ -670,7 +668,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:17.000] response: +Info 55 [00:02:15.000] response: { "response": { "info": { @@ -718,7 +716,7 @@ Info 57 [00:02:17.000] response: }, "responseRequired": true } -Info 58 [00:02:18.000] request: +Info 56 [00:02:16.000] request: { "command": "rename", "arguments": { @@ -785,7 +783,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:19.000] response: +Info 57 [00:02:17.000] response: { "response": { "info": { @@ -833,7 +831,7 @@ Info 59 [00:02:19.000] response: }, "responseRequired": true } -Info 60 [00:02:20.000] request: +Info 58 [00:02:18.000] request: { "command": "rename", "arguments": { @@ -900,7 +898,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:21.000] response: +Info 59 [00:02:19.000] response: { "response": { "info": { @@ -948,7 +946,7 @@ Info 61 [00:02:21.000] response: }, "responseRequired": true } -Info 62 [00:02:22.000] request: +Info 60 [00:02:20.000] request: { "command": "rename", "arguments": { @@ -1015,7 +1013,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:23.000] response: +Info 61 [00:02:21.000] response: { "response": { "info": { @@ -1063,7 +1061,7 @@ Info 63 [00:02:23.000] response: }, "responseRequired": true } -Info 64 [00:02:24.000] request: +Info 62 [00:02:22.000] request: { "seq": 0, "type": "request", @@ -1100,18 +1098,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:27.000] Files (2) +Info 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) -Info 66 [00:02:28.000] ----------------------------------------------- -Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:30.000] Files (2) +Info 64 [00:02:26.000] ----------------------------------------------- +Info 64 [00:02:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:28.000] Files (2) -Info 66 [00:02:31.000] ----------------------------------------------- -Info 66 [00:02:32.000] Open files: -Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 64 [00:02:29.000] ----------------------------------------------- +Info 64 [00:02:30.000] Open files: +Info 64 [00:02:31.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 64 [00:02:32.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1142,11 +1140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:35.000] response: +Info 64 [00:02:33.000] response: { "responseRequired": false } -Info 67 [00:02:36.000] request: +Info 65 [00:02:34.000] request: { "seq": 0, "type": "request", @@ -1185,22 +1183,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [00:02:38.000] Search path: /user/username/projects/myproject/random -Info 70 [00:02:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [00:02:40.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 71 [00:02:41.000] Files (2) +Info 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 +Info 69 [00:02:38.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 69 [00:02:39.000] Files (2) -Info 71 [00:02:42.000] ----------------------------------------------- -Info 71 [00:02:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [00:02:44.000] Files (2) +Info 69 [00:02:40.000] ----------------------------------------------- +Info 69 [00:02:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 69 [00:02:42.000] Files (2) -Info 71 [00:02:45.000] ----------------------------------------------- -Info 71 [00:02:46.000] Open files: -Info 71 [00:02:47.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 71 [00:02:48.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 71 [00:02:49.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 71 [00:02:50.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 69 [00:02:43.000] ----------------------------------------------- +Info 69 [00:02:44.000] Open files: +Info 69 [00:02:45.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 69 [00:02:46.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 69 [00:02:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 69 [00:02:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1229,11 +1227,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [00:02:51.000] response: +Info 69 [00:02:49.000] response: { "responseRequired": false } -Info 72 [00:02:52.000] request: +Info 70 [00:02:50.000] request: { "seq": 0, "type": "request", @@ -1270,18 +1268,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [00:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 74 [00:02:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [00:02:55.000] Files (2) +Info 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) -Info 74 [00:02:56.000] ----------------------------------------------- -Info 74 [00:02:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [00:02:58.000] Files (2) +Info 72 [00:02:54.000] ----------------------------------------------- +Info 72 [00:02:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 72 [00:02:56.000] Files (2) -Info 74 [00:02:59.000] ----------------------------------------------- -Info 74 [00:03:00.000] Open files: -Info 74 [00:03:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [00:03:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:02:57.000] ----------------------------------------------- +Info 72 [00:02:58.000] Open files: +Info 72 [00:02:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 72 [00:03:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1312,11 +1310,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:03:03.000] response: +Info 72 [00:03:01.000] response: { "responseRequired": false } -Info 75 [00:03:04.000] request: +Info 73 [00:03:02.000] request: { "seq": 0, "type": "request", @@ -1355,16 +1353,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 77 [00:03:06.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 77 [00:03:07.000] Files (2) +Info 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) -Info 77 [00:03:08.000] ----------------------------------------------- -Info 77 [00:03:09.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [00:03:10.000] Files (2) +Info 75 [00:03:06.000] ----------------------------------------------- +Info 75 [00:03:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 75 [00:03:08.000] Files (2) -Info 77 [00:03:11.000] ----------------------------------------------- -Info 77 [00:03:12.000] Open files: +Info 75 [00:03:09.000] ----------------------------------------------- +Info 75 [00:03:10.000] Open files: After request PolledWatches:: @@ -1397,11 +1395,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:03:13.000] response: +Info 75 [00:03:11.000] response: { "responseRequired": false } -Info 78 [00:03:14.000] request: +Info 76 [00:03:12.000] request: { "seq": 0, "type": "request", @@ -1442,12 +1440,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 80 [00:03:16.000] Search path: /user/username/projects/myproject/random -Info 81 [00:03:17.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 82 [00:03:18.000] `remove Project:: -Info 83 [00:03:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 84 [00:03:20.000] Files (2) +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 +Info 80 [00:03:16.000] `remove Project:: +Info 81 [00:03:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 82 [00:03:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1457,24 +1455,24 @@ Info 84 [00:03:20.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 85 [00:03:21.000] ----------------------------------------------- -Info 86 [00:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 87 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 88 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 89 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 90 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 91 [00:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 92 [00:03:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 93 [00:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 94 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 95 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 96 [00:03:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [00:03:33.000] Files (2) - -Info 96 [00:03:34.000] ----------------------------------------------- -Info 96 [00:03:35.000] Open files: -Info 96 [00:03:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [00:03:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 83 [00:03:19.000] ----------------------------------------------- +Info 84 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 85 [00:03:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 86 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 87 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 88 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 89 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 90 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 91 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 92 [00:03:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 93 [00:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 94 [00:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 94 [00:03:31.000] Files (2) + +Info 94 [00:03:32.000] ----------------------------------------------- +Info 94 [00:03:33.000] Open files: +Info 94 [00:03:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 94 [00:03:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1493,7 +1491,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:38.000] response: +Info 94 [00:03:36.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-deleted.js index 2ac3e7a173a26..531eb41ad658c 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 @@ -217,16 +217,15 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:18.000] Files (2) +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:17.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:19.000] ----------------------------------------------- -Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:23.000] Files (2) +Info 18 [00:01:18.000] ----------------------------------------------- +Info 19 [00:01:19.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:20.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:22.000] Files (2) -Info 22 [00:01:24.000] ----------------------------------------------- -Info 22 [00:01:25.000] Open files: -Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:23.000] ----------------------------------------------- +Info 21 [00:01:24.000] Open files: +Info 21 [00:01:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:28.000] response: +Info 21 [00:01:27.000] response: { "responseRequired": false } -Info 23 [00:01:29.000] request: +Info 22 [00:01:28.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:33.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:45.000] Files (2) +Info 28 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:43.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:46.000] ----------------------------------------------- -Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:48.000] Files (2) +Info 38 [00:01:44.000] ----------------------------------------------- +Info 39 [00:01:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:46.000] Files (2) -Info 41 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 39 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Open files: -Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Open files: +Info 39 [00:01:52.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:53.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:01:58.000] response: +Info 39 [00:01:56.000] response: { "responseRequired": false } -Info 42 [00:01:59.000] request: +Info 40 [00:01:57.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:02.000] response: +Info 43 [00:02:00.000] response: { "response": { "info": { @@ -482,12 +480,12 @@ Info 45 [00:02:02.000] response: }, "responseRequired": true } -Info 46 [00:02:04.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [00:02:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 48 [00:02:06.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 49 [00:02:07.000] Scheduled: *ensureProjectForOpenFiles* -Info 50 [00:02:08.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [00:02:09.000] request: +Info 44 [00:02:02.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 45 [00:02:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 46 [00:02:04.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:02:05.000] Scheduled: *ensureProjectForOpenFiles* +Info 48 [00:02:06.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 49 [00:02:07.000] request: { "command": "rename", "arguments": { @@ -525,9 +523,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 53 [00:02:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 54 [00:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 50 [00:02:08.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 51 [00:02:09.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 52 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -556,7 +554,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:13.000] response: +Info 53 [00:02:11.000] response: { "response": { "info": { @@ -604,7 +602,7 @@ Info 55 [00:02:13.000] response: }, "responseRequired": true } -Info 56 [00:02:14.000] request: +Info 54 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -671,7 +669,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:15.000] response: +Info 55 [00:02:13.000] response: { "response": { "info": { @@ -719,7 +717,7 @@ Info 57 [00:02:15.000] response: }, "responseRequired": true } -Info 58 [00:02:16.000] request: +Info 56 [00:02:14.000] request: { "command": "rename", "arguments": { @@ -786,7 +784,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:17.000] response: +Info 57 [00:02:15.000] response: { "response": { "info": { @@ -834,7 +832,7 @@ Info 59 [00:02:17.000] response: }, "responseRequired": true } -Info 60 [00:02:18.000] request: +Info 58 [00:02:16.000] request: { "command": "rename", "arguments": { @@ -901,7 +899,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:19.000] response: +Info 59 [00:02:17.000] response: { "response": { "info": { @@ -949,7 +947,7 @@ Info 61 [00:02:19.000] response: }, "responseRequired": true } -Info 62 [00:02:20.000] request: +Info 60 [00:02:18.000] request: { "command": "rename", "arguments": { @@ -1016,7 +1014,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:21.000] response: +Info 61 [00:02:19.000] response: { "response": { "info": { @@ -1064,7 +1062,7 @@ Info 63 [00:02:21.000] response: }, "responseRequired": true } -Info 64 [00:02:22.000] request: +Info 62 [00:02:20.000] request: { "seq": 0, "type": "request", @@ -1101,18 +1099,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [00:02:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:25.000] Files (2) +Info 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) -Info 66 [00:02:26.000] ----------------------------------------------- -Info 66 [00:02:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:28.000] Files (2) +Info 64 [00:02:24.000] ----------------------------------------------- +Info 64 [00:02:25.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:26.000] Files (2) -Info 66 [00:02:29.000] ----------------------------------------------- -Info 66 [00:02:30.000] Open files: -Info 66 [00:02:31.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:32.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 64 [00:02:27.000] ----------------------------------------------- +Info 64 [00:02:28.000] Open files: +Info 64 [00:02:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 64 [00:02:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1143,11 +1141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:33.000] response: +Info 64 [00:02:31.000] response: { "responseRequired": false } -Info 67 [00:02:34.000] request: +Info 65 [00:02:32.000] request: { "seq": 0, "type": "request", @@ -1186,22 +1184,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [00:02:36.000] Search path: /user/username/projects/myproject/random -Info 70 [00:02:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [00:02:38.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 71 [00:02:39.000] Files (2) +Info 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 +Info 69 [00:02:36.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 69 [00:02:37.000] Files (2) -Info 71 [00:02:40.000] ----------------------------------------------- -Info 71 [00:02:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [00:02:42.000] Files (2) +Info 69 [00:02:38.000] ----------------------------------------------- +Info 69 [00:02:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 69 [00:02:40.000] Files (2) -Info 71 [00:02:43.000] ----------------------------------------------- -Info 71 [00:02:44.000] Open files: -Info 71 [00:02:45.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 71 [00:02:46.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 71 [00:02:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 71 [00:02:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 69 [00:02:41.000] ----------------------------------------------- +Info 69 [00:02:42.000] Open files: +Info 69 [00:02:43.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 69 [00:02:44.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 69 [00:02:45.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 69 [00:02:46.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1230,11 +1228,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [00:02:49.000] response: +Info 69 [00:02:47.000] response: { "responseRequired": false } -Info 72 [00:02:50.000] request: +Info 70 [00:02:48.000] request: { "seq": 0, "type": "request", @@ -1271,18 +1269,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [00:02:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 74 [00:02:52.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [00:02:53.000] Files (2) +Info 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) -Info 74 [00:02:54.000] ----------------------------------------------- -Info 74 [00:02:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [00:02:56.000] Files (2) +Info 72 [00:02:52.000] ----------------------------------------------- +Info 72 [00:02:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 72 [00:02:54.000] Files (2) -Info 74 [00:02:57.000] ----------------------------------------------- -Info 74 [00:02:58.000] Open files: -Info 74 [00:02:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [00:03:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:02:55.000] ----------------------------------------------- +Info 72 [00:02:56.000] Open files: +Info 72 [00:02:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 72 [00:02:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1313,11 +1311,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:03:01.000] response: +Info 72 [00:02:59.000] response: { "responseRequired": false } -Info 75 [00:03:02.000] request: +Info 73 [00:03:00.000] request: { "seq": 0, "type": "request", @@ -1356,16 +1354,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:03:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 77 [00:03:04.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 77 [00:03:05.000] Files (2) +Info 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) -Info 77 [00:03:06.000] ----------------------------------------------- -Info 77 [00:03:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [00:03:08.000] Files (2) +Info 75 [00:03:04.000] ----------------------------------------------- +Info 75 [00:03:05.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 75 [00:03:06.000] Files (2) -Info 77 [00:03:09.000] ----------------------------------------------- -Info 77 [00:03:10.000] Open files: +Info 75 [00:03:07.000] ----------------------------------------------- +Info 75 [00:03:08.000] Open files: After request PolledWatches:: @@ -1398,11 +1396,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:03:11.000] response: +Info 75 [00:03:09.000] response: { "responseRequired": false } -Info 78 [00:03:12.000] request: +Info 76 [00:03:10.000] request: { "seq": 0, "type": "request", @@ -1443,12 +1441,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [00:03:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 80 [00:03:14.000] Search path: /user/username/projects/myproject/random -Info 81 [00:03:15.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 82 [00:03:16.000] `remove Project:: -Info 83 [00:03:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 84 [00:03:18.000] Files (2) +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 +Info 80 [00:03:14.000] `remove Project:: +Info 81 [00:03:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 82 [00:03:16.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1458,24 +1456,24 @@ Info 84 [00:03:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 85 [00:03:19.000] ----------------------------------------------- -Info 86 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 87 [00:03:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 88 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 89 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 90 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 91 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 92 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 93 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 94 [00:03:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 95 [00:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 96 [00:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [00:03:31.000] Files (2) - -Info 96 [00:03:32.000] ----------------------------------------------- -Info 96 [00:03:33.000] Open files: -Info 96 [00:03:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [00:03:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 83 [00:03:17.000] ----------------------------------------------- +Info 84 [00:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 85 [00:03:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 86 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 87 [00:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 88 [00:03:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 89 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 90 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 91 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 92 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 93 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 94 [00:03:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 94 [00:03:29.000] Files (2) + +Info 94 [00:03:30.000] ----------------------------------------------- +Info 94 [00:03:31.000] Open files: +Info 94 [00:03:32.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 94 [00:03:33.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1494,7 +1492,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:36.000] response: +Info 94 [00:03:34.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-dtsMap-not-present.js index 9248d3fbc30f0..b76f3a65e465e 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 @@ -214,16 +214,15 @@ Info 6 [00:01:07.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:19.000] Files (2) +Info 9 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -233,16 +232,16 @@ Info 18 [00:01:19.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:20.000] ----------------------------------------------- -Info 20 [00:01:21.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:22.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:24.000] Files (2) +Info 18 [00:01:19.000] ----------------------------------------------- +Info 19 [00:01:20.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:23.000] Files (2) -Info 22 [00:01:25.000] ----------------------------------------------- -Info 22 [00:01:26.000] Open files: -Info 22 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:28.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:24.000] ----------------------------------------------- +Info 21 [00:01:25.000] Open files: +Info 21 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -261,11 +260,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:29.000] response: +Info 21 [00:01:28.000] response: { "responseRequired": false } -Info 23 [00:01:30.000] request: +Info 22 [00:01:29.000] request: { "seq": 0, "type": "request", @@ -292,11 +291,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:31.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:33.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:35.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -304,17 +303,16 @@ Info 28 [00:01:35.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:46.000] Files (2) +Info 28 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:37.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:44.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -324,20 +322,20 @@ Info 39 [00:01:46.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:47.000] ----------------------------------------------- -Info 41 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:49.000] Files (2) +Info 38 [00:01:45.000] ----------------------------------------------- +Info 39 [00:01:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:47.000] Files (2) -Info 41 [00:01:50.000] ----------------------------------------------- -Info 41 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:52.000] Files (2) +Info 39 [00:01:48.000] ----------------------------------------------- +Info 39 [00:01:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:50.000] Files (2) -Info 41 [00:01:53.000] ----------------------------------------------- -Info 41 [00:01:54.000] Open files: -Info 41 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:51.000] ----------------------------------------------- +Info 39 [00:01:52.000] Open files: +Info 39 [00:01:53.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:54.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -362,11 +360,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:01:59.000] response: +Info 39 [00:01:57.000] response: { "responseRequired": false } -Info 42 [00:02:00.000] request: +Info 40 [00:01:58.000] request: { "command": "rename", "arguments": { @@ -401,8 +399,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +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 PolledWatches:: @@ -431,7 +429,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:03.000] response: +Info 43 [00:02:01.000] response: { "response": { "info": { @@ -479,7 +477,7 @@ Info 45 [00:02:03.000] response: }, "responseRequired": true } -Info 46 [00:02:04.000] request: +Info 44 [00:02:02.000] request: { "command": "rename", "arguments": { @@ -546,7 +544,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [00:02:05.000] response: +Info 45 [00:02:03.000] response: { "response": { "info": { @@ -594,7 +592,7 @@ Info 47 [00:02:05.000] response: }, "responseRequired": true } -Info 48 [00:02:06.000] request: +Info 46 [00:02:04.000] request: { "command": "rename", "arguments": { @@ -661,7 +659,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [00:02:07.000] response: +Info 47 [00:02:05.000] response: { "response": { "info": { @@ -709,7 +707,7 @@ Info 49 [00:02:07.000] response: }, "responseRequired": true } -Info 50 [00:02:08.000] request: +Info 48 [00:02:06.000] request: { "command": "rename", "arguments": { @@ -776,7 +774,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [00:02:09.000] response: +Info 49 [00:02:07.000] response: { "response": { "info": { @@ -824,7 +822,7 @@ Info 51 [00:02:09.000] response: }, "responseRequired": true } -Info 52 [00:02:10.000] request: +Info 50 [00:02:08.000] request: { "command": "rename", "arguments": { @@ -891,7 +889,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [00:02:11.000] response: +Info 51 [00:02:09.000] response: { "response": { "info": { @@ -939,7 +937,7 @@ Info 53 [00:02:11.000] response: }, "responseRequired": true } -Info 54 [00:02:12.000] request: +Info 52 [00:02:10.000] request: { "seq": 0, "type": "request", @@ -976,18 +974,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 56 [00:02:14.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [00:02:15.000] Files (2) +Info 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) -Info 56 [00:02:16.000] ----------------------------------------------- -Info 56 [00:02:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [00:02:18.000] Files (2) +Info 54 [00:02:14.000] ----------------------------------------------- +Info 54 [00:02:15.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 54 [00:02:16.000] Files (2) -Info 56 [00:02:19.000] ----------------------------------------------- -Info 56 [00:02:20.000] Open files: -Info 56 [00:02:21.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [00:02:22.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 54 [00:02:17.000] ----------------------------------------------- +Info 54 [00:02:18.000] Open files: +Info 54 [00:02:19.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 54 [00:02:20.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1018,11 +1016,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:23.000] response: +Info 54 [00:02:21.000] response: { "responseRequired": false } -Info 57 [00:02:24.000] request: +Info 55 [00:02:22.000] request: { "seq": 0, "type": "request", @@ -1061,22 +1059,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 59 [00:02:26.000] Search path: /user/username/projects/myproject/random -Info 60 [00:02:27.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 61 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 61 [00:02:29.000] Files (2) +Info 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 +Info 59 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 59 [00:02:27.000] Files (2) -Info 61 [00:02:30.000] ----------------------------------------------- -Info 61 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [00:02:32.000] Files (2) +Info 59 [00:02:28.000] ----------------------------------------------- +Info 59 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 59 [00:02:30.000] Files (2) -Info 61 [00:02:33.000] ----------------------------------------------- -Info 61 [00:02:34.000] Open files: -Info 61 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 61 [00:02:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 61 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 61 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 59 [00:02:31.000] ----------------------------------------------- +Info 59 [00:02:32.000] Open files: +Info 59 [00:02:33.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 59 [00:02:34.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 59 [00:02:35.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 59 [00:02:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1105,11 +1103,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:39.000] response: +Info 59 [00:02:37.000] response: { "responseRequired": false } -Info 62 [00:02:40.000] request: +Info 60 [00:02:38.000] request: { "seq": 0, "type": "request", @@ -1146,18 +1144,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 64 [00:02:42.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 64 [00:02:43.000] Files (2) +Info 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) -Info 64 [00:02:44.000] ----------------------------------------------- -Info 64 [00:02:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:46.000] Files (2) +Info 62 [00:02:42.000] ----------------------------------------------- +Info 62 [00:02:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:44.000] Files (2) -Info 64 [00:02:47.000] ----------------------------------------------- -Info 64 [00:02:48.000] Open files: -Info 64 [00:02:49.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [00:02:50.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:45.000] ----------------------------------------------- +Info 62 [00:02:46.000] Open files: +Info 62 [00:02:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1188,11 +1186,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:51.000] response: +Info 62 [00:02:49.000] response: { "responseRequired": false } -Info 65 [00:02:52.000] request: +Info 63 [00:02:50.000] request: { "seq": 0, "type": "request", @@ -1231,16 +1229,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 67 [00:02:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 67 [00:02:55.000] Files (2) +Info 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) -Info 67 [00:02:56.000] ----------------------------------------------- -Info 67 [00:02:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 67 [00:02:58.000] Files (2) +Info 65 [00:02:54.000] ----------------------------------------------- +Info 65 [00:02:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:56.000] Files (2) -Info 67 [00:02:59.000] ----------------------------------------------- -Info 67 [00:03:00.000] Open files: +Info 65 [00:02:57.000] ----------------------------------------------- +Info 65 [00:02:58.000] Open files: After request PolledWatches:: @@ -1273,11 +1271,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:03:01.000] response: +Info 65 [00:02:59.000] response: { "responseRequired": false } -Info 68 [00:03:02.000] request: +Info 66 [00:03:00.000] request: { "seq": 0, "type": "request", @@ -1318,12 +1316,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:03:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 70 [00:03:04.000] Search path: /user/username/projects/myproject/random -Info 71 [00:03:05.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 72 [00:03:06.000] `remove Project:: -Info 73 [00:03:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [00:03:08.000] Files (2) +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 +Info 70 [00:03:04.000] `remove Project:: +Info 71 [00:03:05.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 72 [00:03:06.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1333,24 +1331,24 @@ Info 74 [00:03:08.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 75 [00:03:09.000] ----------------------------------------------- -Info 76 [00:03:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 77 [00:03:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 78 [00:03:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 79 [00:03:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 80 [00:03:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 81 [00:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 82 [00:03:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 83 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 84 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 85 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 86 [00:03:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 86 [00:03:21.000] Files (2) - -Info 86 [00:03:22.000] ----------------------------------------------- -Info 86 [00:03:23.000] Open files: -Info 86 [00:03:24.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 86 [00:03:25.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 73 [00:03:07.000] ----------------------------------------------- +Info 74 [00:03:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 75 [00:03:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 76 [00:03:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 77 [00:03:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 78 [00:03:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 79 [00:03:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 80 [00:03:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 81 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 82 [00:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 83 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 84 [00:03:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 84 [00:03:19.000] Files (2) + +Info 84 [00:03:20.000] ----------------------------------------------- +Info 84 [00:03:21.000] Open files: +Info 84 [00:03:22.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 84 [00:03:23.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1369,7 +1367,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:26.000] response: +Info 84 [00:03:24.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-source-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-source-changes-with-timeout-before-request.js index 6dd20b7ee7c2e..859034f99c73d 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 @@ -217,16 +217,15 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:18.000] Files (2) +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:17.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:19.000] ----------------------------------------------- -Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:23.000] Files (2) +Info 18 [00:01:18.000] ----------------------------------------------- +Info 19 [00:01:19.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:20.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:22.000] Files (2) -Info 22 [00:01:24.000] ----------------------------------------------- -Info 22 [00:01:25.000] Open files: -Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:23.000] ----------------------------------------------- +Info 21 [00:01:24.000] Open files: +Info 21 [00:01:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:28.000] response: +Info 21 [00:01:27.000] response: { "responseRequired": false } -Info 23 [00:01:29.000] request: +Info 22 [00:01:28.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:33.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:45.000] Files (2) +Info 28 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:43.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:46.000] ----------------------------------------------- -Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:48.000] Files (2) +Info 38 [00:01:44.000] ----------------------------------------------- +Info 39 [00:01:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:46.000] Files (2) -Info 41 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 39 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Open files: -Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Open files: +Info 39 [00:01:52.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:53.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:01:58.000] response: +Info 39 [00:01:56.000] response: { "responseRequired": false } -Info 42 [00:01:59.000] request: +Info 40 [00:01:57.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:02.000] response: +Info 43 [00:02:00.000] response: { "response": { "info": { @@ -482,7 +480,7 @@ Info 45 [00:02:02.000] response: }, "responseRequired": true } -Info 46 [00:02:03.000] request: +Info 44 [00:02:01.000] request: { "command": "change", "arguments": { @@ -552,7 +550,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [00:02:04.000] response: +Info 45 [00:02:02.000] response: { "responseRequired": false } @@ -612,7 +610,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:05.000] request: +Info 46 [00:02:03.000] request: { "command": "rename", "arguments": { @@ -651,9 +649,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [00:02:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 50 [00:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 51 [00:02:08.000] Different program with same set of files +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:: @@ -682,7 +680,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:09.000] response: +Info 50 [00:02:07.000] response: { "response": { "info": { @@ -730,7 +728,7 @@ Info 52 [00:02:09.000] response: }, "responseRequired": true } -Info 53 [00:02:10.000] request: +Info 51 [00:02:08.000] request: { "command": "rename", "arguments": { @@ -797,7 +795,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:11.000] response: +Info 52 [00:02:09.000] response: { "response": { "info": { @@ -845,7 +843,7 @@ Info 54 [00:02:11.000] response: }, "responseRequired": true } -Info 55 [00:02:12.000] request: +Info 53 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -912,7 +910,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:13.000] response: +Info 54 [00:02:11.000] response: { "response": { "info": { @@ -960,7 +958,7 @@ Info 56 [00:02:13.000] response: }, "responseRequired": true } -Info 57 [00:02:14.000] request: +Info 55 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -1027,7 +1025,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:15.000] response: +Info 56 [00:02:13.000] response: { "response": { "info": { @@ -1075,7 +1073,7 @@ Info 58 [00:02:15.000] response: }, "responseRequired": true } -Info 59 [00:02:16.000] request: +Info 57 [00:02:14.000] request: { "command": "rename", "arguments": { @@ -1142,7 +1140,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:17.000] response: +Info 58 [00:02:15.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-source-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/dependency-source-changes.js index dd9030ab5a223..9bf89423e0ade 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 @@ -217,16 +217,15 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:18.000] Files (2) +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:17.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:19.000] ----------------------------------------------- -Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:23.000] Files (2) +Info 18 [00:01:18.000] ----------------------------------------------- +Info 19 [00:01:19.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:20.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:22.000] Files (2) -Info 22 [00:01:24.000] ----------------------------------------------- -Info 22 [00:01:25.000] Open files: -Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:23.000] ----------------------------------------------- +Info 21 [00:01:24.000] Open files: +Info 21 [00:01:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:28.000] response: +Info 21 [00:01:27.000] response: { "responseRequired": false } -Info 23 [00:01:29.000] request: +Info 22 [00:01:28.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:33.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:45.000] Files (2) +Info 28 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:43.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:46.000] ----------------------------------------------- -Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:48.000] Files (2) +Info 38 [00:01:44.000] ----------------------------------------------- +Info 39 [00:01:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:46.000] Files (2) -Info 41 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 39 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Open files: -Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Open files: +Info 39 [00:01:52.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:53.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:01:58.000] response: +Info 39 [00:01:56.000] response: { "responseRequired": false } -Info 42 [00:01:59.000] request: +Info 40 [00:01:57.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:02.000] response: +Info 43 [00:02:00.000] response: { "response": { "info": { @@ -482,7 +480,7 @@ Info 45 [00:02:02.000] response: }, "responseRequired": true } -Info 46 [00:02:03.000] request: +Info 44 [00:02:01.000] request: { "command": "change", "arguments": { @@ -552,11 +550,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [00:02:04.000] response: +Info 45 [00:02:02.000] response: { "responseRequired": false } -Info 48 [00:02:05.000] request: +Info 46 [00:02:03.000] request: { "command": "rename", "arguments": { @@ -595,9 +593,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [00:02:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 50 [00:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 51 [00:02:08.000] Different program with same set of files +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:: @@ -626,7 +624,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:09.000] response: +Info 50 [00:02:07.000] response: { "response": { "info": { @@ -674,7 +672,7 @@ Info 52 [00:02:09.000] response: }, "responseRequired": true } -Info 53 [00:02:10.000] request: +Info 51 [00:02:08.000] request: { "command": "rename", "arguments": { @@ -741,7 +739,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:11.000] response: +Info 52 [00:02:09.000] response: { "response": { "info": { @@ -789,7 +787,7 @@ Info 54 [00:02:11.000] response: }, "responseRequired": true } -Info 55 [00:02:12.000] request: +Info 53 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -856,7 +854,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:13.000] response: +Info 54 [00:02:11.000] response: { "response": { "info": { @@ -904,7 +902,7 @@ Info 56 [00:02:13.000] response: }, "responseRequired": true } -Info 57 [00:02:14.000] request: +Info 55 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -971,7 +969,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:15.000] response: +Info 56 [00:02:13.000] response: { "response": { "info": { @@ -1019,7 +1017,7 @@ Info 58 [00:02:15.000] response: }, "responseRequired": true } -Info 59 [00:02:16.000] request: +Info 57 [00:02:14.000] request: { "command": "rename", "arguments": { @@ -1086,7 +1084,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:17.000] response: +Info 58 [00:02:15.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/rename-locations.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/rename-locations.js index c71dd4fb76c1a..16a763d108742 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/rename-locations.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/rename-locations.js @@ -217,16 +217,15 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:18.000] Files (2) +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:17.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:19.000] ----------------------------------------------- -Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:23.000] Files (2) +Info 18 [00:01:18.000] ----------------------------------------------- +Info 19 [00:01:19.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:20.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:22.000] Files (2) -Info 22 [00:01:24.000] ----------------------------------------------- -Info 22 [00:01:25.000] Open files: -Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:23.000] ----------------------------------------------- +Info 21 [00:01:24.000] Open files: +Info 21 [00:01:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:28.000] response: +Info 21 [00:01:27.000] response: { "responseRequired": false } -Info 23 [00:01:29.000] request: +Info 22 [00:01:28.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:33.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:45.000] Files (2) +Info 28 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:43.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:46.000] ----------------------------------------------- -Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:48.000] Files (2) +Info 38 [00:01:44.000] ----------------------------------------------- +Info 39 [00:01:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:46.000] Files (2) -Info 41 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 39 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Open files: -Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Open files: +Info 39 [00:01:52.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:53.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:01:58.000] response: +Info 39 [00:01:56.000] response: { "responseRequired": false } -Info 42 [00:01:59.000] request: +Info 40 [00:01:57.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:02.000] response: +Info 43 [00:02:00.000] response: { "response": { "info": { @@ -482,7 +480,7 @@ Info 45 [00:02:02.000] response: }, "responseRequired": true } -Info 46 [00:02:03.000] request: +Info 44 [00:02:01.000] request: { "command": "rename", "arguments": { @@ -549,7 +547,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [00:02:04.000] response: +Info 45 [00:02:02.000] response: { "response": { "info": { @@ -597,7 +595,7 @@ Info 47 [00:02:04.000] response: }, "responseRequired": true } -Info 48 [00:02:05.000] request: +Info 46 [00:02:03.000] request: { "command": "rename", "arguments": { @@ -664,7 +662,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [00:02:06.000] response: +Info 47 [00:02:04.000] response: { "response": { "info": { @@ -712,7 +710,7 @@ Info 49 [00:02:06.000] response: }, "responseRequired": true } -Info 50 [00:02:07.000] request: +Info 48 [00:02:05.000] request: { "command": "rename", "arguments": { @@ -779,7 +777,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [00:02:08.000] response: +Info 49 [00:02:06.000] response: { "response": { "info": { @@ -827,7 +825,7 @@ Info 51 [00:02:08.000] response: }, "responseRequired": true } -Info 52 [00:02:09.000] request: +Info 50 [00:02:07.000] request: { "command": "rename", "arguments": { @@ -894,7 +892,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [00:02:10.000] response: +Info 51 [00:02:08.000] response: { "response": { "info": { @@ -942,7 +940,7 @@ Info 53 [00:02:10.000] response: }, "responseRequired": true } -Info 54 [00:02:11.000] request: +Info 52 [00:02:09.000] request: { "seq": 0, "type": "request", @@ -979,18 +977,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 56 [00:02:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [00:02:14.000] Files (2) +Info 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) -Info 56 [00:02:15.000] ----------------------------------------------- -Info 56 [00:02:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [00:02:17.000] Files (2) +Info 54 [00:02:13.000] ----------------------------------------------- +Info 54 [00:02:14.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 54 [00:02:15.000] Files (2) -Info 56 [00:02:18.000] ----------------------------------------------- -Info 56 [00:02:19.000] Open files: -Info 56 [00:02:20.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [00:02:21.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 54 [00:02:16.000] ----------------------------------------------- +Info 54 [00:02:17.000] Open files: +Info 54 [00:02:18.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 54 [00:02:19.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1021,11 +1019,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:22.000] response: +Info 54 [00:02:20.000] response: { "responseRequired": false } -Info 57 [00:02:23.000] request: +Info 55 [00:02:21.000] request: { "seq": 0, "type": "request", @@ -1064,22 +1062,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 59 [00:02:25.000] Search path: /user/username/projects/myproject/random -Info 60 [00:02:26.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 61 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 61 [00:02:28.000] Files (2) +Info 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 +Info 59 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 59 [00:02:26.000] Files (2) -Info 61 [00:02:29.000] ----------------------------------------------- -Info 61 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [00:02:31.000] Files (2) +Info 59 [00:02:27.000] ----------------------------------------------- +Info 59 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 59 [00:02:29.000] Files (2) -Info 61 [00:02:32.000] ----------------------------------------------- -Info 61 [00:02:33.000] Open files: -Info 61 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 61 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 61 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 61 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 59 [00:02:30.000] ----------------------------------------------- +Info 59 [00:02:31.000] Open files: +Info 59 [00:02:32.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 59 [00:02:33.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 59 [00:02:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 59 [00:02:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1108,11 +1106,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:38.000] response: +Info 59 [00:02:36.000] response: { "responseRequired": false } -Info 62 [00:02:39.000] request: +Info 60 [00:02:37.000] request: { "seq": 0, "type": "request", @@ -1149,18 +1147,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 64 [00:02:41.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 64 [00:02:42.000] Files (2) +Info 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) -Info 64 [00:02:43.000] ----------------------------------------------- -Info 64 [00:02:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:45.000] Files (2) +Info 62 [00:02:41.000] ----------------------------------------------- +Info 62 [00:02:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:43.000] Files (2) -Info 64 [00:02:46.000] ----------------------------------------------- -Info 64 [00:02:47.000] Open files: -Info 64 [00:02:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [00:02:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:44.000] ----------------------------------------------- +Info 62 [00:02:45.000] Open files: +Info 62 [00:02:46.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:47.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1191,11 +1189,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:50.000] response: +Info 62 [00:02:48.000] response: { "responseRequired": false } -Info 65 [00:02:51.000] request: +Info 63 [00:02:49.000] request: { "seq": 0, "type": "request", @@ -1234,16 +1232,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 67 [00:02:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 67 [00:02:54.000] Files (2) +Info 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) -Info 67 [00:02:55.000] ----------------------------------------------- -Info 67 [00:02:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 67 [00:02:57.000] Files (2) +Info 65 [00:02:53.000] ----------------------------------------------- +Info 65 [00:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:55.000] Files (2) -Info 67 [00:02:58.000] ----------------------------------------------- -Info 67 [00:02:59.000] Open files: +Info 65 [00:02:56.000] ----------------------------------------------- +Info 65 [00:02:57.000] Open files: After request PolledWatches:: @@ -1276,11 +1274,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:03:00.000] response: +Info 65 [00:02:58.000] response: { "responseRequired": false } -Info 68 [00:03:01.000] request: +Info 66 [00:02:59.000] request: { "seq": 0, "type": "request", @@ -1321,12 +1319,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:03:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 70 [00:03:03.000] Search path: /user/username/projects/myproject/random -Info 71 [00:03:04.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 72 [00:03:05.000] `remove Project:: -Info 73 [00:03:06.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [00:03:07.000] Files (2) +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 +Info 70 [00:03:03.000] `remove Project:: +Info 71 [00:03:04.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 72 [00:03:05.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1336,24 +1334,24 @@ Info 74 [00:03:07.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 75 [00:03:08.000] ----------------------------------------------- -Info 76 [00:03:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 77 [00:03:10.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 78 [00:03:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 79 [00:03:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 80 [00:03:13.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 81 [00:03:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 82 [00:03:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 83 [00:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 84 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 85 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 86 [00:03:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 86 [00:03:20.000] Files (2) - -Info 86 [00:03:21.000] ----------------------------------------------- -Info 86 [00:03:22.000] Open files: -Info 86 [00:03:23.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 86 [00:03:24.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 73 [00:03:06.000] ----------------------------------------------- +Info 74 [00:03:07.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 75 [00:03:08.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 76 [00:03:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 77 [00:03:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 78 [00:03:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 79 [00:03:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 80 [00:03:13.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 81 [00:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 82 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 83 [00:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 84 [00:03:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 84 [00:03:18.000] Files (2) + +Info 84 [00:03:19.000] ----------------------------------------------- +Info 84 [00:03:20.000] Open files: +Info 84 [00:03:21.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 84 [00:03:22.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1372,7 +1370,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:25.000] response: +Info 84 [00:03:23.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/usage-file-changes-with-timeout-before-request.js index bd245a1593880..ed411b66ca230 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 @@ -217,16 +217,15 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:18.000] Files (2) +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:17.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:19.000] ----------------------------------------------- -Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:23.000] Files (2) +Info 18 [00:01:18.000] ----------------------------------------------- +Info 19 [00:01:19.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:20.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:22.000] Files (2) -Info 22 [00:01:24.000] ----------------------------------------------- -Info 22 [00:01:25.000] Open files: -Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:23.000] ----------------------------------------------- +Info 21 [00:01:24.000] Open files: +Info 21 [00:01:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:28.000] response: +Info 21 [00:01:27.000] response: { "responseRequired": false } -Info 23 [00:01:29.000] request: +Info 22 [00:01:28.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:33.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:45.000] Files (2) +Info 28 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:43.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:46.000] ----------------------------------------------- -Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:48.000] Files (2) +Info 38 [00:01:44.000] ----------------------------------------------- +Info 39 [00:01:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:46.000] Files (2) -Info 41 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 39 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Open files: -Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Open files: +Info 39 [00:01:52.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:53.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:01:58.000] response: +Info 39 [00:01:56.000] response: { "responseRequired": false } -Info 42 [00:01:59.000] request: +Info 40 [00:01:57.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:02.000] response: +Info 43 [00:02:00.000] response: { "response": { "info": { @@ -482,7 +480,7 @@ Info 45 [00:02:02.000] response: }, "responseRequired": true } -Info 46 [00:02:03.000] request: +Info 44 [00:02:01.000] request: { "command": "change", "arguments": { @@ -552,7 +550,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [00:02:04.000] response: +Info 45 [00:02:02.000] response: { "responseRequired": false } @@ -612,7 +610,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:05.000] request: +Info 46 [00:02:03.000] request: { "command": "rename", "arguments": { @@ -651,9 +649,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [00:02:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 50 [00:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 51 [00:02:08.000] Different program with same set of files +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:: @@ -682,7 +680,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:09.000] response: +Info 50 [00:02:07.000] response: { "response": { "info": { @@ -730,7 +728,7 @@ Info 52 [00:02:09.000] response: }, "responseRequired": true } -Info 53 [00:02:10.000] request: +Info 51 [00:02:08.000] request: { "command": "rename", "arguments": { @@ -797,7 +795,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:11.000] response: +Info 52 [00:02:09.000] response: { "response": { "info": { @@ -845,7 +843,7 @@ Info 54 [00:02:11.000] response: }, "responseRequired": true } -Info 55 [00:02:12.000] request: +Info 53 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -912,7 +910,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:13.000] response: +Info 54 [00:02:11.000] response: { "response": { "info": { @@ -960,7 +958,7 @@ Info 56 [00:02:13.000] response: }, "responseRequired": true } -Info 57 [00:02:14.000] request: +Info 55 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -1027,7 +1025,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:15.000] response: +Info 56 [00:02:13.000] response: { "response": { "info": { @@ -1075,7 +1073,7 @@ Info 58 [00:02:15.000] response: }, "responseRequired": true } -Info 59 [00:02:16.000] request: +Info 57 [00:02:14.000] request: { "command": "rename", "arguments": { @@ -1142,7 +1140,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:17.000] response: +Info 58 [00:02:15.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/usage-file-changes.js index dd514856d07f8..2284549c3222c 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 @@ -217,16 +217,15 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:18.000] Files (2) +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:17.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:18.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:19.000] ----------------------------------------------- -Info 20 [00:01:20.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:21.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:23.000] Files (2) +Info 18 [00:01:18.000] ----------------------------------------------- +Info 19 [00:01:19.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:20.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:22.000] Files (2) -Info 22 [00:01:24.000] ----------------------------------------------- -Info 22 [00:01:25.000] Open files: -Info 22 [00:01:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:27.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:23.000] ----------------------------------------------- +Info 21 [00:01:24.000] Open files: +Info 21 [00:01:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:28.000] response: +Info 21 [00:01:27.000] response: { "responseRequired": false } -Info 23 [00:01:29.000] request: +Info 22 [00:01:28.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:30.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:32.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:33.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:34.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:45.000] Files (2) +Info 28 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:43.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:45.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:46.000] ----------------------------------------------- -Info 41 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:48.000] Files (2) +Info 38 [00:01:44.000] ----------------------------------------------- +Info 39 [00:01:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:46.000] Files (2) -Info 41 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 39 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Open files: -Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:01:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Open files: +Info 39 [00:01:52.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:53.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:01:58.000] response: +Info 39 [00:01:56.000] response: { "responseRequired": false } -Info 42 [00:01:59.000] request: +Info 40 [00:01:57.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:02.000] response: +Info 43 [00:02:00.000] response: { "response": { "info": { @@ -482,7 +480,7 @@ Info 45 [00:02:02.000] response: }, "responseRequired": true } -Info 46 [00:02:03.000] request: +Info 44 [00:02:01.000] request: { "command": "change", "arguments": { @@ -552,11 +550,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [00:02:04.000] response: +Info 45 [00:02:02.000] response: { "responseRequired": false } -Info 48 [00:02:05.000] request: +Info 46 [00:02:03.000] request: { "command": "rename", "arguments": { @@ -595,9 +593,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [00:02:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 50 [00:02:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 51 [00:02:08.000] Different program with same set of files +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:: @@ -626,7 +624,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:09.000] response: +Info 50 [00:02:07.000] response: { "response": { "info": { @@ -674,7 +672,7 @@ Info 52 [00:02:09.000] response: }, "responseRequired": true } -Info 53 [00:02:10.000] request: +Info 51 [00:02:08.000] request: { "command": "rename", "arguments": { @@ -741,7 +739,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:11.000] response: +Info 52 [00:02:09.000] response: { "response": { "info": { @@ -789,7 +787,7 @@ Info 54 [00:02:11.000] response: }, "responseRequired": true } -Info 55 [00:02:12.000] request: +Info 53 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -856,7 +854,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:13.000] response: +Info 54 [00:02:11.000] response: { "response": { "info": { @@ -904,7 +902,7 @@ Info 56 [00:02:13.000] response: }, "responseRequired": true } -Info 57 [00:02:14.000] request: +Info 55 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -971,7 +969,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:15.000] response: +Info 56 [00:02:13.000] response: { "response": { "info": { @@ -1019,7 +1017,7 @@ Info 58 [00:02:15.000] response: }, "responseRequired": true } -Info 59 [00:02:16.000] request: +Info 57 [00:02:14.000] request: { "command": "rename", "arguments": { @@ -1086,7 +1084,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:17.000] response: +Info 58 [00:02:15.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/when-projects-are-not-built.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/configWithReference/when-projects-are-not-built.js index 523e3f1160fa2..82e7feb39121c 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 @@ -82,16 +82,15 @@ Info 6 [00:00:41.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:00:52.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:00:53.000] Files (2) +Info 9 [00:00:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:00:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:00:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -101,16 +100,16 @@ Info 18 [00:00:53.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:00:54.000] ----------------------------------------------- -Info 20 [00:00:55.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:00:56.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:00:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:00:58.000] Files (2) +Info 18 [00:00:53.000] ----------------------------------------------- +Info 19 [00:00:54.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:00:55.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:00:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:00:57.000] Files (2) -Info 22 [00:00:59.000] ----------------------------------------------- -Info 22 [00:01:00.000] Open files: -Info 22 [00:01:01.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:02.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:00:58.000] ----------------------------------------------- +Info 21 [00:00:59.000] Open files: +Info 21 [00:01:00.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:01.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -129,11 +128,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:03.000] response: +Info 21 [00:01:02.000] response: { "responseRequired": false } -Info 23 [00:01:04.000] request: +Info 22 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -160,11 +159,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:05.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:07.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:09.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:08.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -172,17 +171,16 @@ Info 28 [00:01:09.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:20.000] Files (2) +Info 28 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -192,20 +190,20 @@ Info 39 [00:01:20.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:21.000] ----------------------------------------------- -Info 41 [00:01:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:23.000] Files (2) +Info 38 [00:01:19.000] ----------------------------------------------- +Info 39 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:21.000] Files (2) -Info 41 [00:01:24.000] ----------------------------------------------- -Info 41 [00:01:25.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:26.000] Files (2) +Info 39 [00:01:22.000] ----------------------------------------------- +Info 39 [00:01:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:24.000] Files (2) -Info 41 [00:01:27.000] ----------------------------------------------- -Info 41 [00:01:28.000] Open files: -Info 41 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:31.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:01:32.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:25.000] ----------------------------------------------- +Info 39 [00:01:26.000] Open files: +Info 39 [00:01:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:28.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:29.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:30.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -230,11 +228,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:01:33.000] response: +Info 39 [00:01:31.000] response: { "responseRequired": false } -Info 42 [00:01:34.000] request: +Info 40 [00:01:32.000] request: { "command": "rename", "arguments": { @@ -269,7 +267,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +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 PolledWatches:: @@ -296,7 +294,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [00:01:36.000] response: +Info 42 [00:01:34.000] response: { "response": { "info": { @@ -344,7 +342,7 @@ Info 44 [00:01:36.000] response: }, "responseRequired": true } -Info 45 [00:01:37.000] request: +Info 43 [00:01:35.000] request: { "command": "rename", "arguments": { @@ -407,7 +405,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [00:01:38.000] response: +Info 44 [00:01:36.000] response: { "response": { "info": { @@ -455,7 +453,7 @@ Info 46 [00:01:38.000] response: }, "responseRequired": true } -Info 47 [00:01:39.000] request: +Info 45 [00:01:37.000] request: { "command": "rename", "arguments": { @@ -518,7 +516,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:01:40.000] response: +Info 46 [00:01:38.000] response: { "response": { "info": { @@ -566,7 +564,7 @@ Info 48 [00:01:40.000] response: }, "responseRequired": true } -Info 49 [00:01:41.000] request: +Info 47 [00:01:39.000] request: { "command": "rename", "arguments": { @@ -629,7 +627,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:01:42.000] response: +Info 48 [00:01:40.000] response: { "response": { "info": { @@ -677,7 +675,7 @@ Info 50 [00:01:42.000] response: }, "responseRequired": true } -Info 51 [00:01:43.000] request: +Info 49 [00:01:41.000] request: { "command": "rename", "arguments": { @@ -740,7 +738,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:01:44.000] response: +Info 50 [00:01:42.000] response: { "response": { "info": { @@ -788,7 +786,7 @@ Info 52 [00:01:44.000] response: }, "responseRequired": true } -Info 53 [00:01:45.000] request: +Info 51 [00:01:43.000] request: { "seq": 0, "type": "request", @@ -823,18 +821,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:01:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 55 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [00:01:48.000] Files (2) +Info 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) -Info 55 [00:01:49.000] ----------------------------------------------- -Info 55 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 55 [00:01:51.000] Files (2) +Info 53 [00:01:47.000] ----------------------------------------------- +Info 53 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 53 [00:01:49.000] Files (2) -Info 55 [00:01:52.000] ----------------------------------------------- -Info 55 [00:01:53.000] Open files: -Info 55 [00:01:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 55 [00:01:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:01:50.000] ----------------------------------------------- +Info 53 [00:01:51.000] Open files: +Info 53 [00:01:52.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 53 [00:01:53.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -863,11 +861,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:01:56.000] response: +Info 53 [00:01:54.000] response: { "responseRequired": false } -Info 56 [00:01:57.000] request: +Info 54 [00:01:55.000] request: { "seq": 0, "type": "request", @@ -904,22 +902,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:01:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 58 [00:01:59.000] Search path: /user/username/projects/myproject/random -Info 59 [00:02:00.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 60 [00:02:01.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 60 [00:02:02.000] Files (2) +Info 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 +Info 58 [00:01:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 58 [00:02:00.000] Files (2) -Info 60 [00:02:03.000] ----------------------------------------------- -Info 60 [00:02:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 60 [00:02:05.000] Files (2) +Info 58 [00:02:01.000] ----------------------------------------------- +Info 58 [00:02:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 58 [00:02:03.000] Files (2) -Info 60 [00:02:06.000] ----------------------------------------------- -Info 60 [00:02:07.000] Open files: -Info 60 [00:02:08.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 60 [00:02:09.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 60 [00:02:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 60 [00:02:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 58 [00:02:04.000] ----------------------------------------------- +Info 58 [00:02:05.000] Open files: +Info 58 [00:02:06.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 58 [00:02:07.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 58 [00:02:08.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 58 [00:02:09.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -946,11 +944,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:12.000] response: +Info 58 [00:02:10.000] response: { "responseRequired": false } -Info 61 [00:02:13.000] request: +Info 59 [00:02:11.000] request: { "seq": 0, "type": "request", @@ -985,18 +983,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [00:02:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 63 [00:02:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 63 [00:02:16.000] Files (2) +Info 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) -Info 63 [00:02:17.000] ----------------------------------------------- -Info 63 [00:02:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:19.000] Files (2) +Info 61 [00:02:15.000] ----------------------------------------------- +Info 61 [00:02:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:17.000] Files (2) -Info 63 [00:02:20.000] ----------------------------------------------- -Info 63 [00:02:21.000] Open files: -Info 63 [00:02:22.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 63 [00:02:23.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:18.000] ----------------------------------------------- +Info 61 [00:02:19.000] Open files: +Info 61 [00:02:20.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 61 [00:02:21.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1025,11 +1023,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:24.000] response: +Info 61 [00:02:22.000] response: { "responseRequired": false } -Info 64 [00:02:25.000] request: +Info 62 [00:02:23.000] request: { "seq": 0, "type": "request", @@ -1066,16 +1064,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:28.000] Files (2) +Info 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) -Info 66 [00:02:29.000] ----------------------------------------------- -Info 66 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:31.000] Files (2) +Info 64 [00:02:27.000] ----------------------------------------------- +Info 64 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:29.000] Files (2) -Info 66 [00:02:32.000] ----------------------------------------------- -Info 66 [00:02:33.000] Open files: +Info 64 [00:02:30.000] ----------------------------------------------- +Info 64 [00:02:31.000] Open files: After request PolledWatches:: @@ -1106,11 +1104,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:34.000] response: +Info 64 [00:02:32.000] response: { "responseRequired": false } -Info 67 [00:02:35.000] request: +Info 65 [00:02:33.000] request: { "seq": 0, "type": "request", @@ -1149,12 +1147,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [00:02:37.000] Search path: /user/username/projects/myproject/random -Info 70 [00:02:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [00:02:39.000] `remove Project:: -Info 72 [00:02:40.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 73 [00:02:41.000] Files (2) +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 +Info 69 [00:02:37.000] `remove Project:: +Info 70 [00:02:38.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 71 [00:02:39.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1164,23 +1162,23 @@ Info 73 [00:02:41.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 74 [00:02:42.000] ----------------------------------------------- -Info 75 [00:02:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 76 [00:02:44.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 77 [00:02:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 78 [00:02:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 79 [00:02:47.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 80 [00:02:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 81 [00:02:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 82 [00:02:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 83 [00:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 84 [00:02:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 84 [00:02:53.000] Files (2) - -Info 84 [00:02:54.000] ----------------------------------------------- -Info 84 [00:02:55.000] Open files: -Info 84 [00:02:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 84 [00:02:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:02:40.000] ----------------------------------------------- +Info 73 [00:02:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 74 [00:02:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 75 [00:02:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 76 [00:02:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 77 [00:02:45.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 78 [00:02:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 79 [00:02:47.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 80 [00:02:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 81 [00:02:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 82 [00:02:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 82 [00:02:51.000] Files (2) + +Info 82 [00:02:52.000] ----------------------------------------------- +Info 82 [00:02:53.000] Open files: +Info 82 [00:02:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 82 [00:02:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1199,7 +1197,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:02:58.000] response: +Info 82 [00:02:56.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js index 1690b098bf9b7..cc31cd4a52ebb 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 @@ -217,16 +217,15 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:21.000] Files (2) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:22.000] ----------------------------------------------- -Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:26.000] Files (2) +Info 18 [00:01:21.000] ----------------------------------------------- +Info 19 [00:01:22.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:23.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (2) -Info 22 [00:01:27.000] ----------------------------------------------- -Info 22 [00:01:28.000] Open files: -Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:26.000] ----------------------------------------------- +Info 21 [00:01:27.000] Open files: +Info 21 [00:01:28.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:31.000] response: +Info 21 [00:01:30.000] response: { "responseRequired": false } -Info 23 [00:01:32.000] request: +Info 22 [00:01:31.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:36.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:48.000] Files (2) +Info 28 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 38 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:54.000] Files (2) +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:52.000] Files (2) -Info 41 [00:01:55.000] ----------------------------------------------- -Info 41 [00:01:56.000] Open files: -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:53.000] ----------------------------------------------- +Info 39 [00:01:54.000] Open files: +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:01.000] response: +Info 39 [00:01:59.000] response: { "responseRequired": false } -Info 42 [00:02:02.000] request: +Info 40 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:05.000] response: +Info 43 [00:02:03.000] response: { "response": { "info": { @@ -482,10 +480,10 @@ Info 45 [00:02:05.000] response: }, "responseRequired": true } -Info 46 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 44 [00:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 45 [00:02:08.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:02:09.000] Scheduled: *ensureProjectForOpenFiles* +Info 47 [00:02:10.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts] export declare function fn1(): void; @@ -523,38 +521,38 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:13.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 51 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 53 [00:02:16.000] Running: *ensureProjectForOpenFiles* -Info 54 [00:02:17.000] Before ensureProjectForOpenFiles: -Info 55 [00:02:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [00:02:19.000] Files (2) - -Info 55 [00:02:20.000] ----------------------------------------------- -Info 55 [00:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 55 [00:02:22.000] Files (2) - -Info 55 [00:02:23.000] ----------------------------------------------- -Info 55 [00:02:24.000] Open files: -Info 55 [00:02:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 55 [00:02:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 55 [00:02:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 55 [00:02:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 55 [00:02:29.000] After ensureProjectForOpenFiles: -Info 56 [00:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [00:02:31.000] Files (2) - -Info 56 [00:02:32.000] ----------------------------------------------- -Info 56 [00:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [00:02:34.000] Files (2) - -Info 56 [00:02:35.000] ----------------------------------------------- -Info 56 [00:02:36.000] Open files: -Info 56 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 56 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 56 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 51 [00:02:14.000] Running: *ensureProjectForOpenFiles* +Info 52 [00:02:15.000] Before ensureProjectForOpenFiles: +Info 53 [00:02:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 53 [00:02:17.000] Files (2) + +Info 53 [00:02:18.000] ----------------------------------------------- +Info 53 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 53 [00:02:20.000] Files (2) + +Info 53 [00:02:21.000] ----------------------------------------------- +Info 53 [00:02:22.000] Open files: +Info 53 [00:02:23.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 53 [00:02:24.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:25.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 53 [00:02:26.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 53 [00:02:27.000] After ensureProjectForOpenFiles: +Info 54 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 54 [00:02:29.000] Files (2) + +Info 54 [00:02:30.000] ----------------------------------------------- +Info 54 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 54 [00:02:32.000] Files (2) + +Info 54 [00:02:33.000] ----------------------------------------------- +Info 54 [00:02:34.000] Open files: +Info 54 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 54 [00:02:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 54 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 54 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -583,7 +581,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:41.000] request: +Info 54 [00:02:39.000] request: { "command": "rename", "arguments": { @@ -650,7 +648,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:42.000] response: +Info 55 [00:02:40.000] response: { "response": { "info": { @@ -698,7 +696,7 @@ Info 57 [00:02:42.000] response: }, "responseRequired": true } -Info 58 [00:02:43.000] request: +Info 56 [00:02:41.000] request: { "command": "rename", "arguments": { @@ -765,7 +763,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:44.000] response: +Info 57 [00:02:42.000] response: { "response": { "info": { @@ -813,7 +811,7 @@ Info 59 [00:02:44.000] response: }, "responseRequired": true } -Info 60 [00:02:45.000] request: +Info 58 [00:02:43.000] request: { "command": "rename", "arguments": { @@ -880,7 +878,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:46.000] response: +Info 59 [00:02:44.000] response: { "response": { "info": { @@ -928,7 +926,7 @@ Info 61 [00:02:46.000] response: }, "responseRequired": true } -Info 62 [00:02:47.000] request: +Info 60 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -995,7 +993,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:48.000] response: +Info 61 [00:02:46.000] response: { "response": { "info": { @@ -1043,7 +1041,7 @@ Info 63 [00:02:48.000] response: }, "responseRequired": true } -Info 64 [00:02:49.000] request: +Info 62 [00:02:47.000] request: { "command": "rename", "arguments": { @@ -1110,7 +1108,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:50.000] response: +Info 63 [00:02:48.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-changes.js index 1020d4a7d24eb..644c6c2cd08ca 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 @@ -217,16 +217,15 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:21.000] Files (2) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:22.000] ----------------------------------------------- -Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:26.000] Files (2) +Info 18 [00:01:21.000] ----------------------------------------------- +Info 19 [00:01:22.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:23.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (2) -Info 22 [00:01:27.000] ----------------------------------------------- -Info 22 [00:01:28.000] Open files: -Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:26.000] ----------------------------------------------- +Info 21 [00:01:27.000] Open files: +Info 21 [00:01:28.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:31.000] response: +Info 21 [00:01:30.000] response: { "responseRequired": false } -Info 23 [00:01:32.000] request: +Info 22 [00:01:31.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:36.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:48.000] Files (2) +Info 28 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 38 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:54.000] Files (2) +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:52.000] Files (2) -Info 41 [00:01:55.000] ----------------------------------------------- -Info 41 [00:01:56.000] Open files: -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:53.000] ----------------------------------------------- +Info 39 [00:01:54.000] Open files: +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:01.000] response: +Info 39 [00:01:59.000] response: { "responseRequired": false } -Info 42 [00:02:02.000] request: +Info 40 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:05.000] response: +Info 43 [00:02:03.000] response: { "response": { "info": { @@ -482,11 +480,11 @@ Info 45 [00:02:05.000] response: }, "responseRequired": true } -Info 46 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 50 [00:02:13.000] request: +Info 44 [00:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 45 [00:02:08.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:02:09.000] Scheduled: *ensureProjectForOpenFiles* +Info 47 [00:02:10.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 48 [00:02:11.000] request: { "command": "rename", "arguments": { @@ -534,8 +532,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 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:: @@ -564,7 +562,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [00:02:16.000] response: +Info 51 [00:02:14.000] response: { "response": { "info": { @@ -612,7 +610,7 @@ Info 53 [00:02:16.000] response: }, "responseRequired": true } -Info 54 [00:02:17.000] request: +Info 52 [00:02:15.000] request: { "command": "rename", "arguments": { @@ -679,7 +677,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:18.000] response: +Info 53 [00:02:16.000] response: { "response": { "info": { @@ -727,7 +725,7 @@ Info 55 [00:02:18.000] response: }, "responseRequired": true } -Info 56 [00:02:19.000] request: +Info 54 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -794,7 +792,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:20.000] response: +Info 55 [00:02:18.000] response: { "response": { "info": { @@ -842,7 +840,7 @@ Info 57 [00:02:20.000] response: }, "responseRequired": true } -Info 58 [00:02:21.000] request: +Info 56 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -909,7 +907,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:22.000] response: +Info 57 [00:02:20.000] response: { "response": { "info": { @@ -957,7 +955,7 @@ Info 59 [00:02:22.000] response: }, "responseRequired": true } -Info 60 [00:02:23.000] request: +Info 58 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -1024,7 +1022,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:24.000] response: +Info 59 [00:02:22.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-created.js index ff7a7fdc4dc9d..d53ce0650b587 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 @@ -209,16 +209,15 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:22.000] Files (2) +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -228,16 +227,16 @@ Info 18 [00:01:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:23.000] ----------------------------------------------- -Info 20 [00:01:24.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:27.000] Files (2) +Info 18 [00:01:22.000] ----------------------------------------------- +Info 19 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:26.000] Files (2) -Info 22 [00:01:28.000] ----------------------------------------------- -Info 22 [00:01:29.000] Open files: -Info 22 [00:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:27.000] ----------------------------------------------- +Info 21 [00:01:28.000] Open files: +Info 21 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -256,11 +255,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:32.000] response: +Info 21 [00:01:31.000] response: { "responseRequired": false } -Info 23 [00:01:33.000] request: +Info 22 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -287,11 +286,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:34.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -299,17 +298,16 @@ Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:49.000] Files (2) +Info 28 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:47.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -319,20 +317,20 @@ Info 39 [00:01:49.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:50.000] ----------------------------------------------- -Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:52.000] Files (2) +Info 38 [00:01:48.000] ----------------------------------------------- +Info 39 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:50.000] Files (2) -Info 41 [00:01:53.000] ----------------------------------------------- -Info 41 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:55.000] Files (2) +Info 39 [00:01:51.000] ----------------------------------------------- +Info 39 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:53.000] Files (2) -Info 41 [00:01:56.000] ----------------------------------------------- -Info 41 [00:01:57.000] Open files: -Info 41 [00:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:54.000] ----------------------------------------------- +Info 39 [00:01:55.000] Open files: +Info 39 [00:01:56.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:57.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -357,11 +355,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:02.000] response: +Info 39 [00:02:00.000] response: { "responseRequired": false } -Info 42 [00:02:03.000] request: +Info 40 [00:02:01.000] request: { "command": "rename", "arguments": { @@ -396,7 +394,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +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 PolledWatches:: @@ -423,7 +421,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [00:02:05.000] response: +Info 42 [00:02:03.000] response: { "response": { "info": { @@ -471,15 +469,15 @@ Info 44 [00:02:05.000] response: }, "responseRequired": true } -Info 45 [00:02:08.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 46 [00:02:09.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 47 [00:02:10.000] Scheduled: *ensureProjectForOpenFiles* -Info 48 [00:02:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 49 [00:02:12.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 50 [00:02:13.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one -Info 51 [00:02:14.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 52 [00:02:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 53 [00:02:16.000] request: +Info 43 [00:02:06.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 44 [00:02:07.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 45 [00:02:08.000] Scheduled: *ensureProjectForOpenFiles* +Info 46 [00:02:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 47 [00:02:10.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 48 [00:02:11.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one +Info 49 [00:02:12.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 50 [00:02:13.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 51 [00:02:14.000] request: { "command": "rename", "arguments": { @@ -524,10 +522,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 55 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 56 [00:02:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 57 [00:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 52 [00:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 54 [00:02:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 55 [00:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -556,7 +554,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:21.000] response: +Info 56 [00:02:19.000] response: { "response": { "info": { @@ -604,7 +602,7 @@ Info 58 [00:02:21.000] response: }, "responseRequired": true } -Info 59 [00:02:22.000] request: +Info 57 [00:02:20.000] request: { "command": "rename", "arguments": { @@ -671,7 +669,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:23.000] response: +Info 58 [00:02:21.000] response: { "response": { "info": { @@ -719,7 +717,7 @@ Info 60 [00:02:23.000] response: }, "responseRequired": true } -Info 61 [00:02:24.000] request: +Info 59 [00:02:22.000] request: { "command": "rename", "arguments": { @@ -786,7 +784,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [00:02:25.000] response: +Info 60 [00:02:23.000] response: { "response": { "info": { @@ -834,7 +832,7 @@ Info 62 [00:02:25.000] response: }, "responseRequired": true } -Info 63 [00:02:26.000] request: +Info 61 [00:02:24.000] request: { "command": "rename", "arguments": { @@ -901,7 +899,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:27.000] response: +Info 62 [00:02:25.000] response: { "response": { "info": { @@ -949,7 +947,7 @@ Info 64 [00:02:27.000] response: }, "responseRequired": true } -Info 65 [00:02:28.000] request: +Info 63 [00:02:26.000] request: { "command": "rename", "arguments": { @@ -1016,7 +1014,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:29.000] response: +Info 64 [00:02:27.000] response: { "response": { "info": { @@ -1064,7 +1062,7 @@ Info 66 [00:02:29.000] response: }, "responseRequired": true } -Info 67 [00:02:30.000] request: +Info 65 [00:02:28.000] request: { "seq": 0, "type": "request", @@ -1101,18 +1099,18 @@ FsWatchesRecursive:: /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/dependency/tsconfig.json' (Configured) -Info 69 [00:02:33.000] Files (2) +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) -Info 69 [00:02:34.000] ----------------------------------------------- -Info 69 [00:02:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 69 [00:02:36.000] Files (2) +Info 67 [00:02:32.000] ----------------------------------------------- +Info 67 [00:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 67 [00:02:34.000] Files (2) -Info 69 [00:02:37.000] ----------------------------------------------- -Info 69 [00:02:38.000] Open files: -Info 69 [00:02:39.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 69 [00:02:40.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 67 [00:02:35.000] ----------------------------------------------- +Info 67 [00:02:36.000] Open files: +Info 67 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 67 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1143,11 +1141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:02:41.000] response: +Info 67 [00:02:39.000] response: { "responseRequired": false } -Info 70 [00:02:42.000] request: +Info 68 [00:02:40.000] request: { "seq": 0, "type": "request", @@ -1186,22 +1184,22 @@ FsWatchesRecursive:: /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 -Info 74 [00:02:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [00:02:47.000] Files (2) +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 +Info 72 [00:02:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 72 [00:02:45.000] Files (2) -Info 74 [00:02:48.000] ----------------------------------------------- -Info 74 [00:02:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [00:02:50.000] Files (2) +Info 72 [00:02:46.000] ----------------------------------------------- +Info 72 [00:02:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 72 [00:02:48.000] Files (2) -Info 74 [00:02:51.000] ----------------------------------------------- -Info 74 [00:02:52.000] Open files: -Info 74 [00:02:53.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 74 [00:02:54.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 74 [00:02:55.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [00:02:56.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:02:49.000] ----------------------------------------------- +Info 72 [00:02:50.000] Open files: +Info 72 [00:02:51.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 72 [00:02:52.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:53.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 72 [00:02:54.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1230,11 +1228,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:57.000] response: +Info 72 [00:02:55.000] response: { "responseRequired": false } -Info 75 [00:02:58.000] request: +Info 73 [00:02:56.000] request: { "seq": 0, "type": "request", @@ -1271,18 +1269,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 77 [00:03:00.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 77 [00:03:01.000] Files (2) +Info 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) -Info 77 [00:03:02.000] ----------------------------------------------- -Info 77 [00:03:03.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [00:03:04.000] Files (2) +Info 75 [00:03:00.000] ----------------------------------------------- +Info 75 [00:03:01.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 75 [00:03:02.000] Files (2) -Info 77 [00:03:05.000] ----------------------------------------------- -Info 77 [00:03:06.000] Open files: -Info 77 [00:03:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 77 [00:03:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 75 [00:03:03.000] ----------------------------------------------- +Info 75 [00:03:04.000] Open files: +Info 75 [00:03:05.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 75 [00:03:06.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1313,11 +1311,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:03:09.000] response: +Info 75 [00:03:07.000] response: { "responseRequired": false } -Info 78 [00:03:10.000] request: +Info 76 [00:03:08.000] request: { "seq": 0, "type": "request", @@ -1356,16 +1354,16 @@ FsWatchesRecursive:: /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/dependency/tsconfig.json' (Configured) -Info 80 [00:03:13.000] Files (2) +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) -Info 80 [00:03:14.000] ----------------------------------------------- -Info 80 [00:03:15.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 80 [00:03:16.000] Files (2) +Info 78 [00:03:12.000] ----------------------------------------------- +Info 78 [00:03:13.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 78 [00:03:14.000] Files (2) -Info 80 [00:03:17.000] ----------------------------------------------- -Info 80 [00:03:18.000] Open files: +Info 78 [00:03:15.000] ----------------------------------------------- +Info 78 [00:03:16.000] Open files: After request PolledWatches:: @@ -1398,11 +1396,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:03:19.000] response: +Info 78 [00:03:17.000] response: { "responseRequired": false } -Info 81 [00:03:20.000] request: +Info 79 [00:03:18.000] request: { "seq": 0, "type": "request", @@ -1443,12 +1441,12 @@ FsWatchesRecursive:: /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 -Info 85 [00:03:24.000] `remove Project:: -Info 86 [00:03:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 87 [00:03:26.000] Files (2) +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 +Info 83 [00:03:22.000] `remove Project:: +Info 84 [00:03:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 85 [00:03:24.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1458,25 +1456,25 @@ Info 87 [00:03:26.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 88 [00:03:27.000] ----------------------------------------------- -Info 89 [00:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 90 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 91 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 92 [00:03:31.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 93 [00:03:32.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 94 [00:03:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 95 [00:03:34.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 96 [00:03:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 97 [00:03:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 98 [00:03:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 99 [00:03:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 100 [00:03:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 100 [00:03:40.000] Files (2) - -Info 100 [00:03:41.000] ----------------------------------------------- -Info 100 [00:03:42.000] Open files: -Info 100 [00:03:43.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 100 [00:03:44.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 86 [00:03:25.000] ----------------------------------------------- +Info 87 [00:03:26.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 88 [00:03:27.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 89 [00:03:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 90 [00:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 91 [00:03:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 92 [00:03:31.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 93 [00:03:32.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 94 [00:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 95 [00:03:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 96 [00:03:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 97 [00:03:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 98 [00:03:37.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 98 [00:03:38.000] Files (2) + +Info 98 [00:03:39.000] ----------------------------------------------- +Info 98 [00:03:40.000] Open files: +Info 98 [00:03:41.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 98 [00:03:42.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1495,7 +1493,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:45.000] response: +Info 98 [00:03:43.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-deleted.js index fa54d77fdb9fe..b73893b5671d3 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 @@ -217,16 +217,15 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:21.000] Files (2) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:22.000] ----------------------------------------------- -Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:26.000] Files (2) +Info 18 [00:01:21.000] ----------------------------------------------- +Info 19 [00:01:22.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:23.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (2) -Info 22 [00:01:27.000] ----------------------------------------------- -Info 22 [00:01:28.000] Open files: -Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:26.000] ----------------------------------------------- +Info 21 [00:01:27.000] Open files: +Info 21 [00:01:28.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:31.000] response: +Info 21 [00:01:30.000] response: { "responseRequired": false } -Info 23 [00:01:32.000] request: +Info 22 [00:01:31.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:36.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:48.000] Files (2) +Info 28 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 38 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:54.000] Files (2) +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:52.000] Files (2) -Info 41 [00:01:55.000] ----------------------------------------------- -Info 41 [00:01:56.000] Open files: -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:53.000] ----------------------------------------------- +Info 39 [00:01:54.000] Open files: +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:01.000] response: +Info 39 [00:01:59.000] response: { "responseRequired": false } -Info 42 [00:02:02.000] request: +Info 40 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:05.000] response: +Info 43 [00:02:03.000] response: { "response": { "info": { @@ -482,12 +480,12 @@ Info 45 [00:02:05.000] response: }, "responseRequired": true } -Info 46 [00:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 47 [00:02:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 48 [00:02:09.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 49 [00:02:10.000] Scheduled: *ensureProjectForOpenFiles* -Info 50 [00:02:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 51 [00:02:12.000] request: +Info 44 [00:02:05.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 45 [00:02:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 46 [00:02:07.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:02:08.000] Scheduled: *ensureProjectForOpenFiles* +Info 48 [00:02:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 49 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -525,9 +523,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 53 [00:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 54 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 50 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 51 [00:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 52 [00:02:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -556,7 +554,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:16.000] response: +Info 53 [00:02:14.000] response: { "response": { "info": { @@ -604,7 +602,7 @@ Info 55 [00:02:16.000] response: }, "responseRequired": true } -Info 56 [00:02:17.000] request: +Info 54 [00:02:15.000] request: { "command": "rename", "arguments": { @@ -671,7 +669,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:18.000] response: +Info 55 [00:02:16.000] response: { "response": { "info": { @@ -719,7 +717,7 @@ Info 57 [00:02:18.000] response: }, "responseRequired": true } -Info 58 [00:02:19.000] request: +Info 56 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -786,7 +784,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:20.000] response: +Info 57 [00:02:18.000] response: { "response": { "info": { @@ -834,7 +832,7 @@ Info 59 [00:02:20.000] response: }, "responseRequired": true } -Info 60 [00:02:21.000] request: +Info 58 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -901,7 +899,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:22.000] response: +Info 59 [00:02:20.000] response: { "response": { "info": { @@ -949,7 +947,7 @@ Info 61 [00:02:22.000] response: }, "responseRequired": true } -Info 62 [00:02:23.000] request: +Info 60 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -1016,7 +1014,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:24.000] response: +Info 61 [00:02:22.000] response: { "response": { "info": { @@ -1064,7 +1062,7 @@ Info 63 [00:02:24.000] response: }, "responseRequired": true } -Info 64 [00:02:25.000] request: +Info 62 [00:02:23.000] request: { "seq": 0, "type": "request", @@ -1101,18 +1099,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:28.000] Files (2) +Info 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) -Info 66 [00:02:29.000] ----------------------------------------------- -Info 66 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:31.000] Files (2) +Info 64 [00:02:27.000] ----------------------------------------------- +Info 64 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:29.000] Files (2) -Info 66 [00:02:32.000] ----------------------------------------------- -Info 66 [00:02:33.000] Open files: -Info 66 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 64 [00:02:30.000] ----------------------------------------------- +Info 64 [00:02:31.000] Open files: +Info 64 [00:02:32.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 64 [00:02:33.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1143,11 +1141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:36.000] response: +Info 64 [00:02:34.000] response: { "responseRequired": false } -Info 67 [00:02:37.000] request: +Info 65 [00:02:35.000] request: { "seq": 0, "type": "request", @@ -1186,23 +1184,23 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [00:02:39.000] Search path: /user/username/projects/myproject/random -Info 70 [00:02:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [00:02:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 72 [00:02:42.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 72 [00:02:43.000] Files (2) +Info 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 +Info 69 [00:02:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 70 [00:02:40.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 70 [00:02:41.000] Files (2) -Info 72 [00:02:44.000] ----------------------------------------------- -Info 72 [00:02:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 72 [00:02:46.000] Files (2) +Info 70 [00:02:42.000] ----------------------------------------------- +Info 70 [00:02:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 70 [00:02:44.000] Files (2) -Info 72 [00:02:47.000] ----------------------------------------------- -Info 72 [00:02:48.000] Open files: -Info 72 [00:02:49.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 72 [00:02:50.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [00:02:51.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 72 [00:02:52.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 70 [00:02:45.000] ----------------------------------------------- +Info 70 [00:02:46.000] Open files: +Info 70 [00:02:47.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 70 [00:02:48.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 70 [00:02:49.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 70 [00:02:50.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1229,11 +1227,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:53.000] response: +Info 70 [00:02:51.000] response: { "responseRequired": false } -Info 73 [00:02:54.000] request: +Info 71 [00:02:52.000] request: { "seq": 0, "type": "request", @@ -1268,18 +1266,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 75 [00:02:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 75 [00:02:57.000] Files (2) +Info 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) -Info 75 [00:02:58.000] ----------------------------------------------- -Info 75 [00:02:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 75 [00:03:00.000] Files (2) +Info 73 [00:02:56.000] ----------------------------------------------- +Info 73 [00:02:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 73 [00:02:58.000] Files (2) -Info 75 [00:03:01.000] ----------------------------------------------- -Info 75 [00:03:02.000] Open files: -Info 75 [00:03:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 75 [00:03:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 73 [00:02:59.000] ----------------------------------------------- +Info 73 [00:03:00.000] Open files: +Info 73 [00:03:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 73 [00:03:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1308,11 +1306,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 75 [00:03:05.000] response: +Info 73 [00:03:03.000] response: { "responseRequired": false } -Info 76 [00:03:06.000] request: +Info 74 [00:03:04.000] request: { "seq": 0, "type": "request", @@ -1349,16 +1347,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:03:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 78 [00:03:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 78 [00:03:09.000] Files (2) +Info 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) -Info 78 [00:03:10.000] ----------------------------------------------- -Info 78 [00:03:11.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 78 [00:03:12.000] Files (2) +Info 76 [00:03:08.000] ----------------------------------------------- +Info 76 [00:03:09.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 76 [00:03:10.000] Files (2) -Info 78 [00:03:13.000] ----------------------------------------------- -Info 78 [00:03:14.000] Open files: +Info 76 [00:03:11.000] ----------------------------------------------- +Info 76 [00:03:12.000] Open files: After request PolledWatches:: @@ -1389,11 +1387,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [00:03:15.000] response: +Info 76 [00:03:13.000] response: { "responseRequired": false } -Info 79 [00:03:16.000] request: +Info 77 [00:03:14.000] request: { "seq": 0, "type": "request", @@ -1432,12 +1430,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 81 [00:03:18.000] Search path: /user/username/projects/myproject/random -Info 82 [00:03:19.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 83 [00:03:20.000] `remove Project:: -Info 84 [00:03:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 85 [00:03:22.000] Files (2) +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 +Info 81 [00:03:18.000] `remove Project:: +Info 82 [00:03:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 83 [00:03:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1447,23 +1445,23 @@ Info 85 [00:03:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 86 [00:03:23.000] ----------------------------------------------- -Info 87 [00:03:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 88 [00:03:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 89 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 90 [00:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 91 [00:03:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 92 [00:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 93 [00:03:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 94 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 95 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 96 [00:03:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [00:03:34.000] Files (2) - -Info 96 [00:03:35.000] ----------------------------------------------- -Info 96 [00:03:36.000] Open files: -Info 96 [00:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [00:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 84 [00:03:21.000] ----------------------------------------------- +Info 85 [00:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 86 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 87 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 88 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 89 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 90 [00:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 91 [00:03:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 92 [00:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 93 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 94 [00:03:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 94 [00:03:32.000] Files (2) + +Info 94 [00:03:33.000] ----------------------------------------------- +Info 94 [00:03:34.000] Open files: +Info 94 [00:03:35.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 94 [00:03:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1482,7 +1480,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:39.000] response: +Info 94 [00:03:37.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dts-not-present.js index e56fdf01f400d..50aa5088f6d4f 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 @@ -209,16 +209,15 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:22.000] Files (2) +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -228,16 +227,16 @@ Info 18 [00:01:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:23.000] ----------------------------------------------- -Info 20 [00:01:24.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:27.000] Files (2) +Info 18 [00:01:22.000] ----------------------------------------------- +Info 19 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:26.000] Files (2) -Info 22 [00:01:28.000] ----------------------------------------------- -Info 22 [00:01:29.000] Open files: -Info 22 [00:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:27.000] ----------------------------------------------- +Info 21 [00:01:28.000] Open files: +Info 21 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -256,11 +255,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:32.000] response: +Info 21 [00:01:31.000] response: { "responseRequired": false } -Info 23 [00:01:33.000] request: +Info 22 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -287,11 +286,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:34.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -299,17 +298,16 @@ Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:49.000] Files (2) +Info 28 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:47.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -319,20 +317,20 @@ Info 39 [00:01:49.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:50.000] ----------------------------------------------- -Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:52.000] Files (2) +Info 38 [00:01:48.000] ----------------------------------------------- +Info 39 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:50.000] Files (2) -Info 41 [00:01:53.000] ----------------------------------------------- -Info 41 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:55.000] Files (2) +Info 39 [00:01:51.000] ----------------------------------------------- +Info 39 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:53.000] Files (2) -Info 41 [00:01:56.000] ----------------------------------------------- -Info 41 [00:01:57.000] Open files: -Info 41 [00:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:54.000] ----------------------------------------------- +Info 39 [00:01:55.000] Open files: +Info 39 [00:01:56.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:57.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -357,11 +355,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:02.000] response: +Info 39 [00:02:00.000] response: { "responseRequired": false } -Info 42 [00:02:03.000] request: +Info 40 [00:02:01.000] request: { "command": "rename", "arguments": { @@ -396,7 +394,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +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 PolledWatches:: @@ -423,7 +421,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [00:02:05.000] response: +Info 42 [00:02:03.000] response: { "response": { "info": { @@ -471,7 +469,7 @@ Info 44 [00:02:05.000] response: }, "responseRequired": true } -Info 45 [00:02:06.000] request: +Info 43 [00:02:04.000] request: { "command": "rename", "arguments": { @@ -534,7 +532,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [00:02:07.000] response: +Info 44 [00:02:05.000] response: { "response": { "info": { @@ -582,7 +580,7 @@ Info 46 [00:02:07.000] response: }, "responseRequired": true } -Info 47 [00:02:08.000] request: +Info 45 [00:02:06.000] request: { "command": "rename", "arguments": { @@ -645,7 +643,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:09.000] response: +Info 46 [00:02:07.000] response: { "response": { "info": { @@ -693,7 +691,7 @@ Info 48 [00:02:09.000] response: }, "responseRequired": true } -Info 49 [00:02:10.000] request: +Info 47 [00:02:08.000] request: { "command": "rename", "arguments": { @@ -756,7 +754,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:11.000] response: +Info 48 [00:02:09.000] response: { "response": { "info": { @@ -804,7 +802,7 @@ Info 50 [00:02:11.000] response: }, "responseRequired": true } -Info 51 [00:02:12.000] request: +Info 49 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -867,7 +865,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:13.000] response: +Info 50 [00:02:11.000] response: { "response": { "info": { @@ -915,7 +913,7 @@ Info 52 [00:02:13.000] response: }, "responseRequired": true } -Info 53 [00:02:14.000] request: +Info 51 [00:02:12.000] request: { "seq": 0, "type": "request", @@ -950,18 +948,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 55 [00:02:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [00:02:17.000] Files (2) +Info 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) -Info 55 [00:02:18.000] ----------------------------------------------- -Info 55 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 55 [00:02:20.000] Files (2) +Info 53 [00:02:16.000] ----------------------------------------------- +Info 53 [00:02:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 53 [00:02:18.000] Files (2) -Info 55 [00:02:21.000] ----------------------------------------------- -Info 55 [00:02:22.000] Open files: -Info 55 [00:02:23.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 55 [00:02:24.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:19.000] ----------------------------------------------- +Info 53 [00:02:20.000] Open files: +Info 53 [00:02:21.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 53 [00:02:22.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -990,11 +988,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:25.000] response: +Info 53 [00:02:23.000] response: { "responseRequired": false } -Info 56 [00:02:26.000] request: +Info 54 [00:02:24.000] request: { "seq": 0, "type": "request", @@ -1031,22 +1029,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 58 [00:02:28.000] Search path: /user/username/projects/myproject/random -Info 59 [00:02:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 60 [00:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 60 [00:02:31.000] Files (2) +Info 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 +Info 58 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 58 [00:02:29.000] Files (2) -Info 60 [00:02:32.000] ----------------------------------------------- -Info 60 [00:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 60 [00:02:34.000] Files (2) +Info 58 [00:02:30.000] ----------------------------------------------- +Info 58 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 58 [00:02:32.000] Files (2) -Info 60 [00:02:35.000] ----------------------------------------------- -Info 60 [00:02:36.000] Open files: -Info 60 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 60 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 60 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 60 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 58 [00:02:33.000] ----------------------------------------------- +Info 58 [00:02:34.000] Open files: +Info 58 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 58 [00:02:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 58 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 58 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1073,11 +1071,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:41.000] response: +Info 58 [00:02:39.000] response: { "responseRequired": false } -Info 61 [00:02:42.000] request: +Info 59 [00:02:40.000] request: { "seq": 0, "type": "request", @@ -1112,18 +1110,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 63 [00:02:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 63 [00:02:45.000] Files (2) +Info 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) -Info 63 [00:02:46.000] ----------------------------------------------- -Info 63 [00:02:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:48.000] Files (2) +Info 61 [00:02:44.000] ----------------------------------------------- +Info 61 [00:02:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:46.000] Files (2) -Info 63 [00:02:49.000] ----------------------------------------------- -Info 63 [00:02:50.000] Open files: -Info 63 [00:02:51.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 63 [00:02:52.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:47.000] ----------------------------------------------- +Info 61 [00:02:48.000] Open files: +Info 61 [00:02:49.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 61 [00:02:50.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1152,11 +1150,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:53.000] response: +Info 61 [00:02:51.000] response: { "responseRequired": false } -Info 64 [00:02:54.000] request: +Info 62 [00:02:52.000] request: { "seq": 0, "type": "request", @@ -1193,16 +1191,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [00:02:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:57.000] Files (2) +Info 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) -Info 66 [00:02:58.000] ----------------------------------------------- -Info 66 [00:02:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:03:00.000] Files (2) +Info 64 [00:02:56.000] ----------------------------------------------- +Info 64 [00:02:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:58.000] Files (2) -Info 66 [00:03:01.000] ----------------------------------------------- -Info 66 [00:03:02.000] Open files: +Info 64 [00:02:59.000] ----------------------------------------------- +Info 64 [00:03:00.000] Open files: After request PolledWatches:: @@ -1233,11 +1231,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:03:03.000] response: +Info 64 [00:03:01.000] response: { "responseRequired": false } -Info 67 [00:03:04.000] request: +Info 65 [00:03:02.000] request: { "seq": 0, "type": "request", @@ -1276,12 +1274,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [00:03:06.000] Search path: /user/username/projects/myproject/random -Info 70 [00:03:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [00:03:08.000] `remove Project:: -Info 72 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 73 [00:03:10.000] Files (2) +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 +Info 69 [00:03:06.000] `remove Project:: +Info 70 [00:03:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 71 [00:03:08.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1291,23 +1289,23 @@ Info 73 [00:03:10.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 74 [00:03:11.000] ----------------------------------------------- -Info 75 [00:03:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 76 [00:03:13.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 77 [00:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 78 [00:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 79 [00:03:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 80 [00:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 81 [00:03:18.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 82 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 83 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 84 [00:03:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 84 [00:03:22.000] Files (2) - -Info 84 [00:03:23.000] ----------------------------------------------- -Info 84 [00:03:24.000] Open files: -Info 84 [00:03:25.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 84 [00:03:26.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:03:09.000] ----------------------------------------------- +Info 73 [00:03:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 74 [00:03:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 75 [00:03:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 76 [00:03:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 77 [00:03:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 78 [00:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 79 [00:03:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 80 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 81 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 82 [00:03:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 82 [00:03:20.000] Files (2) + +Info 82 [00:03:21.000] ----------------------------------------------- +Info 82 [00:03:22.000] Open files: +Info 82 [00:03:23.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 82 [00:03:24.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1326,7 +1324,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:03:27.000] response: +Info 82 [00:03:25.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js index 7f2bd0fccd9fa..c22161221b457 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 @@ -217,16 +217,15 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:21.000] Files (2) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:22.000] ----------------------------------------------- -Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:26.000] Files (2) +Info 18 [00:01:21.000] ----------------------------------------------- +Info 19 [00:01:22.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:23.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (2) -Info 22 [00:01:27.000] ----------------------------------------------- -Info 22 [00:01:28.000] Open files: -Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:26.000] ----------------------------------------------- +Info 21 [00:01:27.000] Open files: +Info 21 [00:01:28.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:31.000] response: +Info 21 [00:01:30.000] response: { "responseRequired": false } -Info 23 [00:01:32.000] request: +Info 22 [00:01:31.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:36.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:48.000] Files (2) +Info 28 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 38 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:54.000] Files (2) +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:52.000] Files (2) -Info 41 [00:01:55.000] ----------------------------------------------- -Info 41 [00:01:56.000] Open files: -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:53.000] ----------------------------------------------- +Info 39 [00:01:54.000] Open files: +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:01.000] response: +Info 39 [00:01:59.000] response: { "responseRequired": false } -Info 42 [00:02:02.000] request: +Info 40 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:05.000] response: +Info 43 [00:02:03.000] response: { "response": { "info": { @@ -482,10 +480,10 @@ Info 45 [00:02:05.000] response: }, "responseRequired": true } -Info 46 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 44 [00:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 45 [00:02:08.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:02:09.000] Scheduled: *ensureProjectForOpenFiles* +Info 47 [00:02:10.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts.map] {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} @@ -517,38 +515,38 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:13.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 51 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 53 [00:02:16.000] Running: *ensureProjectForOpenFiles* -Info 54 [00:02:17.000] Before ensureProjectForOpenFiles: -Info 55 [00:02:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 55 [00:02:19.000] Files (2) - -Info 55 [00:02:20.000] ----------------------------------------------- -Info 55 [00:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 55 [00:02:22.000] Files (2) - -Info 55 [00:02:23.000] ----------------------------------------------- -Info 55 [00:02:24.000] Open files: -Info 55 [00:02:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 55 [00:02:26.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 55 [00:02:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 55 [00:02:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 55 [00:02:29.000] After ensureProjectForOpenFiles: -Info 56 [00:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [00:02:31.000] Files (2) - -Info 56 [00:02:32.000] ----------------------------------------------- -Info 56 [00:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [00:02:34.000] Files (2) - -Info 56 [00:02:35.000] ----------------------------------------------- -Info 56 [00:02:36.000] Open files: -Info 56 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 56 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 56 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 51 [00:02:14.000] Running: *ensureProjectForOpenFiles* +Info 52 [00:02:15.000] Before ensureProjectForOpenFiles: +Info 53 [00:02:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 53 [00:02:17.000] Files (2) + +Info 53 [00:02:18.000] ----------------------------------------------- +Info 53 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 53 [00:02:20.000] Files (2) + +Info 53 [00:02:21.000] ----------------------------------------------- +Info 53 [00:02:22.000] Open files: +Info 53 [00:02:23.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 53 [00:02:24.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 53 [00:02:25.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 53 [00:02:26.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 53 [00:02:27.000] After ensureProjectForOpenFiles: +Info 54 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 54 [00:02:29.000] Files (2) + +Info 54 [00:02:30.000] ----------------------------------------------- +Info 54 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 54 [00:02:32.000] Files (2) + +Info 54 [00:02:33.000] ----------------------------------------------- +Info 54 [00:02:34.000] Open files: +Info 54 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 54 [00:02:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 54 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 54 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -577,7 +575,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:41.000] request: +Info 54 [00:02:39.000] request: { "command": "rename", "arguments": { @@ -644,7 +642,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:42.000] response: +Info 55 [00:02:40.000] response: { "response": { "info": { @@ -692,7 +690,7 @@ Info 57 [00:02:42.000] response: }, "responseRequired": true } -Info 58 [00:02:43.000] request: +Info 56 [00:02:41.000] request: { "command": "rename", "arguments": { @@ -759,7 +757,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:44.000] response: +Info 57 [00:02:42.000] response: { "response": { "info": { @@ -807,7 +805,7 @@ Info 59 [00:02:44.000] response: }, "responseRequired": true } -Info 60 [00:02:45.000] request: +Info 58 [00:02:43.000] request: { "command": "rename", "arguments": { @@ -874,7 +872,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:46.000] response: +Info 59 [00:02:44.000] response: { "response": { "info": { @@ -922,7 +920,7 @@ Info 61 [00:02:46.000] response: }, "responseRequired": true } -Info 62 [00:02:47.000] request: +Info 60 [00:02:45.000] request: { "command": "rename", "arguments": { @@ -989,7 +987,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:48.000] response: +Info 61 [00:02:46.000] response: { "response": { "info": { @@ -1037,7 +1035,7 @@ Info 63 [00:02:48.000] response: }, "responseRequired": true } -Info 64 [00:02:49.000] request: +Info 62 [00:02:47.000] request: { "command": "rename", "arguments": { @@ -1104,7 +1102,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:50.000] response: +Info 63 [00:02:48.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-changes.js index 56e3b1ef82d8b..b26d376f7bc6d 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 @@ -217,16 +217,15 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:21.000] Files (2) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:22.000] ----------------------------------------------- -Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:26.000] Files (2) +Info 18 [00:01:21.000] ----------------------------------------------- +Info 19 [00:01:22.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:23.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (2) -Info 22 [00:01:27.000] ----------------------------------------------- -Info 22 [00:01:28.000] Open files: -Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:26.000] ----------------------------------------------- +Info 21 [00:01:27.000] Open files: +Info 21 [00:01:28.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:31.000] response: +Info 21 [00:01:30.000] response: { "responseRequired": false } -Info 23 [00:01:32.000] request: +Info 22 [00:01:31.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:36.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:48.000] Files (2) +Info 28 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 38 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:54.000] Files (2) +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:52.000] Files (2) -Info 41 [00:01:55.000] ----------------------------------------------- -Info 41 [00:01:56.000] Open files: -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:53.000] ----------------------------------------------- +Info 39 [00:01:54.000] Open files: +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:01.000] response: +Info 39 [00:01:59.000] response: { "responseRequired": false } -Info 42 [00:02:02.000] request: +Info 40 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:05.000] response: +Info 43 [00:02:03.000] response: { "response": { "info": { @@ -482,11 +480,11 @@ Info 45 [00:02:05.000] response: }, "responseRequired": true } -Info 46 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 50 [00:02:13.000] request: +Info 44 [00:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 45 [00:02:08.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:02:09.000] Scheduled: *ensureProjectForOpenFiles* +Info 47 [00:02:10.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 48 [00:02:11.000] request: { "command": "rename", "arguments": { @@ -528,8 +526,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 52 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 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:: @@ -558,7 +556,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [00:02:16.000] response: +Info 51 [00:02:14.000] response: { "response": { "info": { @@ -606,7 +604,7 @@ Info 53 [00:02:16.000] response: }, "responseRequired": true } -Info 54 [00:02:17.000] request: +Info 52 [00:02:15.000] request: { "command": "rename", "arguments": { @@ -673,7 +671,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:18.000] response: +Info 53 [00:02:16.000] response: { "response": { "info": { @@ -721,7 +719,7 @@ Info 55 [00:02:18.000] response: }, "responseRequired": true } -Info 56 [00:02:19.000] request: +Info 54 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -788,7 +786,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:20.000] response: +Info 55 [00:02:18.000] response: { "response": { "info": { @@ -836,7 +834,7 @@ Info 57 [00:02:20.000] response: }, "responseRequired": true } -Info 58 [00:02:21.000] request: +Info 56 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -903,7 +901,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:22.000] response: +Info 57 [00:02:20.000] response: { "response": { "info": { @@ -951,7 +949,7 @@ Info 59 [00:02:22.000] response: }, "responseRequired": true } -Info 60 [00:02:23.000] request: +Info 58 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -1018,7 +1016,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:24.000] response: +Info 59 [00:02:22.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-created.js index 06bab878edbfb..f84300f7d564b 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 @@ -214,16 +214,15 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:22.000] Files (2) +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -233,16 +232,16 @@ Info 18 [00:01:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:23.000] ----------------------------------------------- -Info 20 [00:01:24.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:27.000] Files (2) +Info 18 [00:01:22.000] ----------------------------------------------- +Info 19 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:26.000] Files (2) -Info 22 [00:01:28.000] ----------------------------------------------- -Info 22 [00:01:29.000] Open files: -Info 22 [00:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:27.000] ----------------------------------------------- +Info 21 [00:01:28.000] Open files: +Info 21 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -261,11 +260,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:32.000] response: +Info 21 [00:01:31.000] response: { "responseRequired": false } -Info 23 [00:01:33.000] request: +Info 22 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -292,11 +291,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:34.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -304,17 +303,16 @@ Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:49.000] Files (2) +Info 28 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:47.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -324,20 +322,20 @@ Info 39 [00:01:49.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:50.000] ----------------------------------------------- -Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:52.000] Files (2) +Info 38 [00:01:48.000] ----------------------------------------------- +Info 39 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:50.000] Files (2) -Info 41 [00:01:53.000] ----------------------------------------------- -Info 41 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:55.000] Files (2) +Info 39 [00:01:51.000] ----------------------------------------------- +Info 39 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:53.000] Files (2) -Info 41 [00:01:56.000] ----------------------------------------------- -Info 41 [00:01:57.000] Open files: -Info 41 [00:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:54.000] ----------------------------------------------- +Info 39 [00:01:55.000] Open files: +Info 39 [00:01:56.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:57.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -362,11 +360,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:02.000] response: +Info 39 [00:02:00.000] response: { "responseRequired": false } -Info 42 [00:02:03.000] request: +Info 40 [00:02:01.000] request: { "command": "rename", "arguments": { @@ -401,8 +399,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +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 PolledWatches:: @@ -431,7 +429,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:06.000] response: +Info 43 [00:02:04.000] response: { "response": { "info": { @@ -479,12 +477,12 @@ Info 45 [00:02:06.000] response: }, "responseRequired": true } -Info 46 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* -Info 49 [00:02:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 50 [00:02:13.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 51 [00:02:14.000] request: +Info 44 [00:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 45 [00:02:08.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 46 [00:02:09.000] Scheduled: *ensureProjectForOpenFiles* +Info 47 [00:02:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 48 [00:02:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 49 [00:02:12.000] request: { "command": "rename", "arguments": { @@ -524,9 +522,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 53 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 54 [00:02:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 50 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 51 [00:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 52 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -555,7 +553,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:18.000] response: +Info 53 [00:02:16.000] response: { "response": { "info": { @@ -603,7 +601,7 @@ Info 55 [00:02:18.000] response: }, "responseRequired": true } -Info 56 [00:02:19.000] request: +Info 54 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -670,7 +668,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:20.000] response: +Info 55 [00:02:18.000] response: { "response": { "info": { @@ -718,7 +716,7 @@ Info 57 [00:02:20.000] response: }, "responseRequired": true } -Info 58 [00:02:21.000] request: +Info 56 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -785,7 +783,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:22.000] response: +Info 57 [00:02:20.000] response: { "response": { "info": { @@ -833,7 +831,7 @@ Info 59 [00:02:22.000] response: }, "responseRequired": true } -Info 60 [00:02:23.000] request: +Info 58 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -900,7 +898,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:24.000] response: +Info 59 [00:02:22.000] response: { "response": { "info": { @@ -948,7 +946,7 @@ Info 61 [00:02:24.000] response: }, "responseRequired": true } -Info 62 [00:02:25.000] request: +Info 60 [00:02:23.000] request: { "command": "rename", "arguments": { @@ -1015,7 +1013,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:26.000] response: +Info 61 [00:02:24.000] response: { "response": { "info": { @@ -1063,7 +1061,7 @@ Info 63 [00:02:26.000] response: }, "responseRequired": true } -Info 64 [00:02:27.000] request: +Info 62 [00:02:25.000] request: { "seq": 0, "type": "request", @@ -1100,18 +1098,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [00:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:30.000] Files (2) +Info 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) -Info 66 [00:02:31.000] ----------------------------------------------- -Info 66 [00:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:33.000] Files (2) +Info 64 [00:02:29.000] ----------------------------------------------- +Info 64 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:31.000] Files (2) -Info 66 [00:02:34.000] ----------------------------------------------- -Info 66 [00:02:35.000] Open files: -Info 66 [00:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 64 [00:02:32.000] ----------------------------------------------- +Info 64 [00:02:33.000] Open files: +Info 64 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 64 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1142,11 +1140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:38.000] response: +Info 64 [00:02:36.000] response: { "responseRequired": false } -Info 67 [00:02:39.000] request: +Info 65 [00:02:37.000] request: { "seq": 0, "type": "request", @@ -1185,22 +1183,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [00:02:41.000] Search path: /user/username/projects/myproject/random -Info 70 [00:02:42.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [00:02:43.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 71 [00:02:44.000] Files (2) +Info 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 +Info 69 [00:02:41.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 69 [00:02:42.000] Files (2) -Info 71 [00:02:45.000] ----------------------------------------------- -Info 71 [00:02:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [00:02:47.000] Files (2) +Info 69 [00:02:43.000] ----------------------------------------------- +Info 69 [00:02:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 69 [00:02:45.000] Files (2) -Info 71 [00:02:48.000] ----------------------------------------------- -Info 71 [00:02:49.000] Open files: -Info 71 [00:02:50.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 71 [00:02:51.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 71 [00:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 71 [00:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 69 [00:02:46.000] ----------------------------------------------- +Info 69 [00:02:47.000] Open files: +Info 69 [00:02:48.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 69 [00:02:49.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 69 [00:02:50.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 69 [00:02:51.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1229,11 +1227,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [00:02:54.000] response: +Info 69 [00:02:52.000] response: { "responseRequired": false } -Info 72 [00:02:55.000] request: +Info 70 [00:02:53.000] request: { "seq": 0, "type": "request", @@ -1270,18 +1268,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [00:02:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 74 [00:02:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [00:02:58.000] Files (2) +Info 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) -Info 74 [00:02:59.000] ----------------------------------------------- -Info 74 [00:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [00:03:01.000] Files (2) +Info 72 [00:02:57.000] ----------------------------------------------- +Info 72 [00:02:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 72 [00:02:59.000] Files (2) -Info 74 [00:03:02.000] ----------------------------------------------- -Info 74 [00:03:03.000] Open files: -Info 74 [00:03:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [00:03:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:03:00.000] ----------------------------------------------- +Info 72 [00:03:01.000] Open files: +Info 72 [00:03:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 72 [00:03:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1312,11 +1310,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:03:06.000] response: +Info 72 [00:03:04.000] response: { "responseRequired": false } -Info 75 [00:03:07.000] request: +Info 73 [00:03:05.000] request: { "seq": 0, "type": "request", @@ -1355,16 +1353,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:03:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 77 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 77 [00:03:10.000] Files (2) +Info 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) -Info 77 [00:03:11.000] ----------------------------------------------- -Info 77 [00:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [00:03:13.000] Files (2) +Info 75 [00:03:09.000] ----------------------------------------------- +Info 75 [00:03:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 75 [00:03:11.000] Files (2) -Info 77 [00:03:14.000] ----------------------------------------------- -Info 77 [00:03:15.000] Open files: +Info 75 [00:03:12.000] ----------------------------------------------- +Info 75 [00:03:13.000] Open files: After request PolledWatches:: @@ -1397,11 +1395,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:03:16.000] response: +Info 75 [00:03:14.000] response: { "responseRequired": false } -Info 78 [00:03:17.000] request: +Info 76 [00:03:15.000] request: { "seq": 0, "type": "request", @@ -1442,12 +1440,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 80 [00:03:19.000] Search path: /user/username/projects/myproject/random -Info 81 [00:03:20.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 82 [00:03:21.000] `remove Project:: -Info 83 [00:03:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 84 [00:03:23.000] Files (2) +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 +Info 80 [00:03:19.000] `remove Project:: +Info 81 [00:03:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 82 [00:03:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1457,24 +1455,24 @@ Info 84 [00:03:23.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 85 [00:03:24.000] ----------------------------------------------- -Info 86 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 87 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 88 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 89 [00:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 90 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 91 [00:03:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 92 [00:03:31.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 93 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 94 [00:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 95 [00:03:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 96 [00:03:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [00:03:36.000] Files (2) - -Info 96 [00:03:37.000] ----------------------------------------------- -Info 96 [00:03:38.000] Open files: -Info 96 [00:03:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [00:03:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 83 [00:03:22.000] ----------------------------------------------- +Info 84 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 85 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 86 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 87 [00:03:26.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 88 [00:03:27.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 89 [00:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 90 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 91 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 92 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 93 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 94 [00:03:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 94 [00:03:34.000] Files (2) + +Info 94 [00:03:35.000] ----------------------------------------------- +Info 94 [00:03:36.000] Open files: +Info 94 [00:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 94 [00:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1493,7 +1491,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:41.000] response: +Info 94 [00:03:39.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-deleted.js index 91a7cac3b4a63..01627a0fe82f6 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 @@ -217,16 +217,15 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:21.000] Files (2) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:22.000] ----------------------------------------------- -Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:26.000] Files (2) +Info 18 [00:01:21.000] ----------------------------------------------- +Info 19 [00:01:22.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:23.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (2) -Info 22 [00:01:27.000] ----------------------------------------------- -Info 22 [00:01:28.000] Open files: -Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:26.000] ----------------------------------------------- +Info 21 [00:01:27.000] Open files: +Info 21 [00:01:28.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:31.000] response: +Info 21 [00:01:30.000] response: { "responseRequired": false } -Info 23 [00:01:32.000] request: +Info 22 [00:01:31.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:36.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:48.000] Files (2) +Info 28 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 38 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:54.000] Files (2) +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:52.000] Files (2) -Info 41 [00:01:55.000] ----------------------------------------------- -Info 41 [00:01:56.000] Open files: -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:53.000] ----------------------------------------------- +Info 39 [00:01:54.000] Open files: +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:01.000] response: +Info 39 [00:01:59.000] response: { "responseRequired": false } -Info 42 [00:02:02.000] request: +Info 40 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:05.000] response: +Info 43 [00:02:03.000] response: { "response": { "info": { @@ -482,12 +480,12 @@ Info 45 [00:02:05.000] response: }, "responseRequired": true } -Info 46 [00:02:07.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [00:02:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 48 [00:02:09.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 49 [00:02:10.000] Scheduled: *ensureProjectForOpenFiles* -Info 50 [00:02:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [00:02:12.000] request: +Info 44 [00:02:05.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 45 [00:02:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 46 [00:02:07.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 47 [00:02:08.000] Scheduled: *ensureProjectForOpenFiles* +Info 48 [00:02:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 49 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -525,9 +523,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 53 [00:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 54 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 50 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 51 [00:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 52 [00:02:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -556,7 +554,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:16.000] response: +Info 53 [00:02:14.000] response: { "response": { "info": { @@ -604,7 +602,7 @@ Info 55 [00:02:16.000] response: }, "responseRequired": true } -Info 56 [00:02:17.000] request: +Info 54 [00:02:15.000] request: { "command": "rename", "arguments": { @@ -671,7 +669,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:18.000] response: +Info 55 [00:02:16.000] response: { "response": { "info": { @@ -719,7 +717,7 @@ Info 57 [00:02:18.000] response: }, "responseRequired": true } -Info 58 [00:02:19.000] request: +Info 56 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -786,7 +784,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:20.000] response: +Info 57 [00:02:18.000] response: { "response": { "info": { @@ -834,7 +832,7 @@ Info 59 [00:02:20.000] response: }, "responseRequired": true } -Info 60 [00:02:21.000] request: +Info 58 [00:02:19.000] request: { "command": "rename", "arguments": { @@ -901,7 +899,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:22.000] response: +Info 59 [00:02:20.000] response: { "response": { "info": { @@ -949,7 +947,7 @@ Info 61 [00:02:22.000] response: }, "responseRequired": true } -Info 62 [00:02:23.000] request: +Info 60 [00:02:21.000] request: { "command": "rename", "arguments": { @@ -1016,7 +1014,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:24.000] response: +Info 61 [00:02:22.000] response: { "response": { "info": { @@ -1064,7 +1062,7 @@ Info 63 [00:02:24.000] response: }, "responseRequired": true } -Info 64 [00:02:25.000] request: +Info 62 [00:02:23.000] request: { "seq": 0, "type": "request", @@ -1101,18 +1099,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:28.000] Files (2) +Info 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) -Info 66 [00:02:29.000] ----------------------------------------------- -Info 66 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:31.000] Files (2) +Info 64 [00:02:27.000] ----------------------------------------------- +Info 64 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:29.000] Files (2) -Info 66 [00:02:32.000] ----------------------------------------------- -Info 66 [00:02:33.000] Open files: -Info 66 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 64 [00:02:30.000] ----------------------------------------------- +Info 64 [00:02:31.000] Open files: +Info 64 [00:02:32.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 64 [00:02:33.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1143,11 +1141,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:36.000] response: +Info 64 [00:02:34.000] response: { "responseRequired": false } -Info 67 [00:02:37.000] request: +Info 65 [00:02:35.000] request: { "seq": 0, "type": "request", @@ -1186,22 +1184,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [00:02:39.000] Search path: /user/username/projects/myproject/random -Info 70 [00:02:40.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [00:02:41.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 71 [00:02:42.000] Files (2) +Info 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 +Info 69 [00:02:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 69 [00:02:40.000] Files (2) -Info 71 [00:02:43.000] ----------------------------------------------- -Info 71 [00:02:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [00:02:45.000] Files (2) +Info 69 [00:02:41.000] ----------------------------------------------- +Info 69 [00:02:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 69 [00:02:43.000] Files (2) -Info 71 [00:02:46.000] ----------------------------------------------- -Info 71 [00:02:47.000] Open files: -Info 71 [00:02:48.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 71 [00:02:49.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 71 [00:02:50.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 71 [00:02:51.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 69 [00:02:44.000] ----------------------------------------------- +Info 69 [00:02:45.000] Open files: +Info 69 [00:02:46.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 69 [00:02:47.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 69 [00:02:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 69 [00:02:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1230,11 +1228,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [00:02:52.000] response: +Info 69 [00:02:50.000] response: { "responseRequired": false } -Info 72 [00:02:53.000] request: +Info 70 [00:02:51.000] request: { "seq": 0, "type": "request", @@ -1271,18 +1269,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [00:02:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 74 [00:02:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [00:02:56.000] Files (2) +Info 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) -Info 74 [00:02:57.000] ----------------------------------------------- -Info 74 [00:02:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [00:02:59.000] Files (2) +Info 72 [00:02:55.000] ----------------------------------------------- +Info 72 [00:02:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 72 [00:02:57.000] Files (2) -Info 74 [00:03:00.000] ----------------------------------------------- -Info 74 [00:03:01.000] Open files: -Info 74 [00:03:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [00:03:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:02:58.000] ----------------------------------------------- +Info 72 [00:02:59.000] Open files: +Info 72 [00:03:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 72 [00:03:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1313,11 +1311,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:03:04.000] response: +Info 72 [00:03:02.000] response: { "responseRequired": false } -Info 75 [00:03:05.000] request: +Info 73 [00:03:03.000] request: { "seq": 0, "type": "request", @@ -1356,16 +1354,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:03:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 77 [00:03:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 77 [00:03:08.000] Files (2) +Info 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) -Info 77 [00:03:09.000] ----------------------------------------------- -Info 77 [00:03:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [00:03:11.000] Files (2) +Info 75 [00:03:07.000] ----------------------------------------------- +Info 75 [00:03:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 75 [00:03:09.000] Files (2) -Info 77 [00:03:12.000] ----------------------------------------------- -Info 77 [00:03:13.000] Open files: +Info 75 [00:03:10.000] ----------------------------------------------- +Info 75 [00:03:11.000] Open files: After request PolledWatches:: @@ -1398,11 +1396,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:03:14.000] response: +Info 75 [00:03:12.000] response: { "responseRequired": false } -Info 78 [00:03:15.000] request: +Info 76 [00:03:13.000] request: { "seq": 0, "type": "request", @@ -1443,12 +1441,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [00:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 80 [00:03:17.000] Search path: /user/username/projects/myproject/random -Info 81 [00:03:18.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 82 [00:03:19.000] `remove Project:: -Info 83 [00:03:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 84 [00:03:21.000] Files (2) +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 +Info 80 [00:03:17.000] `remove Project:: +Info 81 [00:03:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 82 [00:03:19.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1458,24 +1456,24 @@ Info 84 [00:03:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 85 [00:03:22.000] ----------------------------------------------- -Info 86 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 87 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 88 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 89 [00:03:26.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 90 [00:03:27.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 91 [00:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 92 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 93 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 94 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 95 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 96 [00:03:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [00:03:34.000] Files (2) - -Info 96 [00:03:35.000] ----------------------------------------------- -Info 96 [00:03:36.000] Open files: -Info 96 [00:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [00:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 83 [00:03:20.000] ----------------------------------------------- +Info 84 [00:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 85 [00:03:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 86 [00:03:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 87 [00:03:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 88 [00:03:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 89 [00:03:26.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 90 [00:03:27.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 91 [00:03:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 92 [00:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 93 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 94 [00:03:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 94 [00:03:32.000] Files (2) + +Info 94 [00:03:33.000] ----------------------------------------------- +Info 94 [00:03:34.000] Open files: +Info 94 [00:03:35.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 94 [00:03:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1494,7 +1492,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:39.000] response: +Info 94 [00:03:37.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/dependency-dtsMap-not-present.js index 7bcd0513c3ecc..5f7913b6c2375 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 @@ -214,16 +214,15 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:22.000] Files (2) +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -233,16 +232,16 @@ Info 18 [00:01:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:23.000] ----------------------------------------------- -Info 20 [00:01:24.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:27.000] Files (2) +Info 18 [00:01:22.000] ----------------------------------------------- +Info 19 [00:01:23.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:26.000] Files (2) -Info 22 [00:01:28.000] ----------------------------------------------- -Info 22 [00:01:29.000] Open files: -Info 22 [00:01:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:27.000] ----------------------------------------------- +Info 21 [00:01:28.000] Open files: +Info 21 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -261,11 +260,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:32.000] response: +Info 21 [00:01:31.000] response: { "responseRequired": false } -Info 23 [00:01:33.000] request: +Info 22 [00:01:32.000] request: { "seq": 0, "type": "request", @@ -292,11 +291,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:34.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:35.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:36.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -304,17 +303,16 @@ Info 28 [00:01:38.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:49.000] Files (2) +Info 28 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:47.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -324,20 +322,20 @@ Info 39 [00:01:49.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:50.000] ----------------------------------------------- -Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:52.000] Files (2) +Info 38 [00:01:48.000] ----------------------------------------------- +Info 39 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:50.000] Files (2) -Info 41 [00:01:53.000] ----------------------------------------------- -Info 41 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:55.000] Files (2) +Info 39 [00:01:51.000] ----------------------------------------------- +Info 39 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:53.000] Files (2) -Info 41 [00:01:56.000] ----------------------------------------------- -Info 41 [00:01:57.000] Open files: -Info 41 [00:01:58.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:59.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:54.000] ----------------------------------------------- +Info 39 [00:01:55.000] Open files: +Info 39 [00:01:56.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:57.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -362,11 +360,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:02.000] response: +Info 39 [00:02:00.000] response: { "responseRequired": false } -Info 42 [00:02:03.000] request: +Info 40 [00:02:01.000] request: { "command": "rename", "arguments": { @@ -401,8 +399,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +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 PolledWatches:: @@ -431,7 +429,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:06.000] response: +Info 43 [00:02:04.000] response: { "response": { "info": { @@ -479,7 +477,7 @@ Info 45 [00:02:06.000] response: }, "responseRequired": true } -Info 46 [00:02:07.000] request: +Info 44 [00:02:05.000] request: { "command": "rename", "arguments": { @@ -546,7 +544,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [00:02:08.000] response: +Info 45 [00:02:06.000] response: { "response": { "info": { @@ -594,7 +592,7 @@ Info 47 [00:02:08.000] response: }, "responseRequired": true } -Info 48 [00:02:09.000] request: +Info 46 [00:02:07.000] request: { "command": "rename", "arguments": { @@ -661,7 +659,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [00:02:10.000] response: +Info 47 [00:02:08.000] response: { "response": { "info": { @@ -709,7 +707,7 @@ Info 49 [00:02:10.000] response: }, "responseRequired": true } -Info 50 [00:02:11.000] request: +Info 48 [00:02:09.000] request: { "command": "rename", "arguments": { @@ -776,7 +774,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [00:02:12.000] response: +Info 49 [00:02:10.000] response: { "response": { "info": { @@ -824,7 +822,7 @@ Info 51 [00:02:12.000] response: }, "responseRequired": true } -Info 52 [00:02:13.000] request: +Info 50 [00:02:11.000] request: { "command": "rename", "arguments": { @@ -891,7 +889,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [00:02:14.000] response: +Info 51 [00:02:12.000] response: { "response": { "info": { @@ -939,7 +937,7 @@ Info 53 [00:02:14.000] response: }, "responseRequired": true } -Info 54 [00:02:15.000] request: +Info 52 [00:02:13.000] request: { "seq": 0, "type": "request", @@ -976,18 +974,18 @@ FsWatchesRecursive:: /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/dependency/tsconfig.json' (Configured) -Info 56 [00:02:18.000] Files (2) +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) -Info 56 [00:02:19.000] ----------------------------------------------- -Info 56 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [00:02:21.000] Files (2) +Info 54 [00:02:17.000] ----------------------------------------------- +Info 54 [00:02:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 54 [00:02:19.000] Files (2) -Info 56 [00:02:22.000] ----------------------------------------------- -Info 56 [00:02:23.000] Open files: -Info 56 [00:02:24.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [00:02:25.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 54 [00:02:20.000] ----------------------------------------------- +Info 54 [00:02:21.000] Open files: +Info 54 [00:02:22.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 54 [00:02:23.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1018,11 +1016,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:26.000] response: +Info 54 [00:02:24.000] response: { "responseRequired": false } -Info 57 [00:02:27.000] request: +Info 55 [00:02:25.000] request: { "seq": 0, "type": "request", @@ -1061,22 +1059,22 @@ FsWatchesRecursive:: /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 -Info 61 [00:02:31.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 61 [00:02:32.000] Files (2) +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 +Info 59 [00:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 59 [00:02:30.000] Files (2) -Info 61 [00:02:33.000] ----------------------------------------------- -Info 61 [00:02:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [00:02:35.000] Files (2) +Info 59 [00:02:31.000] ----------------------------------------------- +Info 59 [00:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 59 [00:02:33.000] Files (2) -Info 61 [00:02:36.000] ----------------------------------------------- -Info 61 [00:02:37.000] Open files: -Info 61 [00:02:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 61 [00:02:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 61 [00:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 61 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 59 [00:02:34.000] ----------------------------------------------- +Info 59 [00:02:35.000] Open files: +Info 59 [00:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 59 [00:02:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 59 [00:02:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 59 [00:02:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1105,11 +1103,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:42.000] response: +Info 59 [00:02:40.000] response: { "responseRequired": false } -Info 62 [00:02:43.000] request: +Info 60 [00:02:41.000] request: { "seq": 0, "type": "request", @@ -1146,18 +1144,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 64 [00:02:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 64 [00:02:46.000] Files (2) +Info 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) -Info 64 [00:02:47.000] ----------------------------------------------- -Info 64 [00:02:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:49.000] Files (2) +Info 62 [00:02:45.000] ----------------------------------------------- +Info 62 [00:02:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:47.000] Files (2) -Info 64 [00:02:50.000] ----------------------------------------------- -Info 64 [00:02:51.000] Open files: -Info 64 [00:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [00:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:48.000] ----------------------------------------------- +Info 62 [00:02:49.000] Open files: +Info 62 [00:02:50.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:51.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1188,11 +1186,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:54.000] response: +Info 62 [00:02:52.000] response: { "responseRequired": false } -Info 65 [00:02:55.000] request: +Info 63 [00:02:53.000] request: { "seq": 0, "type": "request", @@ -1231,16 +1229,16 @@ FsWatchesRecursive:: /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/dependency/tsconfig.json' (Configured) -Info 67 [00:02:58.000] Files (2) +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) -Info 67 [00:02:59.000] ----------------------------------------------- -Info 67 [00:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 67 [00:03:01.000] Files (2) +Info 65 [00:02:57.000] ----------------------------------------------- +Info 65 [00:02:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:59.000] Files (2) -Info 67 [00:03:02.000] ----------------------------------------------- -Info 67 [00:03:03.000] Open files: +Info 65 [00:03:00.000] ----------------------------------------------- +Info 65 [00:03:01.000] Open files: After request PolledWatches:: @@ -1273,11 +1271,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:03:04.000] response: +Info 65 [00:03:02.000] response: { "responseRequired": false } -Info 68 [00:03:05.000] request: +Info 66 [00:03:03.000] request: { "seq": 0, "type": "request", @@ -1318,12 +1316,12 @@ FsWatchesRecursive:: /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 -Info 72 [00:03:09.000] `remove Project:: -Info 73 [00:03:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [00:03:11.000] Files (2) +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 +Info 70 [00:03:07.000] `remove Project:: +Info 71 [00:03:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 72 [00:03:09.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1333,24 +1331,24 @@ Info 74 [00:03:11.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 75 [00:03:12.000] ----------------------------------------------- -Info 76 [00:03:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 77 [00:03:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 78 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 79 [00:03:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 80 [00:03:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 81 [00:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 82 [00:03:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 83 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 84 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 85 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 86 [00:03:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 86 [00:03:24.000] Files (2) - -Info 86 [00:03:25.000] ----------------------------------------------- -Info 86 [00:03:26.000] Open files: -Info 86 [00:03:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 86 [00:03:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 73 [00:03:10.000] ----------------------------------------------- +Info 74 [00:03:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 75 [00:03:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 76 [00:03:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 77 [00:03:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 78 [00:03:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 79 [00:03:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 80 [00:03:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 81 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 82 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 83 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 84 [00:03:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 84 [00:03:22.000] Files (2) + +Info 84 [00:03:23.000] ----------------------------------------------- +Info 84 [00:03:24.000] Open files: +Info 84 [00:03:25.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 84 [00:03:26.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1369,7 +1367,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:29.000] response: +Info 84 [00:03:27.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/rename-locations.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/rename-locations.js index 89e9927b60fd4..aec7fcc6197ab 100644 --- a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/rename-locations.js +++ b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/rename-locations.js @@ -217,16 +217,15 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:21.000] Files (2) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:22.000] ----------------------------------------------- -Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:26.000] Files (2) +Info 18 [00:01:21.000] ----------------------------------------------- +Info 19 [00:01:22.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:23.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (2) -Info 22 [00:01:27.000] ----------------------------------------------- -Info 22 [00:01:28.000] Open files: -Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:26.000] ----------------------------------------------- +Info 21 [00:01:27.000] Open files: +Info 21 [00:01:28.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:31.000] response: +Info 21 [00:01:30.000] response: { "responseRequired": false } -Info 23 [00:01:32.000] request: +Info 22 [00:01:31.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:36.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:48.000] Files (2) +Info 28 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 38 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:54.000] Files (2) +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:52.000] Files (2) -Info 41 [00:01:55.000] ----------------------------------------------- -Info 41 [00:01:56.000] Open files: -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:53.000] ----------------------------------------------- +Info 39 [00:01:54.000] Open files: +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:01.000] response: +Info 39 [00:01:59.000] response: { "responseRequired": false } -Info 42 [00:02:02.000] request: +Info 40 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:05.000] response: +Info 43 [00:02:03.000] response: { "response": { "info": { @@ -482,7 +480,7 @@ Info 45 [00:02:05.000] response: }, "responseRequired": true } -Info 46 [00:02:06.000] request: +Info 44 [00:02:04.000] request: { "command": "rename", "arguments": { @@ -549,7 +547,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [00:02:07.000] response: +Info 45 [00:02:05.000] response: { "response": { "info": { @@ -597,7 +595,7 @@ Info 47 [00:02:07.000] response: }, "responseRequired": true } -Info 48 [00:02:08.000] request: +Info 46 [00:02:06.000] request: { "command": "rename", "arguments": { @@ -664,7 +662,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [00:02:09.000] response: +Info 47 [00:02:07.000] response: { "response": { "info": { @@ -712,7 +710,7 @@ Info 49 [00:02:09.000] response: }, "responseRequired": true } -Info 50 [00:02:10.000] request: +Info 48 [00:02:08.000] request: { "command": "rename", "arguments": { @@ -779,7 +777,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [00:02:11.000] response: +Info 49 [00:02:09.000] response: { "response": { "info": { @@ -827,7 +825,7 @@ Info 51 [00:02:11.000] response: }, "responseRequired": true } -Info 52 [00:02:12.000] request: +Info 50 [00:02:10.000] request: { "command": "rename", "arguments": { @@ -894,7 +892,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [00:02:13.000] response: +Info 51 [00:02:11.000] response: { "response": { "info": { @@ -942,7 +940,7 @@ Info 53 [00:02:13.000] response: }, "responseRequired": true } -Info 54 [00:02:14.000] request: +Info 52 [00:02:12.000] request: { "seq": 0, "type": "request", @@ -979,18 +977,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 56 [00:02:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 56 [00:02:17.000] Files (2) +Info 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) -Info 56 [00:02:18.000] ----------------------------------------------- -Info 56 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [00:02:20.000] Files (2) +Info 54 [00:02:16.000] ----------------------------------------------- +Info 54 [00:02:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 54 [00:02:18.000] Files (2) -Info 56 [00:02:21.000] ----------------------------------------------- -Info 56 [00:02:22.000] Open files: -Info 56 [00:02:23.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 56 [00:02:24.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 54 [00:02:19.000] ----------------------------------------------- +Info 54 [00:02:20.000] Open files: +Info 54 [00:02:21.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 54 [00:02:22.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1021,11 +1019,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:25.000] response: +Info 54 [00:02:23.000] response: { "responseRequired": false } -Info 57 [00:02:26.000] request: +Info 55 [00:02:24.000] request: { "seq": 0, "type": "request", @@ -1064,22 +1062,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 59 [00:02:28.000] Search path: /user/username/projects/myproject/random -Info 60 [00:02:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 61 [00:02:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 61 [00:02:31.000] Files (2) +Info 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 +Info 59 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 59 [00:02:29.000] Files (2) -Info 61 [00:02:32.000] ----------------------------------------------- -Info 61 [00:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [00:02:34.000] Files (2) +Info 59 [00:02:30.000] ----------------------------------------------- +Info 59 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 59 [00:02:32.000] Files (2) -Info 61 [00:02:35.000] ----------------------------------------------- -Info 61 [00:02:36.000] Open files: -Info 61 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 61 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 61 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 61 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 59 [00:02:33.000] ----------------------------------------------- +Info 59 [00:02:34.000] Open files: +Info 59 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 59 [00:02:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 59 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 59 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1108,11 +1106,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:41.000] response: +Info 59 [00:02:39.000] response: { "responseRequired": false } -Info 62 [00:02:42.000] request: +Info 60 [00:02:40.000] request: { "seq": 0, "type": "request", @@ -1149,18 +1147,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 64 [00:02:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 64 [00:02:45.000] Files (2) +Info 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) -Info 64 [00:02:46.000] ----------------------------------------------- -Info 64 [00:02:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:48.000] Files (2) +Info 62 [00:02:44.000] ----------------------------------------------- +Info 62 [00:02:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:46.000] Files (2) -Info 64 [00:02:49.000] ----------------------------------------------- -Info 64 [00:02:50.000] Open files: -Info 64 [00:02:51.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [00:02:52.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:47.000] ----------------------------------------------- +Info 62 [00:02:48.000] Open files: +Info 62 [00:02:49.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:50.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1191,11 +1189,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:53.000] response: +Info 62 [00:02:51.000] response: { "responseRequired": false } -Info 65 [00:02:54.000] request: +Info 63 [00:02:52.000] request: { "seq": 0, "type": "request", @@ -1234,16 +1232,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 67 [00:02:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 67 [00:02:57.000] Files (2) +Info 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) -Info 67 [00:02:58.000] ----------------------------------------------- -Info 67 [00:02:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 67 [00:03:00.000] Files (2) +Info 65 [00:02:56.000] ----------------------------------------------- +Info 65 [00:02:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:58.000] Files (2) -Info 67 [00:03:01.000] ----------------------------------------------- -Info 67 [00:03:02.000] Open files: +Info 65 [00:02:59.000] ----------------------------------------------- +Info 65 [00:03:00.000] Open files: After request PolledWatches:: @@ -1276,11 +1274,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:03:03.000] response: +Info 65 [00:03:01.000] response: { "responseRequired": false } -Info 68 [00:03:04.000] request: +Info 66 [00:03:02.000] request: { "seq": 0, "type": "request", @@ -1321,12 +1319,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:03:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 70 [00:03:06.000] Search path: /user/username/projects/myproject/random -Info 71 [00:03:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 72 [00:03:08.000] `remove Project:: -Info 73 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 74 [00:03:10.000] Files (2) +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 +Info 70 [00:03:06.000] `remove Project:: +Info 71 [00:03:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 72 [00:03:08.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -1336,24 +1334,24 @@ Info 74 [00:03:10.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 75 [00:03:11.000] ----------------------------------------------- -Info 76 [00:03:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 77 [00:03:13.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 78 [00:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 79 [00:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 80 [00:03:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 81 [00:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 82 [00:03:18.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 83 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 84 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 85 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 86 [00:03:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 86 [00:03:23.000] Files (2) - -Info 86 [00:03:24.000] ----------------------------------------------- -Info 86 [00:03:25.000] Open files: -Info 86 [00:03:26.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 86 [00:03:27.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 73 [00:03:09.000] ----------------------------------------------- +Info 74 [00:03:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 75 [00:03:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 76 [00:03:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 77 [00:03:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 78 [00:03:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 79 [00:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 80 [00:03:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 81 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 82 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 83 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 84 [00:03:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 84 [00:03:21.000] Files (2) + +Info 84 [00:03:22.000] ----------------------------------------------- +Info 84 [00:03:23.000] Open files: +Info 84 [00:03:24.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 84 [00:03:25.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1372,7 +1370,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:28.000] response: +Info 84 [00:03:26.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/usage-file-changes-with-timeout-before-request.js index 6d3c054ceecda..6fc2c81ffb1bb 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 @@ -217,16 +217,15 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:21.000] Files (2) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:22.000] ----------------------------------------------- -Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:26.000] Files (2) +Info 18 [00:01:21.000] ----------------------------------------------- +Info 19 [00:01:22.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:23.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (2) -Info 22 [00:01:27.000] ----------------------------------------------- -Info 22 [00:01:28.000] Open files: -Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:26.000] ----------------------------------------------- +Info 21 [00:01:27.000] Open files: +Info 21 [00:01:28.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:31.000] response: +Info 21 [00:01:30.000] response: { "responseRequired": false } -Info 23 [00:01:32.000] request: +Info 22 [00:01:31.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:36.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:48.000] Files (2) +Info 28 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 38 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:54.000] Files (2) +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:52.000] Files (2) -Info 41 [00:01:55.000] ----------------------------------------------- -Info 41 [00:01:56.000] Open files: -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:53.000] ----------------------------------------------- +Info 39 [00:01:54.000] Open files: +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:01.000] response: +Info 39 [00:01:59.000] response: { "responseRequired": false } -Info 42 [00:02:02.000] request: +Info 40 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:05.000] response: +Info 43 [00:02:03.000] response: { "response": { "info": { @@ -482,7 +480,7 @@ Info 45 [00:02:05.000] response: }, "responseRequired": true } -Info 46 [00:02:06.000] request: +Info 44 [00:02:04.000] request: { "command": "change", "arguments": { @@ -552,7 +550,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [00:02:07.000] response: +Info 45 [00:02:05.000] response: { "responseRequired": false } @@ -612,7 +610,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:08.000] request: +Info 46 [00:02:06.000] request: { "command": "rename", "arguments": { @@ -651,9 +649,9 @@ FsWatchesRecursive:: /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:: Completely Elapsed:: *ms -Info 51 [00:02:11.000] Different program with same set of files +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:: @@ -682,7 +680,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:12.000] response: +Info 50 [00:02:10.000] response: { "response": { "info": { @@ -730,7 +728,7 @@ Info 52 [00:02:12.000] response: }, "responseRequired": true } -Info 53 [00:02:13.000] request: +Info 51 [00:02:11.000] request: { "command": "rename", "arguments": { @@ -797,7 +795,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:14.000] response: +Info 52 [00:02:12.000] response: { "response": { "info": { @@ -845,7 +843,7 @@ Info 54 [00:02:14.000] response: }, "responseRequired": true } -Info 55 [00:02:15.000] request: +Info 53 [00:02:13.000] request: { "command": "rename", "arguments": { @@ -912,7 +910,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:16.000] response: +Info 54 [00:02:14.000] response: { "response": { "info": { @@ -960,7 +958,7 @@ Info 56 [00:02:16.000] response: }, "responseRequired": true } -Info 57 [00:02:17.000] request: +Info 55 [00:02:15.000] request: { "command": "rename", "arguments": { @@ -1027,7 +1025,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:18.000] response: +Info 56 [00:02:16.000] response: { "response": { "info": { @@ -1075,7 +1073,7 @@ Info 58 [00:02:18.000] response: }, "responseRequired": true } -Info 59 [00:02:19.000] request: +Info 57 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -1142,7 +1140,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:20.000] response: +Info 58 [00:02:18.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependency/disabledSourceRef/usage-file-changes.js index 5399976f1ea66..c4cb7a1edbb6f 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 @@ -217,16 +217,15 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/dependency/ts } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:01:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 18 [00:01:21.000] Files (2) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 10 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:01:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 17 [00:01:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -236,16 +235,16 @@ Info 18 [00:01:21.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 19 [00:01:22.000] ----------------------------------------------- -Info 20 [00:01:23.000] Search path: /user/username/projects/myproject/dependency -Info 21 [00:01:24.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 22 [00:01:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 22 [00:01:26.000] Files (2) +Info 18 [00:01:21.000] ----------------------------------------------- +Info 19 [00:01:22.000] Search path: /user/username/projects/myproject/dependency +Info 20 [00:01:23.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 21 [00:01:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 21 [00:01:25.000] Files (2) -Info 22 [00:01:27.000] ----------------------------------------------- -Info 22 [00:01:28.000] Open files: -Info 22 [00:01:29.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 22 [00:01:30.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 21 [00:01:26.000] ----------------------------------------------- +Info 21 [00:01:27.000] Open files: +Info 21 [00:01:28.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 21 [00:01:29.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -264,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 22 [00:01:31.000] response: +Info 21 [00:01:30.000] response: { "responseRequired": false } -Info 23 [00:01:32.000] request: +Info 22 [00:01:31.000] request: { "seq": 0, "type": "request", @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 24 [00:01:33.000] Search path: /user/username/projects/myproject/random -Info 25 [00:01:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 26 [00:01:35.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 27 [00:01:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 26 [00:01:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 27 [00:01:36.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -307,17 +306,16 @@ Info 28 [00:01:37.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 29 [00:01:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:40.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 39 [00:01:48.000] Files (2) +Info 28 [00:01:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 33 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 37 [00:01:46.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -327,20 +325,20 @@ Info 39 [00:01:48.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 40 [00:01:49.000] ----------------------------------------------- -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 38 [00:01:47.000] ----------------------------------------------- +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) -Info 41 [00:01:52.000] ----------------------------------------------- -Info 41 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:54.000] Files (2) +Info 39 [00:01:50.000] ----------------------------------------------- +Info 39 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:52.000] Files (2) -Info 41 [00:01:55.000] ----------------------------------------------- -Info 41 [00:01:56.000] Open files: -Info 41 [00:01:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 41 [00:01:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 41 [00:01:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 41 [00:02:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 39 [00:01:53.000] ----------------------------------------------- +Info 39 [00:01:54.000] Open files: +Info 39 [00:01:55.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 39 [00:01:56.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 39 [00:01:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 39 [00:01:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -365,11 +363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 41 [00:02:01.000] response: +Info 39 [00:01:59.000] response: { "responseRequired": false } -Info 42 [00:02:02.000] request: +Info 40 [00:02:00.000] request: { "command": "rename", "arguments": { @@ -404,8 +402,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -434,7 +432,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:05.000] response: +Info 43 [00:02:03.000] response: { "response": { "info": { @@ -482,7 +480,7 @@ Info 45 [00:02:05.000] response: }, "responseRequired": true } -Info 46 [00:02:06.000] request: +Info 44 [00:02:04.000] request: { "command": "change", "arguments": { @@ -552,11 +550,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [00:02:07.000] response: +Info 45 [00:02:05.000] response: { "responseRequired": false } -Info 48 [00:02:08.000] request: +Info 46 [00:02:06.000] request: { "command": "rename", "arguments": { @@ -595,9 +593,9 @@ FsWatchesRecursive:: /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:: Completely Elapsed:: *ms -Info 51 [00:02:11.000] Different program with same set of files +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:: @@ -626,7 +624,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:12.000] response: +Info 50 [00:02:10.000] response: { "response": { "info": { @@ -674,7 +672,7 @@ Info 52 [00:02:12.000] response: }, "responseRequired": true } -Info 53 [00:02:13.000] request: +Info 51 [00:02:11.000] request: { "command": "rename", "arguments": { @@ -741,7 +739,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:14.000] response: +Info 52 [00:02:12.000] response: { "response": { "info": { @@ -789,7 +787,7 @@ Info 54 [00:02:14.000] response: }, "responseRequired": true } -Info 55 [00:02:15.000] request: +Info 53 [00:02:13.000] request: { "command": "rename", "arguments": { @@ -856,7 +854,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:16.000] response: +Info 54 [00:02:14.000] response: { "response": { "info": { @@ -904,7 +902,7 @@ Info 56 [00:02:16.000] response: }, "responseRequired": true } -Info 57 [00:02:17.000] request: +Info 55 [00:02:15.000] request: { "command": "rename", "arguments": { @@ -971,7 +969,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:18.000] response: +Info 56 [00:02:16.000] response: { "response": { "info": { @@ -1019,7 +1017,7 @@ Info 58 [00:02:18.000] response: }, "responseRequired": true } -Info 59 [00:02:19.000] request: +Info 57 [00:02:17.000] request: { "command": "rename", "arguments": { @@ -1086,7 +1084,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:20.000] response: +Info 58 [00:02:18.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js index 405501f664c94..88862579c2d14 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 @@ -216,19 +216,18 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:24.000] Files (3) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:23.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +240,16 @@ Info 21 [00:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:25.000] ----------------------------------------------- -Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 21 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) -Info 25 [00:01:30.000] ----------------------------------------------- -Info 25 [00:01:31.000] Open files: -Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:29.000] ----------------------------------------------- +Info 24 [00:01:30.000] Open files: +Info 24 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +272,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:34.000] response: +Info 24 [00:01:33.000] response: { "responseRequired": false } -Info 26 [00:01:35.000] request: +Info 25 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -308,11 +307,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/dependency -Info 28 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +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 +Info 29 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 30 [00:01:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -323,17 +322,16 @@ Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -343,22 +341,22 @@ Info 42 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:56.000] Files (3) - -Info 46 [00:01:57.000] ----------------------------------------------- -Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:01:59.000] Files (2) - -Info 46 [00:02:00.000] ----------------------------------------------- -Info 46 [00:02:01.000] Open files: -Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) + +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) + +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -387,11 +385,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [00:02:06.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 47 [00:02:07.000] request: +Info 45 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -428,11 +426,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -440,17 +438,16 @@ Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:23.000] Files (2) +Info 51 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -460,26 +457,26 @@ Info 63 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:24.000] ----------------------------------------------- -Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:26.000] Files (3) - -Info 65 [00:02:27.000] ----------------------------------------------- -Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:29.000] Files (2) - -Info 65 [00:02:30.000] ----------------------------------------------- -Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:32.000] Files (2) - -Info 65 [00:02:33.000] ----------------------------------------------- -Info 65 [00:02:34.000] Open files: -Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:21.000] ----------------------------------------------- +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (3) + +Info 62 [00:02:24.000] ----------------------------------------------- +Info 62 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:26.000] Files (2) + +Info 62 [00:02:27.000] ----------------------------------------------- +Info 62 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:29.000] Files (2) + +Info 62 [00:02:30.000] ----------------------------------------------- +Info 62 [00:02:31.000] Open files: +Info 62 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -514,11 +511,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:41.000] response: +Info 62 [00:02:38.000] response: { "responseRequired": false } -Info 66 [00:02:42.000] request: +Info 63 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -563,7 +560,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -600,7 +597,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:44.000] response: +Info 65 [00:02:41.000] response: { "response": { "definitions": [ @@ -637,7 +634,7 @@ Info 68 [00:02:44.000] response: }, "responseRequired": true } -Info 69 [00:02:45.000] request: +Info 66 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -684,8 +681,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -722,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:48.000] response: +Info 69 [00:02:45.000] response: { "response": { "info": { @@ -803,12 +800,12 @@ Info 72 [00:02:48.000] response: }, "responseRequired": true } -Info 73 [00:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 74 [00:02:53.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 75 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 76 [00:02:55.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 77 [00:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 78 [00:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 70 [00:02:49.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 71 [00:02:50.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 72 [00:02:51.000] Scheduled: *ensureProjectForOpenFiles* +Info 73 [00:02:52.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 74 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 75 [00:02:54.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts] export declare function fn1(): void; @@ -854,54 +851,54 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [00:02:58.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 80 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 81 [00:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 82 [00:03:01.000] Different program with same set of files -Info 83 [00:03:02.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 84 [00:03:03.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 85 [00:03:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 86 [00:03:05.000] Running: *ensureProjectForOpenFiles* -Info 87 [00:03:06.000] Before ensureProjectForOpenFiles: -Info 88 [00:03:07.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 88 [00:03:08.000] Files (3) - -Info 88 [00:03:09.000] ----------------------------------------------- -Info 88 [00:03:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 88 [00:03:11.000] Files (2) - -Info 88 [00:03:12.000] ----------------------------------------------- -Info 88 [00:03:13.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 88 [00:03:14.000] Files (2) - -Info 88 [00:03:15.000] ----------------------------------------------- -Info 88 [00:03:16.000] Open files: -Info 88 [00:03:17.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 88 [00:03:18.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 88 [00:03:19.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 88 [00:03:20.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 88 [00:03:21.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 88 [00:03:22.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 88 [00:03:23.000] After ensureProjectForOpenFiles: -Info 89 [00:03:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 89 [00:03:25.000] Files (3) - -Info 89 [00:03:26.000] ----------------------------------------------- -Info 89 [00:03:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 89 [00:03:28.000] Files (2) - -Info 89 [00:03:29.000] ----------------------------------------------- -Info 89 [00:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 89 [00:03:31.000] Files (2) - -Info 89 [00:03:32.000] ----------------------------------------------- -Info 89 [00:03:33.000] Open files: -Info 89 [00:03:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 89 [00:03:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 89 [00:03:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 89 [00:03:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 89 [00:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 89 [00:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 79 [00:02:58.000] Different program with same set of files +Info 80 [00:02:59.000] Running: /user/username/projects/myproject/dependency/tsconfig.json +Info 81 [00:03:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 82 [00:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 83 [00:03:02.000] Running: *ensureProjectForOpenFiles* +Info 84 [00:03:03.000] Before ensureProjectForOpenFiles: +Info 85 [00:03:04.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 85 [00:03:05.000] Files (3) + +Info 85 [00:03:06.000] ----------------------------------------------- +Info 85 [00:03:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 85 [00:03:08.000] Files (2) + +Info 85 [00:03:09.000] ----------------------------------------------- +Info 85 [00:03:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 85 [00:03:11.000] Files (2) + +Info 85 [00:03:12.000] ----------------------------------------------- +Info 85 [00:03:13.000] Open files: +Info 85 [00:03:14.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 85 [00:03:15.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 85 [00:03:16.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 85 [00:03:17.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 85 [00:03:18.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 85 [00:03:19.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 85 [00:03:20.000] After ensureProjectForOpenFiles: +Info 86 [00:03:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 86 [00:03:22.000] Files (3) + +Info 86 [00:03:23.000] ----------------------------------------------- +Info 86 [00:03:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 86 [00:03:25.000] Files (2) + +Info 86 [00:03:26.000] ----------------------------------------------- +Info 86 [00:03:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 86 [00:03:28.000] Files (2) + +Info 86 [00:03:29.000] ----------------------------------------------- +Info 86 [00:03:30.000] Open files: +Info 86 [00:03:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 86 [00:03:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 86 [00:03:33.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 86 [00:03:34.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 86 [00:03:35.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 86 [00:03:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -938,7 +935,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:40.000] request: +Info 86 [00:03:37.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1021,7 +1018,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:41.000] response: +Info 87 [00:03:38.000] response: { "response": { "definitions": [ @@ -1058,7 +1055,7 @@ Info 90 [00:03:41.000] response: }, "responseRequired": true } -Info 91 [00:03:42.000] request: +Info 88 [00:03:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1141,7 +1138,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [00:03:43.000] response: +Info 89 [00:03:40.000] response: { "response": { "definitions": [ @@ -1178,7 +1175,7 @@ Info 92 [00:03:43.000] response: }, "responseRequired": true } -Info 93 [00:03:44.000] request: +Info 90 [00:03:41.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1261,7 +1258,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [00:03:45.000] response: +Info 91 [00:03:42.000] response: { "response": { "definitions": [ @@ -1298,7 +1295,7 @@ Info 94 [00:03:45.000] response: }, "responseRequired": true } -Info 95 [00:03:46.000] request: +Info 92 [00:03:43.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1381,7 +1378,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:47.000] response: +Info 93 [00:03:44.000] response: { "response": { "definitions": [ @@ -1418,7 +1415,7 @@ Info 96 [00:03:47.000] response: }, "responseRequired": true } -Info 97 [00:03:48.000] request: +Info 94 [00:03:45.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1501,7 +1498,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:49.000] response: +Info 95 [00:03:46.000] response: { "response": { "definitions": [ @@ -1538,7 +1535,7 @@ Info 98 [00:03:49.000] response: }, "responseRequired": true } -Info 99 [00:03:50.000] request: +Info 96 [00:03:47.000] request: { "command": "rename", "arguments": { @@ -1585,8 +1582,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -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 +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:: @@ -1623,7 +1620,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:53.000] response: +Info 99 [00:03:50.000] response: { "response": { "info": { @@ -1704,7 +1701,7 @@ Info 102 [00:03:53.000] response: }, "responseRequired": true } -Info 103 [00:03:54.000] request: +Info 100 [00:03:51.000] request: { "command": "rename", "arguments": { @@ -1751,8 +1748,8 @@ FsWatchesRecursive:: /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 +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:: @@ -1789,7 +1786,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:57.000] response: +Info 103 [00:03:54.000] response: { "response": { "info": { @@ -1870,7 +1867,7 @@ Info 106 [00:03:57.000] response: }, "responseRequired": true } -Info 107 [00:03:58.000] request: +Info 104 [00:03:55.000] request: { "command": "rename", "arguments": { @@ -1917,8 +1914,8 @@ FsWatchesRecursive:: /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 +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:: @@ -1955,7 +1952,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:04:01.000] response: +Info 107 [00:03:58.000] response: { "response": { "info": { @@ -2036,7 +2033,7 @@ Info 110 [00:04:01.000] response: }, "responseRequired": true } -Info 111 [00:04:02.000] request: +Info 108 [00:03:59.000] request: { "command": "rename", "arguments": { @@ -2083,8 +2080,8 @@ FsWatchesRecursive:: /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 +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:: @@ -2121,7 +2118,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [00:04:05.000] response: +Info 111 [00:04:02.000] response: { "response": { "info": { @@ -2202,7 +2199,7 @@ Info 114 [00:04:05.000] response: }, "responseRequired": true } -Info 115 [00:04:06.000] request: +Info 112 [00:04:03.000] request: { "command": "rename", "arguments": { @@ -2249,8 +2246,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [00:04:07.000] Search path: /user/username/projects/myproject/dependency -Info 117 [00:04:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2287,7 +2284,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 118 [00:04:09.000] response: +Info 115 [00:04:06.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-changes.js index d506ab5a24282..bad4822b14659 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 @@ -216,19 +216,18 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:24.000] Files (3) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:23.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +240,16 @@ Info 21 [00:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:25.000] ----------------------------------------------- -Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 21 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) -Info 25 [00:01:30.000] ----------------------------------------------- -Info 25 [00:01:31.000] Open files: -Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:29.000] ----------------------------------------------- +Info 24 [00:01:30.000] Open files: +Info 24 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +272,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:34.000] response: +Info 24 [00:01:33.000] response: { "responseRequired": false } -Info 26 [00:01:35.000] request: +Info 25 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -308,11 +307,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/dependency -Info 28 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +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 +Info 29 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 30 [00:01:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -323,17 +322,16 @@ Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -343,22 +341,22 @@ Info 42 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:56.000] Files (3) - -Info 46 [00:01:57.000] ----------------------------------------------- -Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:01:59.000] Files (2) - -Info 46 [00:02:00.000] ----------------------------------------------- -Info 46 [00:02:01.000] Open files: -Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) + +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) + +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -387,11 +385,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [00:02:06.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 47 [00:02:07.000] request: +Info 45 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -428,11 +426,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -440,17 +438,16 @@ Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:23.000] Files (2) +Info 51 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -460,26 +457,26 @@ Info 63 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:24.000] ----------------------------------------------- -Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:26.000] Files (3) - -Info 65 [00:02:27.000] ----------------------------------------------- -Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:29.000] Files (2) - -Info 65 [00:02:30.000] ----------------------------------------------- -Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:32.000] Files (2) - -Info 65 [00:02:33.000] ----------------------------------------------- -Info 65 [00:02:34.000] Open files: -Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:21.000] ----------------------------------------------- +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (3) + +Info 62 [00:02:24.000] ----------------------------------------------- +Info 62 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:26.000] Files (2) + +Info 62 [00:02:27.000] ----------------------------------------------- +Info 62 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:29.000] Files (2) + +Info 62 [00:02:30.000] ----------------------------------------------- +Info 62 [00:02:31.000] Open files: +Info 62 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -514,11 +511,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:41.000] response: +Info 62 [00:02:38.000] response: { "responseRequired": false } -Info 66 [00:02:42.000] request: +Info 63 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -563,7 +560,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -600,7 +597,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:44.000] response: +Info 65 [00:02:41.000] response: { "response": { "definitions": [ @@ -637,7 +634,7 @@ Info 68 [00:02:44.000] response: }, "responseRequired": true } -Info 69 [00:02:45.000] request: +Info 66 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -684,8 +681,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -722,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:48.000] response: +Info 69 [00:02:45.000] response: { "response": { "info": { @@ -803,13 +800,13 @@ Info 72 [00:02:48.000] response: }, "responseRequired": true } -Info 73 [00:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 74 [00:02:53.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 75 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 76 [00:02:55.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 77 [00:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 78 [00:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 79 [00:02:58.000] request: +Info 70 [00:02:49.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 71 [00:02:50.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 72 [00:02:51.000] Scheduled: *ensureProjectForOpenFiles* +Info 73 [00:02:52.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 74 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 75 [00:02:54.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 76 [00:02:55.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -865,9 +862,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 81 [00:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 82 [00:03:01.000] Different program with same set of files +Info 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:: @@ -904,7 +901,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [00:03:02.000] response: +Info 80 [00:02:59.000] response: { "response": { "definitions": [ @@ -941,7 +938,7 @@ Info 83 [00:03:02.000] response: }, "responseRequired": true } -Info 84 [00:03:03.000] request: +Info 81 [00:03:00.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1024,7 +1021,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [00:03:04.000] response: +Info 82 [00:03:01.000] response: { "response": { "definitions": [ @@ -1061,7 +1058,7 @@ Info 85 [00:03:04.000] response: }, "responseRequired": true } -Info 86 [00:03:05.000] request: +Info 83 [00:03:02.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1144,7 +1141,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [00:03:06.000] response: +Info 84 [00:03:03.000] response: { "response": { "definitions": [ @@ -1181,7 +1178,7 @@ Info 87 [00:03:06.000] response: }, "responseRequired": true } -Info 88 [00:03:07.000] request: +Info 85 [00:03:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1264,7 +1261,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:08.000] response: +Info 86 [00:03:05.000] response: { "response": { "definitions": [ @@ -1301,7 +1298,7 @@ Info 89 [00:03:08.000] response: }, "responseRequired": true } -Info 90 [00:03:09.000] request: +Info 87 [00:03:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1384,7 +1381,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [00:03:10.000] response: +Info 88 [00:03:07.000] response: { "response": { "definitions": [ @@ -1421,7 +1418,7 @@ Info 91 [00:03:10.000] response: }, "responseRequired": true } -Info 92 [00:03:11.000] request: +Info 89 [00:03:08.000] request: { "command": "rename", "arguments": { @@ -1468,10 +1465,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [00:03:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 94 [00:03:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 95 [00:03:14.000] Search path: /user/username/projects/myproject/dependency -Info 96 [00:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1508,7 +1505,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [00:03:16.000] response: +Info 94 [00:03:13.000] response: { "response": { "info": { @@ -1589,7 +1586,7 @@ Info 97 [00:03:16.000] response: }, "responseRequired": true } -Info 98 [00:03:17.000] request: +Info 95 [00:03:14.000] request: { "command": "rename", "arguments": { @@ -1636,8 +1633,8 @@ FsWatchesRecursive:: /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 +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:: @@ -1674,7 +1671,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [00:03:20.000] response: +Info 98 [00:03:17.000] response: { "response": { "info": { @@ -1755,7 +1752,7 @@ Info 101 [00:03:20.000] response: }, "responseRequired": true } -Info 102 [00:03:21.000] request: +Info 99 [00:03:18.000] request: { "command": "rename", "arguments": { @@ -1802,8 +1799,8 @@ FsWatchesRecursive:: /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 +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:: @@ -1840,7 +1837,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 105 [00:03:24.000] response: +Info 102 [00:03:21.000] response: { "response": { "info": { @@ -1921,7 +1918,7 @@ Info 105 [00:03:24.000] response: }, "responseRequired": true } -Info 106 [00:03:25.000] request: +Info 103 [00:03:22.000] request: { "command": "rename", "arguments": { @@ -1968,8 +1965,8 @@ FsWatchesRecursive:: /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 +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:: @@ -2006,7 +2003,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [00:03:28.000] response: +Info 106 [00:03:25.000] response: { "response": { "info": { @@ -2087,7 +2084,7 @@ Info 109 [00:03:28.000] response: }, "responseRequired": true } -Info 110 [00:03:29.000] request: +Info 107 [00:03:26.000] request: { "command": "rename", "arguments": { @@ -2134,8 +2131,8 @@ FsWatchesRecursive:: /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 +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:: @@ -2172,7 +2169,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [00:03:32.000] response: +Info 110 [00:03:29.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-created.js index 93870e607bc51..f5327a290486b 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 @@ -208,18 +208,17 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 20 [00:01:24.000] Files (2) +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 18 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 19 [00:01:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -229,16 +228,16 @@ Info 20 [00:01:24.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 21 [00:01:25.000] ----------------------------------------------- -Info 22 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 23 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 24 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 24 [00:01:29.000] Files (2) +Info 20 [00:01:24.000] ----------------------------------------------- +Info 21 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 22 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 23 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 23 [00:01:28.000] Files (2) -Info 24 [00:01:30.000] ----------------------------------------------- -Info 24 [00:01:31.000] Open files: -Info 24 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 24 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 23 [00:01:29.000] ----------------------------------------------- +Info 23 [00:01:30.000] Open files: +Info 23 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 23 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -259,11 +258,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 24 [00:01:34.000] response: +Info 23 [00:01:33.000] response: { "responseRequired": false } -Info 25 [00:01:35.000] request: +Info 24 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -292,11 +291,11 @@ FsWatchesRecursive:: /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 -Info 29 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 30 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +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 +Info 28 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 29 [00:01:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -307,17 +306,16 @@ Info 30 [00:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 31 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 32 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 30 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -327,22 +325,22 @@ Info 41 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 42 [00:01:52.000] ----------------------------------------------- -Info 43 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 45 [00:01:56.000] Files (2) - -Info 45 [00:01:57.000] ----------------------------------------------- -Info 45 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:59.000] Files (2) - -Info 45 [00:02:00.000] ----------------------------------------------- -Info 45 [00:02:01.000] Open files: -Info 45 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 45 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 45 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 45 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:50.000] ----------------------------------------------- +Info 41 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 43 [00:01:54.000] Files (2) + +Info 43 [00:01:55.000] ----------------------------------------------- +Info 43 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:57.000] Files (2) + +Info 43 [00:01:58.000] ----------------------------------------------- +Info 43 [00:01:59.000] Open files: +Info 43 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 43 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 43 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 43 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -369,11 +367,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:02:06.000] response: +Info 43 [00:02:04.000] response: { "responseRequired": false } -Info 46 [00:02:07.000] request: +Info 44 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -408,11 +406,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 48 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 49 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 51 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 48 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 49 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -420,17 +418,16 @@ Info 51 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 52 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 53 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 55 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 56 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 57 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 61 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 62 [00:02:23.000] Files (2) +Info 50 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 51 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 53 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 54 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 58 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 59 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -440,26 +437,26 @@ Info 62 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 63 [00:02:24.000] ----------------------------------------------- -Info 64 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 64 [00:02:26.000] Files (2) - -Info 64 [00:02:27.000] ----------------------------------------------- -Info 64 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 64 [00:02:29.000] Files (2) - -Info 64 [00:02:30.000] ----------------------------------------------- -Info 64 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:32.000] Files (2) - -Info 64 [00:02:33.000] ----------------------------------------------- -Info 64 [00:02:34.000] Open files: -Info 64 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 64 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 64 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 64 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 64 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 60 [00:02:21.000] ----------------------------------------------- +Info 61 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 61 [00:02:23.000] Files (2) + +Info 61 [00:02:24.000] ----------------------------------------------- +Info 61 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 61 [00:02:26.000] Files (2) + +Info 61 [00:02:27.000] ----------------------------------------------- +Info 61 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:29.000] Files (2) + +Info 61 [00:02:30.000] ----------------------------------------------- +Info 61 [00:02:31.000] Open files: +Info 61 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 61 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 61 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 61 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 61 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 61 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -492,11 +489,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:41.000] response: +Info 61 [00:02:38.000] response: { "responseRequired": false } -Info 65 [00:02:42.000] request: +Info 62 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -571,7 +568,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:43.000] response: +Info 63 [00:02:40.000] response: { "response": { "definitions": [ @@ -608,7 +605,7 @@ Info 66 [00:02:43.000] response: }, "responseRequired": true } -Info 67 [00:02:44.000] request: +Info 64 [00:02:41.000] request: { "command": "rename", "arguments": { @@ -651,7 +648,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +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 PolledWatches:: @@ -686,7 +683,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:02:46.000] response: +Info 66 [00:02:43.000] response: { "response": { "info": { @@ -734,18 +731,18 @@ Info 69 [00:02:46.000] response: }, "responseRequired": true } -Info 70 [00:02:49.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 71 [00:02:50.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [00:02:51.000] Scheduled: *ensureProjectForOpenFiles* -Info 73 [00:02:52.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 74 [00:02:53.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 75 [00:02:54.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one -Info 76 [00:02:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 77 [00:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 78 [00:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 79 [00:02:58.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 80 [00:02:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [00:03:00.000] request: +Info 67 [00:02:46.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 68 [00:02:47.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 69 [00:02:48.000] Scheduled: *ensureProjectForOpenFiles* +Info 70 [00:02:49.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 71 [00:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 72 [00:02:51.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one +Info 73 [00:02:52.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 74 [00:02:53.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 75 [00:02:54.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 76 [00:02:55.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 77 [00:02:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 78 [00:02:57.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -798,12 +795,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [00:03:01.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 83 [00:03:02.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 84 [00:03:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 85 [00:03:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 86 [00:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 87 [00:03:06.000] Files (3) +Info 79 [00:02:58.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 80 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 81 [00:03:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 82 [00:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 83 [00:03:02.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 84 [00:03:03.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -816,8 +813,8 @@ Info 87 [00:03:06.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 88 [00:03:07.000] ----------------------------------------------- -Info 89 [00:03:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 85 [00:03:04.000] ----------------------------------------------- +Info 86 [00:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -854,7 +851,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:09.000] response: +Info 87 [00:03:06.000] response: { "response": { "definitions": [ @@ -891,7 +888,7 @@ Info 90 [00:03:09.000] response: }, "responseRequired": true } -Info 91 [00:03:10.000] request: +Info 88 [00:03:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -974,7 +971,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [00:03:11.000] response: +Info 89 [00:03:08.000] response: { "response": { "definitions": [ @@ -1011,7 +1008,7 @@ Info 92 [00:03:11.000] response: }, "responseRequired": true } -Info 93 [00:03:12.000] request: +Info 90 [00:03:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1094,7 +1091,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [00:03:13.000] response: +Info 91 [00:03:10.000] response: { "response": { "definitions": [ @@ -1131,7 +1128,7 @@ Info 94 [00:03:13.000] response: }, "responseRequired": true } -Info 95 [00:03:14.000] request: +Info 92 [00:03:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1214,7 +1211,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:15.000] response: +Info 93 [00:03:12.000] response: { "response": { "definitions": [ @@ -1251,7 +1248,7 @@ Info 96 [00:03:15.000] response: }, "responseRequired": true } -Info 97 [00:03:16.000] request: +Info 94 [00:03:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1334,7 +1331,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:17.000] response: +Info 95 [00:03:14.000] response: { "response": { "definitions": [ @@ -1371,7 +1368,7 @@ Info 98 [00:03:17.000] response: }, "responseRequired": true } -Info 99 [00:03:18.000] request: +Info 96 [00:03:15.000] request: { "command": "rename", "arguments": { @@ -1418,10 +1415,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 101 [00:03:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 102 [00:03:21.000] Search path: /user/username/projects/myproject/dependency -Info 103 [00:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1458,7 +1455,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:23.000] response: +Info 101 [00:03:20.000] response: { "response": { "info": { @@ -1539,7 +1536,7 @@ Info 104 [00:03:23.000] response: }, "responseRequired": true } -Info 105 [00:03:24.000] request: +Info 102 [00:03:21.000] request: { "command": "rename", "arguments": { @@ -1586,8 +1583,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:25.000] Search path: /user/username/projects/myproject/dependency -Info 107 [00:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1624,7 +1621,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:27.000] response: +Info 105 [00:03:24.000] response: { "response": { "info": { @@ -1705,7 +1702,7 @@ Info 108 [00:03:27.000] response: }, "responseRequired": true } -Info 109 [00:03:28.000] request: +Info 106 [00:03:25.000] request: { "command": "rename", "arguments": { @@ -1752,8 +1749,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:29.000] Search path: /user/username/projects/myproject/dependency -Info 111 [00:03:30.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1790,7 +1787,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:03:31.000] response: +Info 109 [00:03:28.000] response: { "response": { "info": { @@ -1871,7 +1868,7 @@ Info 112 [00:03:31.000] response: }, "responseRequired": true } -Info 113 [00:03:32.000] request: +Info 110 [00:03:29.000] request: { "command": "rename", "arguments": { @@ -1918,8 +1915,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [00:03:33.000] Search path: /user/username/projects/myproject/dependency -Info 115 [00:03:34.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1956,7 +1953,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [00:03:35.000] response: +Info 113 [00:03:32.000] response: { "response": { "info": { @@ -2037,7 +2034,7 @@ Info 116 [00:03:35.000] response: }, "responseRequired": true } -Info 117 [00:03:36.000] request: +Info 114 [00:03:33.000] request: { "command": "rename", "arguments": { @@ -2084,8 +2081,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 118 [00:03:37.000] Search path: /user/username/projects/myproject/dependency -Info 119 [00:03:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2122,7 +2119,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 120 [00:03:39.000] response: +Info 117 [00:03:36.000] response: { "response": { "info": { @@ -2203,7 +2200,7 @@ Info 120 [00:03:39.000] response: }, "responseRequired": true } -Info 121 [00:03:40.000] request: +Info 118 [00:03:37.000] request: { "seq": 0, "type": "request", @@ -2248,24 +2245,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 122 [00:03:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 123 [00:03:42.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 123 [00:03:43.000] Files (3) +Info 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) -Info 123 [00:03:44.000] ----------------------------------------------- -Info 123 [00:03:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 123 [00:03:46.000] Files (2) +Info 120 [00:03:41.000] ----------------------------------------------- +Info 120 [00:03:42.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 120 [00:03:43.000] Files (2) -Info 123 [00:03:47.000] ----------------------------------------------- -Info 123 [00:03:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 123 [00:03:49.000] Files (2) +Info 120 [00:03:44.000] ----------------------------------------------- +Info 120 [00:03:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 120 [00:03:46.000] Files (2) -Info 123 [00:03:50.000] ----------------------------------------------- -Info 123 [00:03:51.000] Open files: -Info 123 [00:03:52.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 123 [00:03:53.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 123 [00:03:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 123 [00:03:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 120 [00:03:47.000] ----------------------------------------------- +Info 120 [00:03:48.000] Open files: +Info 120 [00:03:49.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 120 [00:03:50.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 120 [00:03:51.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 120 [00:03:52.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2304,11 +2301,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 123 [00:03:56.000] response: +Info 120 [00:03:53.000] response: { "responseRequired": false } -Info 124 [00:03:57.000] request: +Info 121 [00:03:54.000] request: { "seq": 0, "type": "request", @@ -2355,28 +2352,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 125 [00:03:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 126 [00:03:59.000] Search path: /user/username/projects/myproject/random -Info 127 [00:04:00.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 128 [00:04:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 128 [00:04:02.000] Files (3) - -Info 128 [00:04:03.000] ----------------------------------------------- -Info 128 [00:04:04.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 128 [00:04:05.000] Files (2) - -Info 128 [00:04:06.000] ----------------------------------------------- -Info 128 [00:04:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 128 [00:04:08.000] Files (2) - -Info 128 [00:04:09.000] ----------------------------------------------- -Info 128 [00:04:10.000] Open files: -Info 128 [00:04:11.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 128 [00:04:12.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 128 [00:04:13.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 128 [00:04:14.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 128 [00:04:15.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 128 [00:04:16.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 125 [00:03:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 125 [00:03:59.000] Files (3) + +Info 125 [00:04:00.000] ----------------------------------------------- +Info 125 [00:04:01.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 125 [00:04:02.000] Files (2) + +Info 125 [00:04:03.000] ----------------------------------------------- +Info 125 [00:04:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 125 [00:04:05.000] Files (2) + +Info 125 [00:04:06.000] ----------------------------------------------- +Info 125 [00:04:07.000] Open files: +Info 125 [00:04:08.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 125 [00:04:09.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 125 [00:04:10.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 125 [00:04:11.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 125 [00:04:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 125 [00:04:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2413,11 +2410,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 128 [00:04:17.000] response: +Info 125 [00:04:14.000] response: { "responseRequired": false } -Info 129 [00:04:18.000] request: +Info 126 [00:04:15.000] request: { "seq": 0, "type": "request", @@ -2462,24 +2459,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 130 [00:04:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 131 [00:04:20.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 131 [00:04:21.000] Files (3) +Info 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) -Info 131 [00:04:22.000] ----------------------------------------------- -Info 131 [00:04:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 131 [00:04:24.000] Files (2) +Info 128 [00:04:19.000] ----------------------------------------------- +Info 128 [00:04:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 128 [00:04:21.000] Files (2) -Info 131 [00:04:25.000] ----------------------------------------------- -Info 131 [00:04:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 131 [00:04:27.000] Files (2) +Info 128 [00:04:22.000] ----------------------------------------------- +Info 128 [00:04:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 128 [00:04:24.000] Files (2) -Info 131 [00:04:28.000] ----------------------------------------------- -Info 131 [00:04:29.000] Open files: -Info 131 [00:04:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 131 [00:04:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 131 [00:04:32.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 131 [00:04:33.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 128 [00:04:25.000] ----------------------------------------------- +Info 128 [00:04:26.000] Open files: +Info 128 [00:04:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 128 [00:04:28.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 128 [00:04:29.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 128 [00:04:30.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2518,11 +2515,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 131 [00:04:34.000] response: +Info 128 [00:04:31.000] response: { "responseRequired": false } -Info 132 [00:04:35.000] request: +Info 129 [00:04:32.000] request: { "seq": 0, "type": "request", @@ -2569,22 +2566,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 133 [00:04:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 134 [00:04:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 134 [00:04:38.000] Files (3) +Info 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) -Info 134 [00:04:39.000] ----------------------------------------------- -Info 134 [00:04:40.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 134 [00:04:41.000] Files (2) +Info 131 [00:04:36.000] ----------------------------------------------- +Info 131 [00:04:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 131 [00:04:38.000] Files (2) -Info 134 [00:04:42.000] ----------------------------------------------- -Info 134 [00:04:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 134 [00:04:44.000] Files (2) +Info 131 [00:04:39.000] ----------------------------------------------- +Info 131 [00:04:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 131 [00:04:41.000] Files (2) -Info 134 [00:04:45.000] ----------------------------------------------- -Info 134 [00:04:46.000] Open files: -Info 134 [00:04:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 134 [00:04:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 131 [00:04:42.000] ----------------------------------------------- +Info 131 [00:04:43.000] Open files: +Info 131 [00:04:44.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 131 [00:04:45.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2625,11 +2622,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 134 [00:04:49.000] response: +Info 131 [00:04:46.000] response: { "responseRequired": false } -Info 135 [00:04:50.000] request: +Info 132 [00:04:47.000] request: { "seq": 0, "type": "request", @@ -2678,20 +2675,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 136 [00:04:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 137 [00:04:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 137 [00:04:53.000] Files (3) +Info 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) -Info 137 [00:04:54.000] ----------------------------------------------- -Info 137 [00:04:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 137 [00:04:56.000] Files (2) +Info 134 [00:04:51.000] ----------------------------------------------- +Info 134 [00:04:52.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 134 [00:04:53.000] Files (2) -Info 137 [00:04:57.000] ----------------------------------------------- -Info 137 [00:04:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 137 [00:04:59.000] Files (2) +Info 134 [00:04:54.000] ----------------------------------------------- +Info 134 [00:04:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 134 [00:04:56.000] Files (2) -Info 137 [00:05:00.000] ----------------------------------------------- -Info 137 [00:05:01.000] Open files: +Info 134 [00:04:57.000] ----------------------------------------------- +Info 134 [00:04:58.000] Open files: After request PolledWatches:: @@ -2734,11 +2731,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 137 [00:05:02.000] response: +Info 134 [00:04:59.000] response: { "responseRequired": false } -Info 138 [00:05:03.000] request: +Info 135 [00:05:00.000] request: { "seq": 0, "type": "request", @@ -2789,12 +2786,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 139 [00:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 140 [00:05:05.000] Search path: /user/username/projects/myproject/random -Info 141 [00:05:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 142 [00:05:07.000] `remove Project:: -Info 143 [00:05:08.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 144 [00:05:09.000] Files (3) +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 +Info 139 [00:05:04.000] `remove Project:: +Info 140 [00:05:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 141 [00:05:06.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -2807,19 +2804,19 @@ Info 144 [00:05:09.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 145 [00:05:10.000] ----------------------------------------------- -Info 146 [00:05:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 147 [00:05:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 148 [00:05:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 149 [00:05:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 150 [00:05:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 151 [00:05:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 152 [00:05:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 153 [00:05:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 154 [00:05:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 155 [00:05:20.000] `remove Project:: -Info 156 [00:05:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 157 [00:05:22.000] Files (2) +Info 142 [00:05:07.000] ----------------------------------------------- +Info 143 [00:05:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 144 [00:05:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 145 [00:05:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 146 [00:05:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 147 [00:05:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 148 [00:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 149 [00:05:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 150 [00:05:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 151 [00:05:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 152 [00:05:17.000] `remove Project:: +Info 153 [00:05:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 154 [00:05:19.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2829,26 +2826,26 @@ Info 157 [00:05:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 158 [00:05:23.000] ----------------------------------------------- -Info 159 [00:05:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 160 [00:05:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 161 [00:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 162 [00:05:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 163 [00:05:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 164 [00:05:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 165 [00:05:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 166 [00:05:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 167 [00:05:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 168 [00:05:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 169 [00:05:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 170 [00:05:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 171 [00:05:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 171 [00:05:37.000] Files (2) - -Info 171 [00:05:38.000] ----------------------------------------------- -Info 171 [00:05:39.000] Open files: -Info 171 [00:05:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 171 [00:05:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 155 [00:05:20.000] ----------------------------------------------- +Info 156 [00:05:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 157 [00:05:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 158 [00:05:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 159 [00:05:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 160 [00:05:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 161 [00:05:26.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 162 [00:05:27.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 163 [00:05:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 164 [00:05:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 165 [00:05:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 166 [00:05:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 167 [00:05:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 168 [00:05:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 168 [00:05:34.000] Files (2) + +Info 168 [00:05:35.000] ----------------------------------------------- +Info 168 [00:05:36.000] Open files: +Info 168 [00:05:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 168 [00:05:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2867,7 +2864,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 171 [00:05:42.000] response: +Info 168 [00:05:39.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-deleted.js index aa0049b3b97df..929add9d0e1e6 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 @@ -216,19 +216,18 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:24.000] Files (3) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:23.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +240,16 @@ Info 21 [00:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:25.000] ----------------------------------------------- -Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 21 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) -Info 25 [00:01:30.000] ----------------------------------------------- -Info 25 [00:01:31.000] Open files: -Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:29.000] ----------------------------------------------- +Info 24 [00:01:30.000] Open files: +Info 24 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +272,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:34.000] response: +Info 24 [00:01:33.000] response: { "responseRequired": false } -Info 26 [00:01:35.000] request: +Info 25 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -308,11 +307,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/dependency -Info 28 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +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 +Info 29 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 30 [00:01:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -323,17 +322,16 @@ Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -343,22 +341,22 @@ Info 42 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:56.000] Files (3) - -Info 46 [00:01:57.000] ----------------------------------------------- -Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:01:59.000] Files (2) - -Info 46 [00:02:00.000] ----------------------------------------------- -Info 46 [00:02:01.000] Open files: -Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) + +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) + +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -387,11 +385,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [00:02:06.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 47 [00:02:07.000] request: +Info 45 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -428,11 +426,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -440,17 +438,16 @@ Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:23.000] Files (2) +Info 51 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -460,26 +457,26 @@ Info 63 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:24.000] ----------------------------------------------- -Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:26.000] Files (3) - -Info 65 [00:02:27.000] ----------------------------------------------- -Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:29.000] Files (2) - -Info 65 [00:02:30.000] ----------------------------------------------- -Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:32.000] Files (2) - -Info 65 [00:02:33.000] ----------------------------------------------- -Info 65 [00:02:34.000] Open files: -Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:21.000] ----------------------------------------------- +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (3) + +Info 62 [00:02:24.000] ----------------------------------------------- +Info 62 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:26.000] Files (2) + +Info 62 [00:02:27.000] ----------------------------------------------- +Info 62 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:29.000] Files (2) + +Info 62 [00:02:30.000] ----------------------------------------------- +Info 62 [00:02:31.000] Open files: +Info 62 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -514,11 +511,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:41.000] response: +Info 62 [00:02:38.000] response: { "responseRequired": false } -Info 66 [00:02:42.000] request: +Info 63 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -563,7 +560,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -600,7 +597,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:44.000] response: +Info 65 [00:02:41.000] response: { "response": { "definitions": [ @@ -637,7 +634,7 @@ Info 68 [00:02:44.000] response: }, "responseRequired": true } -Info 69 [00:02:45.000] request: +Info 66 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -684,8 +681,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -722,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:48.000] response: +Info 69 [00:02:45.000] response: { "response": { "info": { @@ -803,17 +800,17 @@ Info 72 [00:02:48.000] response: }, "responseRequired": true } -Info 73 [00:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 74 [00:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 75 [00:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 76 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles* -Info 77 [00:02:54.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 78 [00:02:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 79 [00:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 80 [00:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [00:02:58.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 82 [00:02:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 83 [00:03:00.000] request: +Info 70 [00:02:47.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 71 [00:02:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 72 [00:02:49.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 73 [00:02:50.000] Scheduled: *ensureProjectForOpenFiles* +Info 74 [00:02:51.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 75 [00:02:52.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 76 [00:02:53.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 77 [00:02:54.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 78 [00:02:55.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 79 [00:02:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 80 [00:02:57.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -859,10 +856,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:03:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 85 [00:03:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 86 [00:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 87 [00:03:04.000] Files (2) +Info 81 [00:02:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 82 [00:02:59.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 83 [00:03:00.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 84 [00:03:01.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -872,7 +869,7 @@ Info 87 [00:03:04.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 88 [00:03:05.000] ----------------------------------------------- +Info 85 [00:03:02.000] ----------------------------------------------- After request PolledWatches:: @@ -907,7 +904,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:06.000] response: +Info 86 [00:03:03.000] response: { "response": { "definitions": [ @@ -944,7 +941,7 @@ Info 89 [00:03:06.000] response: }, "responseRequired": true } -Info 90 [00:03:07.000] request: +Info 87 [00:03:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1023,7 +1020,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [00:03:08.000] response: +Info 88 [00:03:05.000] response: { "response": { "definitions": [ @@ -1060,7 +1057,7 @@ Info 91 [00:03:08.000] response: }, "responseRequired": true } -Info 92 [00:03:09.000] request: +Info 89 [00:03:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1139,7 +1136,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [00:03:10.000] response: +Info 90 [00:03:07.000] response: { "response": { "definitions": [ @@ -1176,7 +1173,7 @@ Info 93 [00:03:10.000] response: }, "responseRequired": true } -Info 94 [00:03:11.000] request: +Info 91 [00:03:08.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1255,7 +1252,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [00:03:12.000] response: +Info 92 [00:03:09.000] response: { "response": { "definitions": [ @@ -1292,7 +1289,7 @@ Info 95 [00:03:12.000] response: }, "responseRequired": true } -Info 96 [00:03:13.000] request: +Info 93 [00:03:10.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1371,7 +1368,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [00:03:14.000] response: +Info 94 [00:03:11.000] response: { "response": { "definitions": [ @@ -1408,7 +1405,7 @@ Info 97 [00:03:14.000] response: }, "responseRequired": true } -Info 98 [00:03:15.000] request: +Info 95 [00:03:12.000] request: { "command": "rename", "arguments": { @@ -1453,9 +1450,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [00:03:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 100 [00:03:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 101 [00:03:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +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 After request PolledWatches:: @@ -1492,7 +1489,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:19.000] response: +Info 99 [00:03:16.000] response: { "response": { "info": { @@ -1540,7 +1537,7 @@ Info 102 [00:03:19.000] response: }, "responseRequired": true } -Info 103 [00:03:20.000] request: +Info 100 [00:03:17.000] request: { "command": "rename", "arguments": { @@ -1623,7 +1620,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:21.000] response: +Info 101 [00:03:18.000] response: { "response": { "info": { @@ -1671,7 +1668,7 @@ Info 104 [00:03:21.000] response: }, "responseRequired": true } -Info 105 [00:03:22.000] request: +Info 102 [00:03:19.000] request: { "command": "rename", "arguments": { @@ -1754,7 +1751,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:23.000] response: +Info 103 [00:03:20.000] response: { "response": { "info": { @@ -1802,7 +1799,7 @@ Info 106 [00:03:23.000] response: }, "responseRequired": true } -Info 107 [00:03:24.000] request: +Info 104 [00:03:21.000] request: { "command": "rename", "arguments": { @@ -1885,7 +1882,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:25.000] response: +Info 105 [00:03:22.000] response: { "response": { "info": { @@ -1933,7 +1930,7 @@ Info 108 [00:03:25.000] response: }, "responseRequired": true } -Info 109 [00:03:26.000] request: +Info 106 [00:03:23.000] request: { "command": "rename", "arguments": { @@ -2016,7 +2013,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:27.000] response: +Info 107 [00:03:24.000] response: { "response": { "info": { @@ -2064,7 +2061,7 @@ Info 110 [00:03:27.000] response: }, "responseRequired": true } -Info 111 [00:03:28.000] request: +Info 108 [00:03:25.000] request: { "seq": 0, "type": "request", @@ -2109,24 +2106,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:03:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 113 [00:03:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 113 [00:03:31.000] Files (2) +Info 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) -Info 113 [00:03:32.000] ----------------------------------------------- -Info 113 [00:03:33.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 113 [00:03:34.000] Files (2) +Info 110 [00:03:29.000] ----------------------------------------------- +Info 110 [00:03:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 110 [00:03:31.000] Files (2) -Info 113 [00:03:35.000] ----------------------------------------------- -Info 113 [00:03:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 113 [00:03:37.000] Files (2) +Info 110 [00:03:32.000] ----------------------------------------------- +Info 110 [00:03:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 110 [00:03:34.000] Files (2) -Info 113 [00:03:38.000] ----------------------------------------------- -Info 113 [00:03:39.000] Open files: -Info 113 [00:03:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 113 [00:03:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 113 [00:03:42.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 113 [00:03:43.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 110 [00:03:35.000] ----------------------------------------------- +Info 110 [00:03:36.000] Open files: +Info 110 [00:03:37.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 110 [00:03:38.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 110 [00:03:39.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 110 [00:03:40.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2165,11 +2162,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [00:03:44.000] response: +Info 110 [00:03:41.000] response: { "responseRequired": false } -Info 114 [00:03:45.000] request: +Info 111 [00:03:42.000] request: { "seq": 0, "type": "request", @@ -2216,29 +2213,29 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [00:03:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 116 [00:03:47.000] Search path: /user/username/projects/myproject/random -Info 117 [00:03:48.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 118 [00:03:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 119 [00:03:50.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 119 [00:03:51.000] Files (2) - -Info 119 [00:03:52.000] ----------------------------------------------- -Info 119 [00:03:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 119 [00:03:54.000] Files (2) - -Info 119 [00:03:55.000] ----------------------------------------------- -Info 119 [00:03:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 119 [00:03:57.000] Files (2) - -Info 119 [00:03:58.000] ----------------------------------------------- -Info 119 [00:03:59.000] Open files: -Info 119 [00:04:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 119 [00:04:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 119 [00:04:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 119 [00:04:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 119 [00:04:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 119 [00:04:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 115 [00:03:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 116 [00:03:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 116 [00:03:48.000] Files (2) + +Info 116 [00:03:49.000] ----------------------------------------------- +Info 116 [00:03:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 116 [00:03:51.000] Files (2) + +Info 116 [00:03:52.000] ----------------------------------------------- +Info 116 [00:03:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 116 [00:03:54.000] Files (2) + +Info 116 [00:03:55.000] ----------------------------------------------- +Info 116 [00:03:56.000] Open files: +Info 116 [00:03:57.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 116 [00:03:58.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 116 [00:03:59.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 116 [00:04:00.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 116 [00:04:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 116 [00:04:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2273,11 +2270,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 119 [00:04:06.000] response: +Info 116 [00:04:03.000] response: { "responseRequired": false } -Info 120 [00:04:07.000] request: +Info 117 [00:04:04.000] request: { "seq": 0, "type": "request", @@ -2320,24 +2317,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 121 [00:04:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 122 [00:04:09.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 122 [00:04:10.000] Files (2) +Info 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) -Info 122 [00:04:11.000] ----------------------------------------------- -Info 122 [00:04:12.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 122 [00:04:13.000] Files (2) +Info 119 [00:04:08.000] ----------------------------------------------- +Info 119 [00:04:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 119 [00:04:10.000] Files (2) -Info 122 [00:04:14.000] ----------------------------------------------- -Info 122 [00:04:15.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 122 [00:04:16.000] Files (2) +Info 119 [00:04:11.000] ----------------------------------------------- +Info 119 [00:04:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 119 [00:04:13.000] Files (2) -Info 122 [00:04:17.000] ----------------------------------------------- -Info 122 [00:04:18.000] Open files: -Info 122 [00:04:19.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 122 [00:04:20.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 122 [00:04:21.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 122 [00:04:22.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 119 [00:04:14.000] ----------------------------------------------- +Info 119 [00:04:15.000] Open files: +Info 119 [00:04:16.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 119 [00:04:17.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 119 [00:04:18.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 119 [00:04:19.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2374,11 +2371,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 122 [00:04:23.000] response: +Info 119 [00:04:20.000] response: { "responseRequired": false } -Info 123 [00:04:24.000] request: +Info 120 [00:04:21.000] request: { "seq": 0, "type": "request", @@ -2423,22 +2420,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 124 [00:04:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 125 [00:04:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 125 [00:04:27.000] Files (2) +Info 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) -Info 125 [00:04:28.000] ----------------------------------------------- -Info 125 [00:04:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 125 [00:04:30.000] Files (2) +Info 122 [00:04:25.000] ----------------------------------------------- +Info 122 [00:04:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 122 [00:04:27.000] Files (2) -Info 125 [00:04:31.000] ----------------------------------------------- -Info 125 [00:04:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 125 [00:04:33.000] Files (2) +Info 122 [00:04:28.000] ----------------------------------------------- +Info 122 [00:04:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 122 [00:04:30.000] Files (2) -Info 125 [00:04:34.000] ----------------------------------------------- -Info 125 [00:04:35.000] Open files: -Info 125 [00:04:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 125 [00:04:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 122 [00:04:31.000] ----------------------------------------------- +Info 122 [00:04:32.000] Open files: +Info 122 [00:04:33.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 122 [00:04:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2477,11 +2474,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 125 [00:04:38.000] response: +Info 122 [00:04:35.000] response: { "responseRequired": false } -Info 126 [00:04:39.000] request: +Info 123 [00:04:36.000] request: { "seq": 0, "type": "request", @@ -2528,20 +2525,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 127 [00:04:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 128 [00:04:41.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 128 [00:04:42.000] Files (2) +Info 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) -Info 128 [00:04:43.000] ----------------------------------------------- -Info 128 [00:04:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 128 [00:04:45.000] Files (2) +Info 125 [00:04:40.000] ----------------------------------------------- +Info 125 [00:04:41.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 125 [00:04:42.000] Files (2) -Info 128 [00:04:46.000] ----------------------------------------------- -Info 128 [00:04:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 128 [00:04:48.000] Files (2) +Info 125 [00:04:43.000] ----------------------------------------------- +Info 125 [00:04:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 125 [00:04:45.000] Files (2) -Info 128 [00:04:49.000] ----------------------------------------------- -Info 128 [00:04:50.000] Open files: +Info 125 [00:04:46.000] ----------------------------------------------- +Info 125 [00:04:47.000] Open files: After request PolledWatches:: @@ -2582,11 +2579,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 128 [00:04:51.000] response: +Info 125 [00:04:48.000] response: { "responseRequired": false } -Info 129 [00:04:52.000] request: +Info 126 [00:04:49.000] request: { "seq": 0, "type": "request", @@ -2635,12 +2632,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 130 [00:04:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 131 [00:04:54.000] Search path: /user/username/projects/myproject/random -Info 132 [00:04:55.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 133 [00:04:56.000] `remove Project:: -Info 134 [00:04:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 135 [00:04:58.000] Files (2) +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 +Info 130 [00:04:53.000] `remove Project:: +Info 131 [00:04:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 132 [00:04:55.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -2650,19 +2647,19 @@ Info 135 [00:04:58.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 136 [00:04:59.000] ----------------------------------------------- -Info 137 [00:05:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 138 [00:05:01.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 139 [00:05:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 140 [00:05:03.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 141 [00:05:04.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 142 [00:05:05.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 143 [00:05:06.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 144 [00:05:07.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 145 [00:05:08.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 146 [00:05:09.000] `remove Project:: -Info 147 [00:05:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 148 [00:05:11.000] Files (2) +Info 133 [00:04:56.000] ----------------------------------------------- +Info 134 [00:04:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 135 [00:04:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 136 [00:04:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 137 [00:05:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 138 [00:05:01.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 139 [00:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 140 [00:05:03.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 141 [00:05:04.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 142 [00:05:05.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 143 [00:05:06.000] `remove Project:: +Info 144 [00:05:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 145 [00:05:08.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2672,24 +2669,24 @@ Info 148 [00:05:11.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 149 [00:05:12.000] ----------------------------------------------- -Info 150 [00:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 151 [00:05:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 152 [00:05:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 153 [00:05:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 154 [00:05:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 155 [00:05:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 156 [00:05:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 157 [00:05:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 158 [00:05:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 159 [00:05:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 160 [00:05:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 160 [00:05:24.000] Files (2) - -Info 160 [00:05:25.000] ----------------------------------------------- -Info 160 [00:05:26.000] Open files: -Info 160 [00:05:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 160 [00:05:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 146 [00:05:09.000] ----------------------------------------------- +Info 147 [00:05:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 148 [00:05:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 149 [00:05:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 150 [00:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 151 [00:05:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 152 [00:05:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 153 [00:05:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 154 [00:05:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 155 [00:05:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 156 [00:05:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 157 [00:05:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 157 [00:05:21.000] Files (2) + +Info 157 [00:05:22.000] ----------------------------------------------- +Info 157 [00:05:23.000] Open files: +Info 157 [00:05:24.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 157 [00:05:25.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2708,7 +2705,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 160 [00:05:29.000] response: +Info 157 [00:05:26.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dts-not-present.js index 1c3be6de5596b..a75ef4a57bfd2 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 @@ -208,18 +208,17 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 20 [00:01:24.000] Files (2) +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 18 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 19 [00:01:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -229,16 +228,16 @@ Info 20 [00:01:24.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 21 [00:01:25.000] ----------------------------------------------- -Info 22 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 23 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 24 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 24 [00:01:29.000] Files (2) +Info 20 [00:01:24.000] ----------------------------------------------- +Info 21 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 22 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 23 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 23 [00:01:28.000] Files (2) -Info 24 [00:01:30.000] ----------------------------------------------- -Info 24 [00:01:31.000] Open files: -Info 24 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 24 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 23 [00:01:29.000] ----------------------------------------------- +Info 23 [00:01:30.000] Open files: +Info 23 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 23 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -259,11 +258,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 24 [00:01:34.000] response: +Info 23 [00:01:33.000] response: { "responseRequired": false } -Info 25 [00:01:35.000] request: +Info 24 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -292,11 +291,11 @@ FsWatchesRecursive:: /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 -Info 29 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 30 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +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 +Info 28 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 29 [00:01:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -307,17 +306,16 @@ Info 30 [00:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 31 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 32 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 30 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -327,22 +325,22 @@ Info 41 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 42 [00:01:52.000] ----------------------------------------------- -Info 43 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 45 [00:01:56.000] Files (2) - -Info 45 [00:01:57.000] ----------------------------------------------- -Info 45 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:59.000] Files (2) - -Info 45 [00:02:00.000] ----------------------------------------------- -Info 45 [00:02:01.000] Open files: -Info 45 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 45 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 45 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 45 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:50.000] ----------------------------------------------- +Info 41 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 43 [00:01:54.000] Files (2) + +Info 43 [00:01:55.000] ----------------------------------------------- +Info 43 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:57.000] Files (2) + +Info 43 [00:01:58.000] ----------------------------------------------- +Info 43 [00:01:59.000] Open files: +Info 43 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 43 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 43 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 43 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -369,11 +367,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 45 [00:02:06.000] response: +Info 43 [00:02:04.000] response: { "responseRequired": false } -Info 46 [00:02:07.000] request: +Info 44 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -408,11 +406,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 48 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 49 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 51 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 48 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 49 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -420,17 +418,16 @@ Info 51 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 52 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 53 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 55 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 56 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 57 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 61 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 62 [00:02:23.000] Files (2) +Info 50 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 51 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 53 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 54 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 58 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 59 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -440,26 +437,26 @@ Info 62 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 63 [00:02:24.000] ----------------------------------------------- -Info 64 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 64 [00:02:26.000] Files (2) - -Info 64 [00:02:27.000] ----------------------------------------------- -Info 64 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 64 [00:02:29.000] Files (2) - -Info 64 [00:02:30.000] ----------------------------------------------- -Info 64 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:32.000] Files (2) - -Info 64 [00:02:33.000] ----------------------------------------------- -Info 64 [00:02:34.000] Open files: -Info 64 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 64 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 64 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 64 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 64 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 60 [00:02:21.000] ----------------------------------------------- +Info 61 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 61 [00:02:23.000] Files (2) + +Info 61 [00:02:24.000] ----------------------------------------------- +Info 61 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 61 [00:02:26.000] Files (2) + +Info 61 [00:02:27.000] ----------------------------------------------- +Info 61 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:29.000] Files (2) + +Info 61 [00:02:30.000] ----------------------------------------------- +Info 61 [00:02:31.000] Open files: +Info 61 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 61 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 61 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 61 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 61 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 61 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -492,11 +489,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:41.000] response: +Info 61 [00:02:38.000] response: { "responseRequired": false } -Info 65 [00:02:42.000] request: +Info 62 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -571,7 +568,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:43.000] response: +Info 63 [00:02:40.000] response: { "response": { "definitions": [ @@ -608,7 +605,7 @@ Info 66 [00:02:43.000] response: }, "responseRequired": true } -Info 67 [00:02:44.000] request: +Info 64 [00:02:41.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -683,7 +680,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:45.000] response: +Info 65 [00:02:42.000] response: { "response": { "definitions": [ @@ -720,7 +717,7 @@ Info 68 [00:02:45.000] response: }, "responseRequired": true } -Info 69 [00:02:46.000] request: +Info 66 [00:02:43.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -795,7 +792,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:47.000] response: +Info 67 [00:02:44.000] response: { "response": { "definitions": [ @@ -832,7 +829,7 @@ Info 70 [00:02:47.000] response: }, "responseRequired": true } -Info 71 [00:02:48.000] request: +Info 68 [00:02:45.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -907,7 +904,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:49.000] response: +Info 69 [00:02:46.000] response: { "response": { "definitions": [ @@ -944,7 +941,7 @@ Info 72 [00:02:49.000] response: }, "responseRequired": true } -Info 73 [00:02:50.000] request: +Info 70 [00:02:47.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1019,7 +1016,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:51.000] response: +Info 71 [00:02:48.000] response: { "response": { "definitions": [ @@ -1056,7 +1053,7 @@ Info 74 [00:02:51.000] response: }, "responseRequired": true } -Info 75 [00:02:52.000] request: +Info 72 [00:02:49.000] request: { "command": "rename", "arguments": { @@ -1099,7 +1096,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +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 PolledWatches:: @@ -1134,7 +1131,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:02:54.000] response: +Info 74 [00:02:51.000] response: { "response": { "info": { @@ -1182,7 +1179,7 @@ Info 77 [00:02:54.000] response: }, "responseRequired": true } -Info 78 [00:02:55.000] request: +Info 75 [00:02:52.000] request: { "command": "rename", "arguments": { @@ -1261,7 +1258,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [00:02:56.000] response: +Info 76 [00:02:53.000] response: { "response": { "info": { @@ -1309,7 +1306,7 @@ Info 79 [00:02:56.000] response: }, "responseRequired": true } -Info 80 [00:02:57.000] request: +Info 77 [00:02:54.000] request: { "command": "rename", "arguments": { @@ -1388,7 +1385,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [00:02:58.000] response: +Info 78 [00:02:55.000] response: { "response": { "info": { @@ -1436,7 +1433,7 @@ Info 81 [00:02:58.000] response: }, "responseRequired": true } -Info 82 [00:02:59.000] request: +Info 79 [00:02:56.000] request: { "command": "rename", "arguments": { @@ -1515,7 +1512,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [00:03:00.000] response: +Info 80 [00:02:57.000] response: { "response": { "info": { @@ -1563,7 +1560,7 @@ Info 83 [00:03:00.000] response: }, "responseRequired": true } -Info 84 [00:03:01.000] request: +Info 81 [00:02:58.000] request: { "command": "rename", "arguments": { @@ -1642,7 +1639,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [00:03:02.000] response: +Info 82 [00:02:59.000] response: { "response": { "info": { @@ -1690,7 +1687,7 @@ Info 85 [00:03:02.000] response: }, "responseRequired": true } -Info 86 [00:03:03.000] request: +Info 83 [00:03:00.000] request: { "seq": 0, "type": "request", @@ -1733,24 +1730,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [00:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 88 [00:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 88 [00:03:06.000] Files (2) +Info 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) -Info 88 [00:03:07.000] ----------------------------------------------- -Info 88 [00:03:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 88 [00:03:09.000] Files (2) +Info 85 [00:03:04.000] ----------------------------------------------- +Info 85 [00:03:05.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 85 [00:03:06.000] Files (2) -Info 88 [00:03:10.000] ----------------------------------------------- -Info 88 [00:03:11.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 88 [00:03:12.000] Files (2) +Info 85 [00:03:07.000] ----------------------------------------------- +Info 85 [00:03:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 85 [00:03:09.000] Files (2) -Info 88 [00:03:13.000] ----------------------------------------------- -Info 88 [00:03:14.000] Open files: -Info 88 [00:03:15.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 88 [00:03:16.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 88 [00:03:17.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 88 [00:03:18.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 85 [00:03:10.000] ----------------------------------------------- +Info 85 [00:03:11.000] Open files: +Info 85 [00:03:12.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 85 [00:03:13.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 85 [00:03:14.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 85 [00:03:15.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1787,11 +1784,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [00:03:19.000] response: +Info 85 [00:03:16.000] response: { "responseRequired": false } -Info 89 [00:03:20.000] request: +Info 86 [00:03:17.000] request: { "seq": 0, "type": "request", @@ -1836,28 +1833,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 91 [00:03:22.000] Search path: /user/username/projects/myproject/random -Info 92 [00:03:23.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 93 [00:03:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 93 [00:03:25.000] Files (2) - -Info 93 [00:03:26.000] ----------------------------------------------- -Info 93 [00:03:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 93 [00:03:28.000] Files (2) - -Info 93 [00:03:29.000] ----------------------------------------------- -Info 93 [00:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 93 [00:03:31.000] Files (2) - -Info 93 [00:03:32.000] ----------------------------------------------- -Info 93 [00:03:33.000] Open files: -Info 93 [00:03:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 93 [00:03:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 93 [00:03:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 93 [00:03:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 93 [00:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 93 [00:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 90 [00:03:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 90 [00:03:22.000] Files (2) + +Info 90 [00:03:23.000] ----------------------------------------------- +Info 90 [00:03:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 90 [00:03:25.000] Files (2) + +Info 90 [00:03:26.000] ----------------------------------------------- +Info 90 [00:03:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 90 [00:03:28.000] Files (2) + +Info 90 [00:03:29.000] ----------------------------------------------- +Info 90 [00:03:30.000] Open files: +Info 90 [00:03:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 90 [00:03:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 90 [00:03:33.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 90 [00:03:34.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 90 [00:03:35.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 90 [00:03:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1892,11 +1889,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [00:03:40.000] response: +Info 90 [00:03:37.000] response: { "responseRequired": false } -Info 94 [00:03:41.000] request: +Info 91 [00:03:38.000] request: { "seq": 0, "type": "request", @@ -1939,24 +1936,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [00:03:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 96 [00:03:43.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 96 [00:03:44.000] Files (2) +Info 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) -Info 96 [00:03:45.000] ----------------------------------------------- -Info 96 [00:03:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 96 [00:03:47.000] Files (2) +Info 93 [00:03:42.000] ----------------------------------------------- +Info 93 [00:03:43.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 93 [00:03:44.000] Files (2) -Info 96 [00:03:48.000] ----------------------------------------------- -Info 96 [00:03:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [00:03:50.000] Files (2) +Info 93 [00:03:45.000] ----------------------------------------------- +Info 93 [00:03:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 93 [00:03:47.000] Files (2) -Info 96 [00:03:51.000] ----------------------------------------------- -Info 96 [00:03:52.000] Open files: -Info 96 [00:03:53.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 96 [00:03:54.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 96 [00:03:55.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [00:03:56.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 93 [00:03:48.000] ----------------------------------------------- +Info 93 [00:03:49.000] Open files: +Info 93 [00:03:50.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 93 [00:03:51.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 93 [00:03:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 93 [00:03:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1993,11 +1990,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:57.000] response: +Info 93 [00:03:54.000] response: { "responseRequired": false } -Info 97 [00:03:58.000] request: +Info 94 [00:03:55.000] request: { "seq": 0, "type": "request", @@ -2042,22 +2039,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 99 [00:04:00.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 99 [00:04:01.000] Files (2) +Info 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) -Info 99 [00:04:02.000] ----------------------------------------------- -Info 99 [00:04:03.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 99 [00:04:04.000] Files (2) +Info 96 [00:03:59.000] ----------------------------------------------- +Info 96 [00:04:00.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 96 [00:04:01.000] Files (2) -Info 99 [00:04:05.000] ----------------------------------------------- -Info 99 [00:04:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 99 [00:04:07.000] Files (2) +Info 96 [00:04:02.000] ----------------------------------------------- +Info 96 [00:04:03.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 96 [00:04:04.000] Files (2) -Info 99 [00:04:08.000] ----------------------------------------------- -Info 99 [00:04:09.000] Open files: -Info 99 [00:04:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 99 [00:04:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 96 [00:04:05.000] ----------------------------------------------- +Info 96 [00:04:06.000] Open files: +Info 96 [00:04:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 96 [00:04:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2096,11 +2093,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [00:04:12.000] response: +Info 96 [00:04:09.000] response: { "responseRequired": false } -Info 100 [00:04:13.000] request: +Info 97 [00:04:10.000] request: { "seq": 0, "type": "request", @@ -2147,20 +2144,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [00:04:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 102 [00:04:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 102 [00:04:16.000] Files (2) +Info 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) -Info 102 [00:04:17.000] ----------------------------------------------- -Info 102 [00:04:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 102 [00:04:19.000] Files (2) +Info 99 [00:04:14.000] ----------------------------------------------- +Info 99 [00:04:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 99 [00:04:16.000] Files (2) -Info 102 [00:04:20.000] ----------------------------------------------- -Info 102 [00:04:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 102 [00:04:22.000] Files (2) +Info 99 [00:04:17.000] ----------------------------------------------- +Info 99 [00:04:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 99 [00:04:19.000] Files (2) -Info 102 [00:04:23.000] ----------------------------------------------- -Info 102 [00:04:24.000] Open files: +Info 99 [00:04:20.000] ----------------------------------------------- +Info 99 [00:04:21.000] Open files: After request PolledWatches:: @@ -2201,11 +2198,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:04:25.000] response: +Info 99 [00:04:22.000] response: { "responseRequired": false } -Info 103 [00:04:26.000] request: +Info 100 [00:04:23.000] request: { "seq": 0, "type": "request", @@ -2254,12 +2251,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:04:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 105 [00:04:28.000] Search path: /user/username/projects/myproject/random -Info 106 [00:04:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 107 [00:04:30.000] `remove Project:: -Info 108 [00:04:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 109 [00:04:32.000] Files (2) +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 +Info 104 [00:04:27.000] `remove Project:: +Info 105 [00:04:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 106 [00:04:29.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -2269,19 +2266,19 @@ Info 109 [00:04:32.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 110 [00:04:33.000] ----------------------------------------------- -Info 111 [00:04:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 112 [00:04:35.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 113 [00:04:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 114 [00:04:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 115 [00:04:38.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 116 [00:04:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 117 [00:04:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 118 [00:04:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 119 [00:04:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 120 [00:04:43.000] `remove Project:: -Info 121 [00:04:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 122 [00:04:45.000] Files (2) +Info 107 [00:04:30.000] ----------------------------------------------- +Info 108 [00:04:31.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 109 [00:04:32.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 110 [00:04:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 111 [00:04:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 112 [00:04:35.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 113 [00:04:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 114 [00:04:37.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 115 [00:04:38.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 116 [00:04:39.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 117 [00:04:40.000] `remove Project:: +Info 118 [00:04:41.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 119 [00:04:42.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2291,24 +2288,24 @@ Info 122 [00:04:45.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 123 [00:04:46.000] ----------------------------------------------- -Info 124 [00:04:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 125 [00:04:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 126 [00:04:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 127 [00:04:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 128 [00:04:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 129 [00:04:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 130 [00:04:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 131 [00:04:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 132 [00:04:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 133 [00:04:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 134 [00:04:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 134 [00:04:58.000] Files (2) - -Info 134 [00:04:59.000] ----------------------------------------------- -Info 134 [00:05:00.000] Open files: -Info 134 [00:05:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 134 [00:05:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 120 [00:04:43.000] ----------------------------------------------- +Info 121 [00:04:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 122 [00:04:45.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 123 [00:04:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 124 [00:04:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 125 [00:04:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 126 [00:04:49.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 127 [00:04:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 128 [00:04:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 129 [00:04:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 130 [00:04:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 131 [00:04:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 131 [00:04:55.000] Files (2) + +Info 131 [00:04:56.000] ----------------------------------------------- +Info 131 [00:04:57.000] Open files: +Info 131 [00:04:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 131 [00:04:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2327,7 +2324,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 134 [00:05:03.000] response: +Info 131 [00:05:00.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-changes-with-timeout-before-request.js index 407f240fb6157..80ac721fcf1f9 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 @@ -216,19 +216,18 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:24.000] Files (3) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:23.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +240,16 @@ Info 21 [00:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:25.000] ----------------------------------------------- -Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 21 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) -Info 25 [00:01:30.000] ----------------------------------------------- -Info 25 [00:01:31.000] Open files: -Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:29.000] ----------------------------------------------- +Info 24 [00:01:30.000] Open files: +Info 24 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +272,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:34.000] response: +Info 24 [00:01:33.000] response: { "responseRequired": false } -Info 26 [00:01:35.000] request: +Info 25 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -308,11 +307,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/dependency -Info 28 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +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 +Info 29 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 30 [00:01:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -323,17 +322,16 @@ Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -343,22 +341,22 @@ Info 42 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:56.000] Files (3) - -Info 46 [00:01:57.000] ----------------------------------------------- -Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:01:59.000] Files (2) - -Info 46 [00:02:00.000] ----------------------------------------------- -Info 46 [00:02:01.000] Open files: -Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) + +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) + +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -387,11 +385,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [00:02:06.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 47 [00:02:07.000] request: +Info 45 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -428,11 +426,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -440,17 +438,16 @@ Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:23.000] Files (2) +Info 51 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -460,26 +457,26 @@ Info 63 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:24.000] ----------------------------------------------- -Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:26.000] Files (3) - -Info 65 [00:02:27.000] ----------------------------------------------- -Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:29.000] Files (2) - -Info 65 [00:02:30.000] ----------------------------------------------- -Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:32.000] Files (2) - -Info 65 [00:02:33.000] ----------------------------------------------- -Info 65 [00:02:34.000] Open files: -Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:21.000] ----------------------------------------------- +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (3) + +Info 62 [00:02:24.000] ----------------------------------------------- +Info 62 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:26.000] Files (2) + +Info 62 [00:02:27.000] ----------------------------------------------- +Info 62 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:29.000] Files (2) + +Info 62 [00:02:30.000] ----------------------------------------------- +Info 62 [00:02:31.000] Open files: +Info 62 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -514,11 +511,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:41.000] response: +Info 62 [00:02:38.000] response: { "responseRequired": false } -Info 66 [00:02:42.000] request: +Info 63 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -563,7 +560,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -600,7 +597,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:44.000] response: +Info 65 [00:02:41.000] response: { "response": { "definitions": [ @@ -637,7 +634,7 @@ Info 68 [00:02:44.000] response: }, "responseRequired": true } -Info 69 [00:02:45.000] request: +Info 66 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -684,8 +681,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -722,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:48.000] response: +Info 69 [00:02:45.000] response: { "response": { "info": { @@ -803,12 +800,12 @@ Info 72 [00:02:48.000] response: }, "responseRequired": true } -Info 73 [00:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 74 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 75 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 76 [00:02:55.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 77 [00:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 78 [00:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 70 [00:02:49.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 71 [00:02:50.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:51.000] Scheduled: *ensureProjectForOpenFiles* +Info 73 [00:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 74 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 75 [00:02:54.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts.map] {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} @@ -848,53 +845,53 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [00:02:58.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 80 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 81 [00:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 82 [00:03:01.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 83 [00:03:02.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 84 [00:03:03.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 85 [00:03:04.000] Running: *ensureProjectForOpenFiles* -Info 86 [00:03:05.000] Before ensureProjectForOpenFiles: -Info 87 [00:03:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 87 [00:03:07.000] Files (3) - -Info 87 [00:03:08.000] ----------------------------------------------- -Info 87 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 87 [00:03:10.000] Files (2) - -Info 87 [00:03:11.000] ----------------------------------------------- -Info 87 [00:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 87 [00:03:13.000] Files (2) - -Info 87 [00:03:14.000] ----------------------------------------------- -Info 87 [00:03:15.000] Open files: -Info 87 [00:03:16.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 87 [00:03:17.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 87 [00:03:18.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 87 [00:03:19.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 87 [00:03:20.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 87 [00:03:21.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 87 [00:03:22.000] After ensureProjectForOpenFiles: -Info 88 [00:03:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 88 [00:03:24.000] Files (3) - -Info 88 [00:03:25.000] ----------------------------------------------- -Info 88 [00:03:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 88 [00:03:27.000] Files (2) - -Info 88 [00:03:28.000] ----------------------------------------------- -Info 88 [00:03:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 88 [00:03:30.000] Files (2) - -Info 88 [00:03:31.000] ----------------------------------------------- -Info 88 [00:03:32.000] Open files: -Info 88 [00:03:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 88 [00:03:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 88 [00:03:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 88 [00:03:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 88 [00:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 88 [00:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 79 [00:02:58.000] Running: /user/username/projects/myproject/main/tsconfig.json +Info 80 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 81 [00:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 82 [00:03:01.000] Running: *ensureProjectForOpenFiles* +Info 83 [00:03:02.000] Before ensureProjectForOpenFiles: +Info 84 [00:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 84 [00:03:04.000] Files (3) + +Info 84 [00:03:05.000] ----------------------------------------------- +Info 84 [00:03:06.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 84 [00:03:07.000] Files (2) + +Info 84 [00:03:08.000] ----------------------------------------------- +Info 84 [00:03:09.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 84 [00:03:10.000] Files (2) + +Info 84 [00:03:11.000] ----------------------------------------------- +Info 84 [00:03:12.000] Open files: +Info 84 [00:03:13.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 84 [00:03:14.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 84 [00:03:15.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 84 [00:03:16.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 84 [00:03:17.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 84 [00:03:18.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 84 [00:03:19.000] After ensureProjectForOpenFiles: +Info 85 [00:03:20.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 85 [00:03:21.000] Files (3) + +Info 85 [00:03:22.000] ----------------------------------------------- +Info 85 [00:03:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 85 [00:03:24.000] Files (2) + +Info 85 [00:03:25.000] ----------------------------------------------- +Info 85 [00:03:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 85 [00:03:27.000] Files (2) + +Info 85 [00:03:28.000] ----------------------------------------------- +Info 85 [00:03:29.000] Open files: +Info 85 [00:03:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 85 [00:03:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 85 [00:03:32.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 85 [00:03:33.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 85 [00:03:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 85 [00:03:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -931,7 +928,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [00:03:39.000] request: +Info 85 [00:03:36.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1014,7 +1011,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:40.000] response: +Info 86 [00:03:37.000] response: { "response": { "definitions": [ @@ -1051,7 +1048,7 @@ Info 89 [00:03:40.000] response: }, "responseRequired": true } -Info 90 [00:03:41.000] request: +Info 87 [00:03:38.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1134,7 +1131,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [00:03:42.000] response: +Info 88 [00:03:39.000] response: { "response": { "definitions": [ @@ -1171,7 +1168,7 @@ Info 91 [00:03:42.000] response: }, "responseRequired": true } -Info 92 [00:03:43.000] request: +Info 89 [00:03:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1254,7 +1251,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [00:03:44.000] response: +Info 90 [00:03:41.000] response: { "response": { "definitions": [ @@ -1291,7 +1288,7 @@ Info 93 [00:03:44.000] response: }, "responseRequired": true } -Info 94 [00:03:45.000] request: +Info 91 [00:03:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1374,7 +1371,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [00:03:46.000] response: +Info 92 [00:03:43.000] response: { "response": { "definitions": [ @@ -1411,7 +1408,7 @@ Info 95 [00:03:46.000] response: }, "responseRequired": true } -Info 96 [00:03:47.000] request: +Info 93 [00:03:44.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1494,7 +1491,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [00:03:48.000] response: +Info 94 [00:03:45.000] response: { "response": { "definitions": [ @@ -1531,7 +1528,7 @@ Info 97 [00:03:48.000] response: }, "responseRequired": true } -Info 98 [00:03:49.000] request: +Info 95 [00:03:46.000] request: { "command": "rename", "arguments": { @@ -1578,8 +1575,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [00:03:50.000] Search path: /user/username/projects/myproject/dependency -Info 100 [00:03:51.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1616,7 +1613,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [00:03:52.000] response: +Info 98 [00:03:49.000] response: { "response": { "info": { @@ -1697,7 +1694,7 @@ Info 101 [00:03:52.000] response: }, "responseRequired": true } -Info 102 [00:03:53.000] request: +Info 99 [00:03:50.000] request: { "command": "rename", "arguments": { @@ -1744,8 +1741,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [00:03:54.000] Search path: /user/username/projects/myproject/dependency -Info 104 [00:03:55.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1782,7 +1779,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 105 [00:03:56.000] response: +Info 102 [00:03:53.000] response: { "response": { "info": { @@ -1863,7 +1860,7 @@ Info 105 [00:03:56.000] response: }, "responseRequired": true } -Info 106 [00:03:57.000] request: +Info 103 [00:03:54.000] request: { "command": "rename", "arguments": { @@ -1910,8 +1907,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 107 [00:03:58.000] Search path: /user/username/projects/myproject/dependency -Info 108 [00:03:59.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1948,7 +1945,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [00:04:00.000] response: +Info 106 [00:03:57.000] response: { "response": { "info": { @@ -2029,7 +2026,7 @@ Info 109 [00:04:00.000] response: }, "responseRequired": true } -Info 110 [00:04:01.000] request: +Info 107 [00:03:58.000] request: { "command": "rename", "arguments": { @@ -2076,8 +2073,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [00:04:02.000] Search path: /user/username/projects/myproject/dependency -Info 112 [00:04:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2114,7 +2111,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [00:04:04.000] response: +Info 110 [00:04:01.000] response: { "response": { "info": { @@ -2195,7 +2192,7 @@ Info 113 [00:04:04.000] response: }, "responseRequired": true } -Info 114 [00:04:05.000] request: +Info 111 [00:04:02.000] request: { "command": "rename", "arguments": { @@ -2242,8 +2239,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [00:04:06.000] Search path: /user/username/projects/myproject/dependency -Info 116 [00:04:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2280,7 +2277,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [00:04:08.000] response: +Info 114 [00:04:05.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-changes.js index 2c736a838850c..ba8d4f7439604 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 @@ -216,19 +216,18 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:24.000] Files (3) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:23.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +240,16 @@ Info 21 [00:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:25.000] ----------------------------------------------- -Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 21 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) -Info 25 [00:01:30.000] ----------------------------------------------- -Info 25 [00:01:31.000] Open files: -Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:29.000] ----------------------------------------------- +Info 24 [00:01:30.000] Open files: +Info 24 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +272,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:34.000] response: +Info 24 [00:01:33.000] response: { "responseRequired": false } -Info 26 [00:01:35.000] request: +Info 25 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -308,11 +307,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/dependency -Info 28 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +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 +Info 29 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 30 [00:01:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -323,17 +322,16 @@ Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -343,22 +341,22 @@ Info 42 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:56.000] Files (3) - -Info 46 [00:01:57.000] ----------------------------------------------- -Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:01:59.000] Files (2) - -Info 46 [00:02:00.000] ----------------------------------------------- -Info 46 [00:02:01.000] Open files: -Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) + +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) + +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -387,11 +385,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [00:02:06.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 47 [00:02:07.000] request: +Info 45 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -428,11 +426,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -440,17 +438,16 @@ Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:23.000] Files (2) +Info 51 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -460,26 +457,26 @@ Info 63 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:24.000] ----------------------------------------------- -Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:26.000] Files (3) - -Info 65 [00:02:27.000] ----------------------------------------------- -Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:29.000] Files (2) - -Info 65 [00:02:30.000] ----------------------------------------------- -Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:32.000] Files (2) - -Info 65 [00:02:33.000] ----------------------------------------------- -Info 65 [00:02:34.000] Open files: -Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:21.000] ----------------------------------------------- +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (3) + +Info 62 [00:02:24.000] ----------------------------------------------- +Info 62 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:26.000] Files (2) + +Info 62 [00:02:27.000] ----------------------------------------------- +Info 62 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:29.000] Files (2) + +Info 62 [00:02:30.000] ----------------------------------------------- +Info 62 [00:02:31.000] Open files: +Info 62 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -514,11 +511,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:41.000] response: +Info 62 [00:02:38.000] response: { "responseRequired": false } -Info 66 [00:02:42.000] request: +Info 63 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -563,7 +560,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -600,7 +597,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:44.000] response: +Info 65 [00:02:41.000] response: { "response": { "definitions": [ @@ -637,7 +634,7 @@ Info 68 [00:02:44.000] response: }, "responseRequired": true } -Info 69 [00:02:45.000] request: +Info 66 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -684,8 +681,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -722,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:48.000] response: +Info 69 [00:02:45.000] response: { "response": { "info": { @@ -803,13 +800,13 @@ Info 72 [00:02:48.000] response: }, "responseRequired": true } -Info 73 [00:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 74 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 75 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 76 [00:02:55.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 77 [00:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 78 [00:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 79 [00:02:58.000] request: +Info 70 [00:02:49.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 71 [00:02:50.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:51.000] Scheduled: *ensureProjectForOpenFiles* +Info 73 [00:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 74 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 75 [00:02:54.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 76 [00:02:55.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -859,8 +856,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 81 [00:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +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:: @@ -897,7 +894,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [00:03:01.000] response: +Info 79 [00:02:58.000] response: { "response": { "definitions": [ @@ -934,7 +931,7 @@ Info 82 [00:03:01.000] response: }, "responseRequired": true } -Info 83 [00:03:02.000] request: +Info 80 [00:02:59.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1017,7 +1014,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:03:03.000] response: +Info 81 [00:03:00.000] response: { "response": { "definitions": [ @@ -1054,7 +1051,7 @@ Info 84 [00:03:03.000] response: }, "responseRequired": true } -Info 85 [00:03:04.000] request: +Info 82 [00:03:01.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1137,7 +1134,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:05.000] response: +Info 83 [00:03:02.000] response: { "response": { "definitions": [ @@ -1174,7 +1171,7 @@ Info 86 [00:03:05.000] response: }, "responseRequired": true } -Info 87 [00:03:06.000] request: +Info 84 [00:03:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1257,7 +1254,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [00:03:07.000] response: +Info 85 [00:03:04.000] response: { "response": { "definitions": [ @@ -1294,7 +1291,7 @@ Info 88 [00:03:07.000] response: }, "responseRequired": true } -Info 89 [00:03:08.000] request: +Info 86 [00:03:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1377,7 +1374,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:09.000] response: +Info 87 [00:03:06.000] response: { "response": { "definitions": [ @@ -1414,7 +1411,7 @@ Info 90 [00:03:09.000] response: }, "responseRequired": true } -Info 91 [00:03:10.000] request: +Info 88 [00:03:07.000] request: { "command": "rename", "arguments": { @@ -1461,10 +1458,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [00:03:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 93 [00:03:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 94 [00:03:13.000] Search path: /user/username/projects/myproject/dependency -Info 95 [00:03:14.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1501,7 +1498,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:15.000] response: +Info 93 [00:03:12.000] response: { "response": { "info": { @@ -1582,7 +1579,7 @@ Info 96 [00:03:15.000] response: }, "responseRequired": true } -Info 97 [00:03:16.000] request: +Info 94 [00:03:13.000] request: { "command": "rename", "arguments": { @@ -1629,8 +1626,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:17.000] Search path: /user/username/projects/myproject/dependency -Info 99 [00:03:18.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1667,7 +1664,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:19.000] response: +Info 97 [00:03:16.000] response: { "response": { "info": { @@ -1748,7 +1745,7 @@ Info 100 [00:03:19.000] response: }, "responseRequired": true } -Info 101 [00:03:20.000] request: +Info 98 [00:03:17.000] request: { "command": "rename", "arguments": { @@ -1795,8 +1792,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:21.000] Search path: /user/username/projects/myproject/dependency -Info 103 [00:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1833,7 +1830,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:23.000] response: +Info 101 [00:03:20.000] response: { "response": { "info": { @@ -1914,7 +1911,7 @@ Info 104 [00:03:23.000] response: }, "responseRequired": true } -Info 105 [00:03:24.000] request: +Info 102 [00:03:21.000] request: { "command": "rename", "arguments": { @@ -1961,8 +1958,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:25.000] Search path: /user/username/projects/myproject/dependency -Info 107 [00:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1999,7 +1996,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:27.000] response: +Info 105 [00:03:24.000] response: { "response": { "info": { @@ -2080,7 +2077,7 @@ Info 108 [00:03:27.000] response: }, "responseRequired": true } -Info 109 [00:03:28.000] request: +Info 106 [00:03:25.000] request: { "command": "rename", "arguments": { @@ -2127,8 +2124,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:29.000] Search path: /user/username/projects/myproject/dependency -Info 111 [00:03:30.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2165,7 +2162,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:03:31.000] response: +Info 109 [00:03:28.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-created.js index 5f788710a438c..73a546a32f200 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 @@ -213,19 +213,18 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:25.000] Files (3) +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -238,16 +237,16 @@ Info 21 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:26.000] ----------------------------------------------- -Info 23 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:30.000] Files (3) +Info 21 [00:01:25.000] ----------------------------------------------- +Info 22 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:29.000] Files (3) -Info 25 [00:01:31.000] ----------------------------------------------- -Info 25 [00:01:32.000] Open files: -Info 25 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:30.000] ----------------------------------------------- +Info 24 [00:01:31.000] Open files: +Info 24 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -270,11 +269,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:35.000] response: +Info 24 [00:01:34.000] response: { "responseRequired": false } -Info 26 [00:01:36.000] request: +Info 25 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -305,11 +304,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:37.000] Search path: /user/username/projects/myproject/dependency -Info 28 [00:01:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [00:01:39.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [00:01:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 26 [00:01:36.000] Search path: /user/username/projects/myproject/dependency +Info 27 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 28 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 29 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 30 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -320,17 +319,16 @@ Info 31 [00:01:41.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:52.000] Files (2) +Info 31 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -340,22 +338,22 @@ Info 42 [00:01:52.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:53.000] ----------------------------------------------- -Info 44 [00:01:54.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:55.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:57.000] Files (3) - -Info 46 [00:01:58.000] ----------------------------------------------- -Info 46 [00:01:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:02:00.000] Files (2) - -Info 46 [00:02:01.000] ----------------------------------------------- -Info 46 [00:02:02.000] Open files: -Info 46 [00:02:03.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:05.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:06.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:51.000] ----------------------------------------------- +Info 42 [00:01:52.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:53.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:55.000] Files (3) + +Info 44 [00:01:56.000] ----------------------------------------------- +Info 44 [00:01:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:58.000] Files (2) + +Info 44 [00:01:59.000] ----------------------------------------------- +Info 44 [00:02:00.000] Open files: +Info 44 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:04.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -384,11 +382,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [00:02:07.000] response: +Info 44 [00:02:05.000] response: { "responseRequired": false } -Info 47 [00:02:08.000] request: +Info 45 [00:02:06.000] request: { "seq": 0, "type": "request", @@ -425,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [00:02:09.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:11.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:13.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:11.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -437,17 +435,16 @@ Info 52 [00:02:13.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:24.000] Files (2) +Info 51 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -457,26 +454,26 @@ Info 63 [00:02:24.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:25.000] ----------------------------------------------- -Info 65 [00:02:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:27.000] Files (3) - -Info 65 [00:02:28.000] ----------------------------------------------- -Info 65 [00:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:30.000] Files (2) - -Info 65 [00:02:31.000] ----------------------------------------------- -Info 65 [00:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:33.000] Files (2) - -Info 65 [00:02:34.000] ----------------------------------------------- -Info 65 [00:02:35.000] Open files: -Info 65 [00:02:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:22.000] ----------------------------------------------- +Info 62 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:24.000] Files (3) + +Info 62 [00:02:25.000] ----------------------------------------------- +Info 62 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:27.000] Files (2) + +Info 62 [00:02:28.000] ----------------------------------------------- +Info 62 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:30.000] Files (2) + +Info 62 [00:02:31.000] ----------------------------------------------- +Info 62 [00:02:32.000] Open files: +Info 62 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -511,11 +508,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:42.000] response: +Info 62 [00:02:39.000] response: { "responseRequired": false } -Info 66 [00:02:43.000] request: +Info 63 [00:02:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -560,7 +557,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +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 PolledWatches:: @@ -597,7 +594,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:45.000] response: +Info 65 [00:02:42.000] response: { "response": { "definitions": [ @@ -634,7 +631,7 @@ Info 68 [00:02:45.000] response: }, "responseRequired": true } -Info 69 [00:02:46.000] request: +Info 66 [00:02:43.000] request: { "command": "rename", "arguments": { @@ -717,7 +714,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:47.000] response: +Info 67 [00:02:44.000] response: { "response": { "info": { @@ -765,16 +762,16 @@ Info 70 [00:02:47.000] response: }, "responseRequired": true } -Info 71 [00:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 72 [00:02:51.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 73 [00:02:52.000] Scheduled: *ensureProjectForOpenFiles* -Info 74 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 75 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 76 [00:02:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 77 [00:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 78 [00:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 79 [00:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 80 [00:02:59.000] request: +Info 68 [00:02:47.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 69 [00:02:48.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 70 [00:02:49.000] Scheduled: *ensureProjectForOpenFiles* +Info 71 [00:02:50.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:51.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 73 [00:02:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 74 [00:02:53.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 75 [00:02:54.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 76 [00:02:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 77 [00:02:56.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -822,9 +819,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [00:03:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 82 [00:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 83 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 78 [00:02:57.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 79 [00:02:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 80 [00:02:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -861,7 +858,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:03:03.000] response: +Info 81 [00:03:00.000] response: { "response": { "definitions": [ @@ -898,7 +895,7 @@ Info 84 [00:03:03.000] response: }, "responseRequired": true } -Info 85 [00:03:04.000] request: +Info 82 [00:03:01.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -981,7 +978,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:05.000] response: +Info 83 [00:03:02.000] response: { "response": { "definitions": [ @@ -1018,7 +1015,7 @@ Info 86 [00:03:05.000] response: }, "responseRequired": true } -Info 87 [00:03:06.000] request: +Info 84 [00:03:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1101,7 +1098,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [00:03:07.000] response: +Info 85 [00:03:04.000] response: { "response": { "definitions": [ @@ -1138,7 +1135,7 @@ Info 88 [00:03:07.000] response: }, "responseRequired": true } -Info 89 [00:03:08.000] request: +Info 86 [00:03:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1221,7 +1218,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:09.000] response: +Info 87 [00:03:06.000] response: { "response": { "definitions": [ @@ -1258,7 +1255,7 @@ Info 90 [00:03:09.000] response: }, "responseRequired": true } -Info 91 [00:03:10.000] request: +Info 88 [00:03:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1341,7 +1338,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [00:03:11.000] response: +Info 89 [00:03:08.000] response: { "response": { "definitions": [ @@ -1378,7 +1375,7 @@ Info 92 [00:03:11.000] response: }, "responseRequired": true } -Info 93 [00:03:12.000] request: +Info 90 [00:03:09.000] request: { "command": "rename", "arguments": { @@ -1425,10 +1422,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [00:03:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 95 [00:03:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 96 [00:03:15.000] Search path: /user/username/projects/myproject/dependency -Info 97 [00:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1465,7 +1462,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:17.000] response: +Info 95 [00:03:14.000] response: { "response": { "info": { @@ -1546,7 +1543,7 @@ Info 98 [00:03:17.000] response: }, "responseRequired": true } -Info 99 [00:03:18.000] request: +Info 96 [00:03:15.000] request: { "command": "rename", "arguments": { @@ -1593,8 +1590,8 @@ FsWatchesRecursive:: /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 +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:: @@ -1631,7 +1628,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:21.000] response: +Info 99 [00:03:18.000] response: { "response": { "info": { @@ -1712,7 +1709,7 @@ Info 102 [00:03:21.000] response: }, "responseRequired": true } -Info 103 [00:03:22.000] request: +Info 100 [00:03:19.000] request: { "command": "rename", "arguments": { @@ -1759,8 +1756,8 @@ FsWatchesRecursive:: /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 +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:: @@ -1797,7 +1794,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:25.000] response: +Info 103 [00:03:22.000] response: { "response": { "info": { @@ -1878,7 +1875,7 @@ Info 106 [00:03:25.000] response: }, "responseRequired": true } -Info 107 [00:03:26.000] request: +Info 104 [00:03:23.000] request: { "command": "rename", "arguments": { @@ -1925,8 +1922,8 @@ FsWatchesRecursive:: /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 +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:: @@ -1963,7 +1960,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:29.000] response: +Info 107 [00:03:26.000] response: { "response": { "info": { @@ -2044,7 +2041,7 @@ Info 110 [00:03:29.000] response: }, "responseRequired": true } -Info 111 [00:03:30.000] request: +Info 108 [00:03:27.000] request: { "command": "rename", "arguments": { @@ -2091,8 +2088,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:03:31.000] Search path: /user/username/projects/myproject/dependency -Info 113 [00:03:32.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2129,7 +2126,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [00:03:33.000] response: +Info 111 [00:03:30.000] response: { "response": { "info": { @@ -2210,7 +2207,7 @@ Info 114 [00:03:33.000] response: }, "responseRequired": true } -Info 115 [00:03:34.000] request: +Info 112 [00:03:31.000] request: { "seq": 0, "type": "request", @@ -2255,24 +2252,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [00:03:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 117 [00:03:36.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 117 [00:03:37.000] Files (3) +Info 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) -Info 117 [00:03:38.000] ----------------------------------------------- -Info 117 [00:03:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 117 [00:03:40.000] Files (2) +Info 114 [00:03:35.000] ----------------------------------------------- +Info 114 [00:03:36.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 114 [00:03:37.000] Files (2) -Info 117 [00:03:41.000] ----------------------------------------------- -Info 117 [00:03:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 117 [00:03:43.000] Files (2) +Info 114 [00:03:38.000] ----------------------------------------------- +Info 114 [00:03:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 114 [00:03:40.000] Files (2) -Info 117 [00:03:44.000] ----------------------------------------------- -Info 117 [00:03:45.000] Open files: -Info 117 [00:03:46.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 117 [00:03:47.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 117 [00:03:48.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 117 [00:03:49.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 114 [00:03:41.000] ----------------------------------------------- +Info 114 [00:03:42.000] Open files: +Info 114 [00:03:43.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 114 [00:03:44.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 114 [00:03:45.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 114 [00:03:46.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2311,11 +2308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [00:03:50.000] response: +Info 114 [00:03:47.000] response: { "responseRequired": false } -Info 118 [00:03:51.000] request: +Info 115 [00:03:48.000] request: { "seq": 0, "type": "request", @@ -2362,28 +2359,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 119 [00:03:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 120 [00:03:53.000] Search path: /user/username/projects/myproject/random -Info 121 [00:03:54.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 122 [00:03:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 122 [00:03:56.000] Files (3) - -Info 122 [00:03:57.000] ----------------------------------------------- -Info 122 [00:03:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 122 [00:03:59.000] Files (2) - -Info 122 [00:04:00.000] ----------------------------------------------- -Info 122 [00:04:01.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 122 [00:04:02.000] Files (2) - -Info 122 [00:04:03.000] ----------------------------------------------- -Info 122 [00:04:04.000] Open files: -Info 122 [00:04:05.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 122 [00:04:06.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 122 [00:04:07.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 122 [00:04:08.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 122 [00:04:09.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 122 [00:04:10.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 119 [00:03:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 119 [00:03:53.000] Files (3) + +Info 119 [00:03:54.000] ----------------------------------------------- +Info 119 [00:03:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 119 [00:03:56.000] Files (2) + +Info 119 [00:03:57.000] ----------------------------------------------- +Info 119 [00:03:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 119 [00:03:59.000] Files (2) + +Info 119 [00:04:00.000] ----------------------------------------------- +Info 119 [00:04:01.000] Open files: +Info 119 [00:04:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 119 [00:04:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 119 [00:04:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 119 [00:04:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 119 [00:04:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 119 [00:04:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2420,11 +2417,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 122 [00:04:11.000] response: +Info 119 [00:04:08.000] response: { "responseRequired": false } -Info 123 [00:04:12.000] request: +Info 120 [00:04:09.000] request: { "seq": 0, "type": "request", @@ -2469,24 +2466,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 124 [00:04:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 125 [00:04:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 125 [00:04:15.000] Files (3) +Info 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) -Info 125 [00:04:16.000] ----------------------------------------------- -Info 125 [00:04:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 125 [00:04:18.000] Files (2) +Info 122 [00:04:13.000] ----------------------------------------------- +Info 122 [00:04:14.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 122 [00:04:15.000] Files (2) -Info 125 [00:04:19.000] ----------------------------------------------- -Info 125 [00:04:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 125 [00:04:21.000] Files (2) +Info 122 [00:04:16.000] ----------------------------------------------- +Info 122 [00:04:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 122 [00:04:18.000] Files (2) -Info 125 [00:04:22.000] ----------------------------------------------- -Info 125 [00:04:23.000] Open files: -Info 125 [00:04:24.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 125 [00:04:25.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 125 [00:04:26.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 125 [00:04:27.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 122 [00:04:19.000] ----------------------------------------------- +Info 122 [00:04:20.000] Open files: +Info 122 [00:04:21.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 122 [00:04:22.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 122 [00:04:23.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 122 [00:04:24.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2525,11 +2522,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 125 [00:04:28.000] response: +Info 122 [00:04:25.000] response: { "responseRequired": false } -Info 126 [00:04:29.000] request: +Info 123 [00:04:26.000] request: { "seq": 0, "type": "request", @@ -2576,22 +2573,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 127 [00:04:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 128 [00:04:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 128 [00:04:32.000] Files (3) +Info 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) -Info 128 [00:04:33.000] ----------------------------------------------- -Info 128 [00:04:34.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 128 [00:04:35.000] Files (2) +Info 125 [00:04:30.000] ----------------------------------------------- +Info 125 [00:04:31.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 125 [00:04:32.000] Files (2) -Info 128 [00:04:36.000] ----------------------------------------------- -Info 128 [00:04:37.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 128 [00:04:38.000] Files (2) +Info 125 [00:04:33.000] ----------------------------------------------- +Info 125 [00:04:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 125 [00:04:35.000] Files (2) -Info 128 [00:04:39.000] ----------------------------------------------- -Info 128 [00:04:40.000] Open files: -Info 128 [00:04:41.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 128 [00:04:42.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 125 [00:04:36.000] ----------------------------------------------- +Info 125 [00:04:37.000] Open files: +Info 125 [00:04:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 125 [00:04:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2632,11 +2629,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 128 [00:04:43.000] response: +Info 125 [00:04:40.000] response: { "responseRequired": false } -Info 129 [00:04:44.000] request: +Info 126 [00:04:41.000] request: { "seq": 0, "type": "request", @@ -2685,20 +2682,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 130 [00:04:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 131 [00:04:46.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 131 [00:04:47.000] Files (3) +Info 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) -Info 131 [00:04:48.000] ----------------------------------------------- -Info 131 [00:04:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 131 [00:04:50.000] Files (2) +Info 128 [00:04:45.000] ----------------------------------------------- +Info 128 [00:04:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 128 [00:04:47.000] Files (2) -Info 131 [00:04:51.000] ----------------------------------------------- -Info 131 [00:04:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 131 [00:04:53.000] Files (2) +Info 128 [00:04:48.000] ----------------------------------------------- +Info 128 [00:04:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 128 [00:04:50.000] Files (2) -Info 131 [00:04:54.000] ----------------------------------------------- -Info 131 [00:04:55.000] Open files: +Info 128 [00:04:51.000] ----------------------------------------------- +Info 128 [00:04:52.000] Open files: After request PolledWatches:: @@ -2741,11 +2738,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 131 [00:04:56.000] response: +Info 128 [00:04:53.000] response: { "responseRequired": false } -Info 132 [00:04:57.000] request: +Info 129 [00:04:54.000] request: { "seq": 0, "type": "request", @@ -2796,12 +2793,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 133 [00:04:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 134 [00:04:59.000] Search path: /user/username/projects/myproject/random -Info 135 [00:05:00.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 136 [00:05:01.000] `remove Project:: -Info 137 [00:05:02.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 138 [00:05:03.000] Files (3) +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 +Info 133 [00:04:58.000] `remove Project:: +Info 134 [00:04:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 135 [00:05:00.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -2814,19 +2811,19 @@ Info 138 [00:05:03.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 139 [00:05:04.000] ----------------------------------------------- -Info 140 [00:05:05.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 141 [00:05:06.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 142 [00:05:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 143 [00:05:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 144 [00:05:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 145 [00:05:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 146 [00:05:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 147 [00:05:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 148 [00:05:13.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 149 [00:05:14.000] `remove Project:: -Info 150 [00:05:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 151 [00:05:16.000] Files (2) +Info 136 [00:05:01.000] ----------------------------------------------- +Info 137 [00:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 138 [00:05:03.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 139 [00:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 140 [00:05:05.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 141 [00:05:06.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 142 [00:05:07.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 143 [00:05:08.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 144 [00:05:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 145 [00:05:10.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 146 [00:05:11.000] `remove Project:: +Info 147 [00:05:12.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 148 [00:05:13.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2836,25 +2833,25 @@ Info 151 [00:05:16.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 152 [00:05:17.000] ----------------------------------------------- -Info 153 [00:05:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 154 [00:05:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 155 [00:05:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 156 [00:05:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 157 [00:05:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 158 [00:05:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 159 [00:05:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 160 [00:05:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 161 [00:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 162 [00:05:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 163 [00:05:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 164 [00:05:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 164 [00:05:30.000] Files (2) - -Info 164 [00:05:31.000] ----------------------------------------------- -Info 164 [00:05:32.000] Open files: -Info 164 [00:05:33.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 164 [00:05:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 149 [00:05:14.000] ----------------------------------------------- +Info 150 [00:05:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 151 [00:05:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 152 [00:05:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 153 [00:05:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 154 [00:05:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 155 [00:05:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 156 [00:05:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 157 [00:05:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 158 [00:05:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 159 [00:05:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 160 [00:05:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 161 [00:05:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 161 [00:05:27.000] Files (2) + +Info 161 [00:05:28.000] ----------------------------------------------- +Info 161 [00:05:29.000] Open files: +Info 161 [00:05:30.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 161 [00:05:31.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2873,7 +2870,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 164 [00:05:35.000] response: +Info 161 [00:05:32.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-deleted.js index ea59fb88e926a..048ac974ae73f 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 @@ -216,19 +216,18 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:24.000] Files (3) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:23.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +240,16 @@ Info 21 [00:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:25.000] ----------------------------------------------- -Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 21 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) -Info 25 [00:01:30.000] ----------------------------------------------- -Info 25 [00:01:31.000] Open files: -Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:29.000] ----------------------------------------------- +Info 24 [00:01:30.000] Open files: +Info 24 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +272,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:34.000] response: +Info 24 [00:01:33.000] response: { "responseRequired": false } -Info 26 [00:01:35.000] request: +Info 25 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -308,11 +307,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/dependency -Info 28 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +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 +Info 29 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 30 [00:01:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -323,17 +322,16 @@ Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -343,22 +341,22 @@ Info 42 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:56.000] Files (3) - -Info 46 [00:01:57.000] ----------------------------------------------- -Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:01:59.000] Files (2) - -Info 46 [00:02:00.000] ----------------------------------------------- -Info 46 [00:02:01.000] Open files: -Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) + +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) + +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -387,11 +385,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [00:02:06.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 47 [00:02:07.000] request: +Info 45 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -428,11 +426,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -440,17 +438,16 @@ Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:23.000] Files (2) +Info 51 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -460,26 +457,26 @@ Info 63 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:24.000] ----------------------------------------------- -Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:26.000] Files (3) - -Info 65 [00:02:27.000] ----------------------------------------------- -Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:29.000] Files (2) - -Info 65 [00:02:30.000] ----------------------------------------------- -Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:32.000] Files (2) - -Info 65 [00:02:33.000] ----------------------------------------------- -Info 65 [00:02:34.000] Open files: -Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:21.000] ----------------------------------------------- +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (3) + +Info 62 [00:02:24.000] ----------------------------------------------- +Info 62 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:26.000] Files (2) + +Info 62 [00:02:27.000] ----------------------------------------------- +Info 62 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:29.000] Files (2) + +Info 62 [00:02:30.000] ----------------------------------------------- +Info 62 [00:02:31.000] Open files: +Info 62 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -514,11 +511,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:41.000] response: +Info 62 [00:02:38.000] response: { "responseRequired": false } -Info 66 [00:02:42.000] request: +Info 63 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -563,7 +560,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -600,7 +597,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:44.000] response: +Info 65 [00:02:41.000] response: { "response": { "definitions": [ @@ -637,7 +634,7 @@ Info 68 [00:02:44.000] response: }, "responseRequired": true } -Info 69 [00:02:45.000] request: +Info 66 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -684,8 +681,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -722,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:48.000] response: +Info 69 [00:02:45.000] response: { "response": { "info": { @@ -803,16 +800,16 @@ Info 72 [00:02:48.000] response: }, "responseRequired": true } -Info 73 [00:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 74 [00:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 75 [00:02:52.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 76 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles* -Info 77 [00:02:54.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 78 [00:02:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 79 [00:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 80 [00:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [00:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 82 [00:02:59.000] request: +Info 70 [00:02:47.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 71 [00:02:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 72 [00:02:49.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 73 [00:02:50.000] Scheduled: *ensureProjectForOpenFiles* +Info 74 [00:02:51.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 75 [00:02:52.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 76 [00:02:53.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 77 [00:02:54.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 78 [00:02:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 79 [00:02:56.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -858,9 +855,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [00:03:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 84 [00:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 85 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 80 [00:02:57.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 81 [00:02:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 82 [00:02:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -897,7 +894,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:03.000] response: +Info 83 [00:03:00.000] response: { "response": { "definitions": [ @@ -934,7 +931,7 @@ Info 86 [00:03:03.000] response: }, "responseRequired": true } -Info 87 [00:03:04.000] request: +Info 84 [00:03:01.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1017,7 +1014,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [00:03:05.000] response: +Info 85 [00:03:02.000] response: { "response": { "definitions": [ @@ -1054,7 +1051,7 @@ Info 88 [00:03:05.000] response: }, "responseRequired": true } -Info 89 [00:03:06.000] request: +Info 86 [00:03:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1137,7 +1134,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:07.000] response: +Info 87 [00:03:04.000] response: { "response": { "definitions": [ @@ -1174,7 +1171,7 @@ Info 90 [00:03:07.000] response: }, "responseRequired": true } -Info 91 [00:03:08.000] request: +Info 88 [00:03:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1257,7 +1254,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [00:03:09.000] response: +Info 89 [00:03:06.000] response: { "response": { "definitions": [ @@ -1294,7 +1291,7 @@ Info 92 [00:03:09.000] response: }, "responseRequired": true } -Info 93 [00:03:10.000] request: +Info 90 [00:03:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1377,7 +1374,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [00:03:11.000] response: +Info 91 [00:03:08.000] response: { "response": { "definitions": [ @@ -1414,7 +1411,7 @@ Info 94 [00:03:11.000] response: }, "responseRequired": true } -Info 95 [00:03:12.000] request: +Info 92 [00:03:09.000] request: { "command": "rename", "arguments": { @@ -1461,8 +1458,8 @@ FsWatchesRecursive:: /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 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:: @@ -1499,7 +1496,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:15.000] response: +Info 95 [00:03:12.000] response: { "response": { "info": { @@ -1547,7 +1544,7 @@ Info 98 [00:03:15.000] response: }, "responseRequired": true } -Info 99 [00:03:16.000] request: +Info 96 [00:03:13.000] request: { "command": "rename", "arguments": { @@ -1630,7 +1627,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:17.000] response: +Info 97 [00:03:14.000] response: { "response": { "info": { @@ -1678,7 +1675,7 @@ Info 100 [00:03:17.000] response: }, "responseRequired": true } -Info 101 [00:03:18.000] request: +Info 98 [00:03:15.000] request: { "command": "rename", "arguments": { @@ -1761,7 +1758,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:19.000] response: +Info 99 [00:03:16.000] response: { "response": { "info": { @@ -1809,7 +1806,7 @@ Info 102 [00:03:19.000] response: }, "responseRequired": true } -Info 103 [00:03:20.000] request: +Info 100 [00:03:17.000] request: { "command": "rename", "arguments": { @@ -1892,7 +1889,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:21.000] response: +Info 101 [00:03:18.000] response: { "response": { "info": { @@ -1940,7 +1937,7 @@ Info 104 [00:03:21.000] response: }, "responseRequired": true } -Info 105 [00:03:22.000] request: +Info 102 [00:03:19.000] request: { "command": "rename", "arguments": { @@ -2023,7 +2020,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:23.000] response: +Info 103 [00:03:20.000] response: { "response": { "info": { @@ -2071,7 +2068,7 @@ Info 106 [00:03:23.000] response: }, "responseRequired": true } -Info 107 [00:03:24.000] request: +Info 104 [00:03:21.000] request: { "seq": 0, "type": "request", @@ -2116,24 +2113,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 109 [00:03:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 109 [00:03:27.000] Files (3) +Info 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) -Info 109 [00:03:28.000] ----------------------------------------------- -Info 109 [00:03:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 109 [00:03:30.000] Files (2) +Info 106 [00:03:25.000] ----------------------------------------------- +Info 106 [00:03:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 106 [00:03:27.000] Files (2) -Info 109 [00:03:31.000] ----------------------------------------------- -Info 109 [00:03:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 109 [00:03:33.000] Files (2) +Info 106 [00:03:28.000] ----------------------------------------------- +Info 106 [00:03:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 106 [00:03:30.000] Files (2) -Info 109 [00:03:34.000] ----------------------------------------------- -Info 109 [00:03:35.000] Open files: -Info 109 [00:03:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 109 [00:03:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 109 [00:03:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 109 [00:03:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 106 [00:03:31.000] ----------------------------------------------- +Info 106 [00:03:32.000] Open files: +Info 106 [00:03:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 106 [00:03:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 106 [00:03:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 106 [00:03:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2172,11 +2169,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [00:03:40.000] response: +Info 106 [00:03:37.000] response: { "responseRequired": false } -Info 110 [00:03:41.000] request: +Info 107 [00:03:38.000] request: { "seq": 0, "type": "request", @@ -2223,28 +2220,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [00:03:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 112 [00:03:43.000] Search path: /user/username/projects/myproject/random -Info 113 [00:03:44.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 114 [00:03:45.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 114 [00:03:46.000] Files (3) - -Info 114 [00:03:47.000] ----------------------------------------------- -Info 114 [00:03:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 114 [00:03:49.000] Files (2) - -Info 114 [00:03:50.000] ----------------------------------------------- -Info 114 [00:03:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 114 [00:03:52.000] Files (2) - -Info 114 [00:03:53.000] ----------------------------------------------- -Info 114 [00:03:54.000] Open files: -Info 114 [00:03:55.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 114 [00:03:56.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 114 [00:03:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 114 [00:03:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 114 [00:03:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 114 [00:04:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 111 [00:03:42.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 111 [00:03:43.000] Files (3) + +Info 111 [00:03:44.000] ----------------------------------------------- +Info 111 [00:03:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 111 [00:03:46.000] Files (2) + +Info 111 [00:03:47.000] ----------------------------------------------- +Info 111 [00:03:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 111 [00:03:49.000] Files (2) + +Info 111 [00:03:50.000] ----------------------------------------------- +Info 111 [00:03:51.000] Open files: +Info 111 [00:03:52.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 111 [00:03:53.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 111 [00:03:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 111 [00:03:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 111 [00:03:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 111 [00:03:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2281,11 +2278,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [00:04:01.000] response: +Info 111 [00:03:58.000] response: { "responseRequired": false } -Info 115 [00:04:02.000] request: +Info 112 [00:03:59.000] request: { "seq": 0, "type": "request", @@ -2330,24 +2327,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [00:04:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 117 [00:04:04.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 117 [00:04:05.000] Files (3) +Info 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) -Info 117 [00:04:06.000] ----------------------------------------------- -Info 117 [00:04:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 117 [00:04:08.000] Files (2) +Info 114 [00:04:03.000] ----------------------------------------------- +Info 114 [00:04:04.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 114 [00:04:05.000] Files (2) -Info 117 [00:04:09.000] ----------------------------------------------- -Info 117 [00:04:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 117 [00:04:11.000] Files (2) +Info 114 [00:04:06.000] ----------------------------------------------- +Info 114 [00:04:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 114 [00:04:08.000] Files (2) -Info 117 [00:04:12.000] ----------------------------------------------- -Info 117 [00:04:13.000] Open files: -Info 117 [00:04:14.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 117 [00:04:15.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 117 [00:04:16.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 117 [00:04:17.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 114 [00:04:09.000] ----------------------------------------------- +Info 114 [00:04:10.000] Open files: +Info 114 [00:04:11.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 114 [00:04:12.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 114 [00:04:13.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 114 [00:04:14.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2386,11 +2383,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [00:04:18.000] response: +Info 114 [00:04:15.000] response: { "responseRequired": false } -Info 118 [00:04:19.000] request: +Info 115 [00:04:16.000] request: { "seq": 0, "type": "request", @@ -2437,22 +2434,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 119 [00:04:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 120 [00:04:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 120 [00:04:22.000] Files (3) +Info 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) -Info 120 [00:04:23.000] ----------------------------------------------- -Info 120 [00:04:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 120 [00:04:25.000] Files (2) +Info 117 [00:04:20.000] ----------------------------------------------- +Info 117 [00:04:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 117 [00:04:22.000] Files (2) -Info 120 [00:04:26.000] ----------------------------------------------- -Info 120 [00:04:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 120 [00:04:28.000] Files (2) +Info 117 [00:04:23.000] ----------------------------------------------- +Info 117 [00:04:24.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 117 [00:04:25.000] Files (2) -Info 120 [00:04:29.000] ----------------------------------------------- -Info 120 [00:04:30.000] Open files: -Info 120 [00:04:31.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 120 [00:04:32.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 117 [00:04:26.000] ----------------------------------------------- +Info 117 [00:04:27.000] Open files: +Info 117 [00:04:28.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 117 [00:04:29.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2493,11 +2490,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 120 [00:04:33.000] response: +Info 117 [00:04:30.000] response: { "responseRequired": false } -Info 121 [00:04:34.000] request: +Info 118 [00:04:31.000] request: { "seq": 0, "type": "request", @@ -2546,20 +2543,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 122 [00:04:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 123 [00:04:36.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 123 [00:04:37.000] Files (3) +Info 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) -Info 123 [00:04:38.000] ----------------------------------------------- -Info 123 [00:04:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 123 [00:04:40.000] Files (2) +Info 120 [00:04:35.000] ----------------------------------------------- +Info 120 [00:04:36.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 120 [00:04:37.000] Files (2) -Info 123 [00:04:41.000] ----------------------------------------------- -Info 123 [00:04:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 123 [00:04:43.000] Files (2) +Info 120 [00:04:38.000] ----------------------------------------------- +Info 120 [00:04:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 120 [00:04:40.000] Files (2) -Info 123 [00:04:44.000] ----------------------------------------------- -Info 123 [00:04:45.000] Open files: +Info 120 [00:04:41.000] ----------------------------------------------- +Info 120 [00:04:42.000] Open files: After request PolledWatches:: @@ -2602,11 +2599,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 123 [00:04:46.000] response: +Info 120 [00:04:43.000] response: { "responseRequired": false } -Info 124 [00:04:47.000] request: +Info 121 [00:04:44.000] request: { "seq": 0, "type": "request", @@ -2657,12 +2654,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 125 [00:04:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 126 [00:04:49.000] Search path: /user/username/projects/myproject/random -Info 127 [00:04:50.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 128 [00:04:51.000] `remove Project:: -Info 129 [00:04:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 130 [00:04:53.000] Files (3) +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 +Info 125 [00:04:48.000] `remove Project:: +Info 126 [00:04:49.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 127 [00:04:50.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -2675,19 +2672,19 @@ Info 130 [00:04:53.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 131 [00:04:54.000] ----------------------------------------------- -Info 132 [00:04:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 133 [00:04:56.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 134 [00:04:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 135 [00:04:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 136 [00:04:59.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 137 [00:05:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 138 [00:05:01.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 139 [00:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 140 [00:05:03.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 141 [00:05:04.000] `remove Project:: -Info 142 [00:05:05.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 143 [00:05:06.000] Files (2) +Info 128 [00:04:51.000] ----------------------------------------------- +Info 129 [00:04:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 130 [00:04:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 131 [00:04:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 132 [00:04:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 133 [00:04:56.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 134 [00:04:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 135 [00:04:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 136 [00:04:59.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 137 [00:05:00.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 138 [00:05:01.000] `remove Project:: +Info 139 [00:05:02.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 140 [00:05:03.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2697,25 +2694,25 @@ Info 143 [00:05:06.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 144 [00:05:07.000] ----------------------------------------------- -Info 145 [00:05:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 146 [00:05:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 147 [00:05:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 148 [00:05:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 149 [00:05:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 150 [00:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 151 [00:05:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 152 [00:05:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 153 [00:05:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 154 [00:05:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 155 [00:05:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 156 [00:05:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 156 [00:05:20.000] Files (2) - -Info 156 [00:05:21.000] ----------------------------------------------- -Info 156 [00:05:22.000] Open files: -Info 156 [00:05:23.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 156 [00:05:24.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 141 [00:05:04.000] ----------------------------------------------- +Info 142 [00:05:05.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 143 [00:05:06.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 144 [00:05:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 145 [00:05:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 146 [00:05:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 147 [00:05:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 148 [00:05:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 149 [00:05:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 150 [00:05:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 151 [00:05:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 152 [00:05:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 153 [00:05:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 153 [00:05:17.000] Files (2) + +Info 153 [00:05:18.000] ----------------------------------------------- +Info 153 [00:05:19.000] Open files: +Info 153 [00:05:20.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 153 [00:05:21.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2734,7 +2731,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 156 [00:05:25.000] response: +Info 153 [00:05:22.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/dependency-dtsMap-not-present.js index dd10603fc59a7..caac3e1473d6c 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 @@ -213,19 +213,18 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:25.000] Files (3) +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -238,16 +237,16 @@ Info 21 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:26.000] ----------------------------------------------- -Info 23 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:30.000] Files (3) +Info 21 [00:01:25.000] ----------------------------------------------- +Info 22 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:29.000] Files (3) -Info 25 [00:01:31.000] ----------------------------------------------- -Info 25 [00:01:32.000] Open files: -Info 25 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:30.000] ----------------------------------------------- +Info 24 [00:01:31.000] Open files: +Info 24 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -270,11 +269,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:35.000] response: +Info 24 [00:01:34.000] response: { "responseRequired": false } -Info 26 [00:01:36.000] request: +Info 25 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -305,11 +304,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:37.000] Search path: /user/username/projects/myproject/dependency -Info 28 [00:01:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [00:01:39.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [00:01:41.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 26 [00:01:36.000] Search path: /user/username/projects/myproject/dependency +Info 27 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 28 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 29 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 30 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -320,17 +319,16 @@ Info 31 [00:01:41.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:52.000] Files (2) +Info 31 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -340,22 +338,22 @@ Info 42 [00:01:52.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:53.000] ----------------------------------------------- -Info 44 [00:01:54.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:55.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:57.000] Files (3) - -Info 46 [00:01:58.000] ----------------------------------------------- -Info 46 [00:01:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:02:00.000] Files (2) - -Info 46 [00:02:01.000] ----------------------------------------------- -Info 46 [00:02:02.000] Open files: -Info 46 [00:02:03.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:05.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:06.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:51.000] ----------------------------------------------- +Info 42 [00:01:52.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:53.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:55.000] Files (3) + +Info 44 [00:01:56.000] ----------------------------------------------- +Info 44 [00:01:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:58.000] Files (2) + +Info 44 [00:01:59.000] ----------------------------------------------- +Info 44 [00:02:00.000] Open files: +Info 44 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:04.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -384,11 +382,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [00:02:07.000] response: +Info 44 [00:02:05.000] response: { "responseRequired": false } -Info 47 [00:02:08.000] request: +Info 45 [00:02:06.000] request: { "seq": 0, "type": "request", @@ -425,11 +423,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [00:02:09.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:11.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:13.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:11.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -437,17 +435,16 @@ Info 52 [00:02:13.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:24.000] Files (2) +Info 51 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -457,26 +454,26 @@ Info 63 [00:02:24.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:25.000] ----------------------------------------------- -Info 65 [00:02:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:27.000] Files (3) - -Info 65 [00:02:28.000] ----------------------------------------------- -Info 65 [00:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:30.000] Files (2) - -Info 65 [00:02:31.000] ----------------------------------------------- -Info 65 [00:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:33.000] Files (2) - -Info 65 [00:02:34.000] ----------------------------------------------- -Info 65 [00:02:35.000] Open files: -Info 65 [00:02:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:22.000] ----------------------------------------------- +Info 62 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:24.000] Files (3) + +Info 62 [00:02:25.000] ----------------------------------------------- +Info 62 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:27.000] Files (2) + +Info 62 [00:02:28.000] ----------------------------------------------- +Info 62 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:30.000] Files (2) + +Info 62 [00:02:31.000] ----------------------------------------------- +Info 62 [00:02:32.000] Open files: +Info 62 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -511,11 +508,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:42.000] response: +Info 62 [00:02:39.000] response: { "responseRequired": false } -Info 66 [00:02:43.000] request: +Info 63 [00:02:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -560,7 +557,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +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 PolledWatches:: @@ -597,7 +594,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:45.000] response: +Info 65 [00:02:42.000] response: { "response": { "definitions": [ @@ -634,7 +631,7 @@ Info 68 [00:02:45.000] response: }, "responseRequired": true } -Info 69 [00:02:46.000] request: +Info 66 [00:02:43.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -717,7 +714,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:47.000] response: +Info 67 [00:02:44.000] response: { "response": { "definitions": [ @@ -754,7 +751,7 @@ Info 70 [00:02:47.000] response: }, "responseRequired": true } -Info 71 [00:02:48.000] request: +Info 68 [00:02:45.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -837,7 +834,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:49.000] response: +Info 69 [00:02:46.000] response: { "response": { "definitions": [ @@ -874,7 +871,7 @@ Info 72 [00:02:49.000] response: }, "responseRequired": true } -Info 73 [00:02:50.000] request: +Info 70 [00:02:47.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -957,7 +954,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:51.000] response: +Info 71 [00:02:48.000] response: { "response": { "definitions": [ @@ -994,7 +991,7 @@ Info 74 [00:02:51.000] response: }, "responseRequired": true } -Info 75 [00:02:52.000] request: +Info 72 [00:02:49.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1077,7 +1074,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:53.000] response: +Info 73 [00:02:50.000] response: { "response": { "definitions": [ @@ -1114,7 +1111,7 @@ Info 76 [00:02:53.000] response: }, "responseRequired": true } -Info 77 [00:02:54.000] request: +Info 74 [00:02:51.000] request: { "command": "rename", "arguments": { @@ -1197,7 +1194,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [00:02:55.000] response: +Info 75 [00:02:52.000] response: { "response": { "info": { @@ -1245,7 +1242,7 @@ Info 78 [00:02:55.000] response: }, "responseRequired": true } -Info 79 [00:02:56.000] request: +Info 76 [00:02:53.000] request: { "command": "rename", "arguments": { @@ -1328,7 +1325,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:02:57.000] response: +Info 77 [00:02:54.000] response: { "response": { "info": { @@ -1376,7 +1373,7 @@ Info 80 [00:02:57.000] response: }, "responseRequired": true } -Info 81 [00:02:58.000] request: +Info 78 [00:02:55.000] request: { "command": "rename", "arguments": { @@ -1459,7 +1456,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [00:02:59.000] response: +Info 79 [00:02:56.000] response: { "response": { "info": { @@ -1507,7 +1504,7 @@ Info 82 [00:02:59.000] response: }, "responseRequired": true } -Info 83 [00:03:00.000] request: +Info 80 [00:02:57.000] request: { "command": "rename", "arguments": { @@ -1590,7 +1587,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:03:01.000] response: +Info 81 [00:02:58.000] response: { "response": { "info": { @@ -1638,7 +1635,7 @@ Info 84 [00:03:01.000] response: }, "responseRequired": true } -Info 85 [00:03:02.000] request: +Info 82 [00:02:59.000] request: { "command": "rename", "arguments": { @@ -1721,7 +1718,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:03.000] response: +Info 83 [00:03:00.000] response: { "response": { "info": { @@ -1769,7 +1766,7 @@ Info 86 [00:03:03.000] response: }, "responseRequired": true } -Info 87 [00:03:04.000] request: +Info 84 [00:03:01.000] request: { "seq": 0, "type": "request", @@ -1814,24 +1811,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [00:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 89 [00:03:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 89 [00:03:07.000] Files (3) +Info 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) -Info 89 [00:03:08.000] ----------------------------------------------- -Info 89 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 89 [00:03:10.000] Files (2) +Info 86 [00:03:05.000] ----------------------------------------------- +Info 86 [00:03:06.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 86 [00:03:07.000] Files (2) -Info 89 [00:03:11.000] ----------------------------------------------- -Info 89 [00:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 89 [00:03:13.000] Files (2) +Info 86 [00:03:08.000] ----------------------------------------------- +Info 86 [00:03:09.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 86 [00:03:10.000] Files (2) -Info 89 [00:03:14.000] ----------------------------------------------- -Info 89 [00:03:15.000] Open files: -Info 89 [00:03:16.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 89 [00:03:17.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 89 [00:03:18.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 89 [00:03:19.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 86 [00:03:11.000] ----------------------------------------------- +Info 86 [00:03:12.000] Open files: +Info 86 [00:03:13.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 86 [00:03:14.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 86 [00:03:15.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 86 [00:03:16.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1870,11 +1867,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:20.000] response: +Info 86 [00:03:17.000] response: { "responseRequired": false } -Info 90 [00:03:21.000] request: +Info 87 [00:03:18.000] request: { "seq": 0, "type": "request", @@ -1921,28 +1918,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 92 [00:03:23.000] Search path: /user/username/projects/myproject/random -Info 93 [00:03:24.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 94 [00:03:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 94 [00:03:26.000] Files (3) - -Info 94 [00:03:27.000] ----------------------------------------------- -Info 94 [00:03:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 94 [00:03:29.000] Files (2) - -Info 94 [00:03:30.000] ----------------------------------------------- -Info 94 [00:03:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 94 [00:03:32.000] Files (2) - -Info 94 [00:03:33.000] ----------------------------------------------- -Info 94 [00:03:34.000] Open files: -Info 94 [00:03:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 94 [00:03:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 94 [00:03:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 94 [00:03:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 94 [00:03:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 94 [00:03:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 91 [00:03:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 91 [00:03:23.000] Files (3) + +Info 91 [00:03:24.000] ----------------------------------------------- +Info 91 [00:03:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 91 [00:03:26.000] Files (2) + +Info 91 [00:03:27.000] ----------------------------------------------- +Info 91 [00:03:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 91 [00:03:29.000] Files (2) + +Info 91 [00:03:30.000] ----------------------------------------------- +Info 91 [00:03:31.000] Open files: +Info 91 [00:03:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 91 [00:03:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 91 [00:03:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 91 [00:03:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 91 [00:03:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 91 [00:03:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1979,11 +1976,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [00:03:41.000] response: +Info 91 [00:03:38.000] response: { "responseRequired": false } -Info 95 [00:03:42.000] request: +Info 92 [00:03:39.000] request: { "seq": 0, "type": "request", @@ -2028,24 +2025,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 97 [00:03:44.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 97 [00:03:45.000] Files (3) +Info 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) -Info 97 [00:03:46.000] ----------------------------------------------- -Info 97 [00:03:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 97 [00:03:48.000] Files (2) +Info 94 [00:03:43.000] ----------------------------------------------- +Info 94 [00:03:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 94 [00:03:45.000] Files (2) -Info 97 [00:03:49.000] ----------------------------------------------- -Info 97 [00:03:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 97 [00:03:51.000] Files (2) +Info 94 [00:03:46.000] ----------------------------------------------- +Info 94 [00:03:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 94 [00:03:48.000] Files (2) -Info 97 [00:03:52.000] ----------------------------------------------- -Info 97 [00:03:53.000] Open files: -Info 97 [00:03:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 97 [00:03:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 97 [00:03:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 97 [00:03:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 94 [00:03:49.000] ----------------------------------------------- +Info 94 [00:03:50.000] Open files: +Info 94 [00:03:51.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 94 [00:03:52.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 94 [00:03:53.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 94 [00:03:54.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2084,11 +2081,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [00:03:58.000] response: +Info 94 [00:03:55.000] response: { "responseRequired": false } -Info 98 [00:03:59.000] request: +Info 95 [00:03:56.000] request: { "seq": 0, "type": "request", @@ -2135,22 +2132,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [00:04:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 100 [00:04:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 100 [00:04:02.000] Files (3) +Info 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) -Info 100 [00:04:03.000] ----------------------------------------------- -Info 100 [00:04:04.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 100 [00:04:05.000] Files (2) +Info 97 [00:04:00.000] ----------------------------------------------- +Info 97 [00:04:01.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 97 [00:04:02.000] Files (2) -Info 100 [00:04:06.000] ----------------------------------------------- -Info 100 [00:04:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 100 [00:04:08.000] Files (2) +Info 97 [00:04:03.000] ----------------------------------------------- +Info 97 [00:04:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 97 [00:04:05.000] Files (2) -Info 100 [00:04:09.000] ----------------------------------------------- -Info 100 [00:04:10.000] Open files: -Info 100 [00:04:11.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 100 [00:04:12.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 97 [00:04:06.000] ----------------------------------------------- +Info 97 [00:04:07.000] Open files: +Info 97 [00:04:08.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 97 [00:04:09.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2191,11 +2188,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:04:13.000] response: +Info 97 [00:04:10.000] response: { "responseRequired": false } -Info 101 [00:04:14.000] request: +Info 98 [00:04:11.000] request: { "seq": 0, "type": "request", @@ -2244,20 +2241,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:04:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 103 [00:04:16.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 103 [00:04:17.000] Files (3) +Info 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) -Info 103 [00:04:18.000] ----------------------------------------------- -Info 103 [00:04:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 103 [00:04:20.000] Files (2) +Info 100 [00:04:15.000] ----------------------------------------------- +Info 100 [00:04:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 100 [00:04:17.000] Files (2) -Info 103 [00:04:21.000] ----------------------------------------------- -Info 103 [00:04:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 103 [00:04:23.000] Files (2) +Info 100 [00:04:18.000] ----------------------------------------------- +Info 100 [00:04:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 100 [00:04:20.000] Files (2) -Info 103 [00:04:24.000] ----------------------------------------------- -Info 103 [00:04:25.000] Open files: +Info 100 [00:04:21.000] ----------------------------------------------- +Info 100 [00:04:22.000] Open files: After request PolledWatches:: @@ -2300,11 +2297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [00:04:26.000] response: +Info 100 [00:04:23.000] response: { "responseRequired": false } -Info 104 [00:04:27.000] request: +Info 101 [00:04:24.000] request: { "seq": 0, "type": "request", @@ -2355,12 +2352,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 105 [00:04:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 106 [00:04:29.000] Search path: /user/username/projects/myproject/random -Info 107 [00:04:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 108 [00:04:31.000] `remove Project:: -Info 109 [00:04:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 110 [00:04:33.000] Files (3) +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 +Info 105 [00:04:28.000] `remove Project:: +Info 106 [00:04:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 107 [00:04:30.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -2373,19 +2370,19 @@ Info 110 [00:04:33.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 111 [00:04:34.000] ----------------------------------------------- -Info 112 [00:04:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 113 [00:04:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 114 [00:04:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 115 [00:04:38.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 116 [00:04:39.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 117 [00:04:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 118 [00:04:41.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 119 [00:04:42.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 120 [00:04:43.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 121 [00:04:44.000] `remove Project:: -Info 122 [00:04:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 123 [00:04:46.000] Files (2) +Info 108 [00:04:31.000] ----------------------------------------------- +Info 109 [00:04:32.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 110 [00:04:33.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 111 [00:04:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 112 [00:04:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 113 [00:04:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 114 [00:04:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 115 [00:04:38.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 116 [00:04:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 117 [00:04:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 118 [00:04:41.000] `remove Project:: +Info 119 [00:04:42.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 120 [00:04:43.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2395,25 +2392,25 @@ Info 123 [00:04:46.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 124 [00:04:47.000] ----------------------------------------------- -Info 125 [00:04:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 126 [00:04:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 127 [00:04:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 128 [00:04:51.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 129 [00:04:52.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 130 [00:04:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 131 [00:04:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 132 [00:04:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 133 [00:04:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 134 [00:04:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 135 [00:04:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 136 [00:04:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 136 [00:05:00.000] Files (2) - -Info 136 [00:05:01.000] ----------------------------------------------- -Info 136 [00:05:02.000] Open files: -Info 136 [00:05:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 136 [00:05:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 121 [00:04:44.000] ----------------------------------------------- +Info 122 [00:04:45.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 123 [00:04:46.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 124 [00:04:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 125 [00:04:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 126 [00:04:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 127 [00:04:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 128 [00:04:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 129 [00:04:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 130 [00:04:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 131 [00:04:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 132 [00:04:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 133 [00:04:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 133 [00:04:57.000] Files (2) + +Info 133 [00:04:58.000] ----------------------------------------------- +Info 133 [00:04:59.000] Open files: +Info 133 [00:05:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 133 [00:05:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2432,7 +2429,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 136 [00:05:05.000] response: +Info 133 [00:05:02.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/goToDef-and-rename-locations.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/goToDef-and-rename-locations.js index 865dcb1e84c70..9e21c1aa19712 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 @@ -216,19 +216,18 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:24.000] Files (3) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:23.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +240,16 @@ Info 21 [00:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:25.000] ----------------------------------------------- -Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 21 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) -Info 25 [00:01:30.000] ----------------------------------------------- -Info 25 [00:01:31.000] Open files: -Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:29.000] ----------------------------------------------- +Info 24 [00:01:30.000] Open files: +Info 24 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +272,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:34.000] response: +Info 24 [00:01:33.000] response: { "responseRequired": false } -Info 26 [00:01:35.000] request: +Info 25 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -308,11 +307,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/dependency -Info 28 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +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 +Info 29 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 30 [00:01:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -323,17 +322,16 @@ Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -343,22 +341,22 @@ Info 42 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:56.000] Files (3) - -Info 46 [00:01:57.000] ----------------------------------------------- -Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:01:59.000] Files (2) - -Info 46 [00:02:00.000] ----------------------------------------------- -Info 46 [00:02:01.000] Open files: -Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) + +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) + +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -387,11 +385,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [00:02:06.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 47 [00:02:07.000] request: +Info 45 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -428,11 +426,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -440,17 +438,16 @@ Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:23.000] Files (2) +Info 51 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -460,26 +457,26 @@ Info 63 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:24.000] ----------------------------------------------- -Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:26.000] Files (3) - -Info 65 [00:02:27.000] ----------------------------------------------- -Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:29.000] Files (2) - -Info 65 [00:02:30.000] ----------------------------------------------- -Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:32.000] Files (2) - -Info 65 [00:02:33.000] ----------------------------------------------- -Info 65 [00:02:34.000] Open files: -Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:21.000] ----------------------------------------------- +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (3) + +Info 62 [00:02:24.000] ----------------------------------------------- +Info 62 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:26.000] Files (2) + +Info 62 [00:02:27.000] ----------------------------------------------- +Info 62 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:29.000] Files (2) + +Info 62 [00:02:30.000] ----------------------------------------------- +Info 62 [00:02:31.000] Open files: +Info 62 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -514,11 +511,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:41.000] response: +Info 62 [00:02:38.000] response: { "responseRequired": false } -Info 66 [00:02:42.000] request: +Info 63 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -563,7 +560,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -600,7 +597,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:44.000] response: +Info 65 [00:02:41.000] response: { "response": { "definitions": [ @@ -637,7 +634,7 @@ Info 68 [00:02:44.000] response: }, "responseRequired": true } -Info 69 [00:02:45.000] request: +Info 66 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -720,7 +717,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:46.000] response: +Info 67 [00:02:43.000] response: { "response": { "definitions": [ @@ -757,7 +754,7 @@ Info 70 [00:02:46.000] response: }, "responseRequired": true } -Info 71 [00:02:47.000] request: +Info 68 [00:02:44.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -840,7 +837,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:48.000] response: +Info 69 [00:02:45.000] response: { "response": { "definitions": [ @@ -877,7 +874,7 @@ Info 72 [00:02:48.000] response: }, "responseRequired": true } -Info 73 [00:02:49.000] request: +Info 70 [00:02:46.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -960,7 +957,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:50.000] response: +Info 71 [00:02:47.000] response: { "response": { "definitions": [ @@ -997,7 +994,7 @@ Info 74 [00:02:50.000] response: }, "responseRequired": true } -Info 75 [00:02:51.000] request: +Info 72 [00:02:48.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1080,7 +1077,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:52.000] response: +Info 73 [00:02:49.000] response: { "response": { "definitions": [ @@ -1117,7 +1114,7 @@ Info 76 [00:02:52.000] response: }, "responseRequired": true } -Info 77 [00:02:53.000] request: +Info 74 [00:02:50.000] request: { "command": "rename", "arguments": { @@ -1164,8 +1161,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [00:02:54.000] Search path: /user/username/projects/myproject/dependency -Info 79 [00:02:55.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1202,7 +1199,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:02:56.000] response: +Info 77 [00:02:53.000] response: { "response": { "info": { @@ -1283,7 +1280,7 @@ Info 80 [00:02:56.000] response: }, "responseRequired": true } -Info 81 [00:02:57.000] request: +Info 78 [00:02:54.000] request: { "command": "rename", "arguments": { @@ -1330,8 +1327,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [00:02:58.000] Search path: /user/username/projects/myproject/dependency -Info 83 [00:02:59.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1368,7 +1365,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:03:00.000] response: +Info 81 [00:02:57.000] response: { "response": { "info": { @@ -1449,7 +1446,7 @@ Info 84 [00:03:00.000] response: }, "responseRequired": true } -Info 85 [00:03:01.000] request: +Info 82 [00:02:58.000] request: { "command": "rename", "arguments": { @@ -1496,8 +1493,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:02.000] Search path: /user/username/projects/myproject/dependency -Info 87 [00:03:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1534,7 +1531,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [00:03:04.000] response: +Info 85 [00:03:01.000] response: { "response": { "info": { @@ -1615,7 +1612,7 @@ Info 88 [00:03:04.000] response: }, "responseRequired": true } -Info 89 [00:03:05.000] request: +Info 86 [00:03:02.000] request: { "command": "rename", "arguments": { @@ -1662,8 +1659,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:06.000] Search path: /user/username/projects/myproject/dependency -Info 91 [00:03:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1700,7 +1697,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [00:03:08.000] response: +Info 89 [00:03:05.000] response: { "response": { "info": { @@ -1781,7 +1778,7 @@ Info 92 [00:03:08.000] response: }, "responseRequired": true } -Info 93 [00:03:09.000] request: +Info 90 [00:03:06.000] request: { "command": "rename", "arguments": { @@ -1828,8 +1825,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [00:03:10.000] Search path: /user/username/projects/myproject/dependency -Info 95 [00:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1866,7 +1863,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:12.000] response: +Info 93 [00:03:09.000] response: { "response": { "info": { @@ -1947,7 +1944,7 @@ Info 96 [00:03:12.000] response: }, "responseRequired": true } -Info 97 [00:03:13.000] request: +Info 94 [00:03:10.000] request: { "seq": 0, "type": "request", @@ -1992,24 +1989,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 99 [00:03:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 99 [00:03:16.000] Files (3) +Info 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) -Info 99 [00:03:17.000] ----------------------------------------------- -Info 99 [00:03:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 99 [00:03:19.000] Files (2) +Info 96 [00:03:14.000] ----------------------------------------------- +Info 96 [00:03:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 96 [00:03:16.000] Files (2) -Info 99 [00:03:20.000] ----------------------------------------------- -Info 99 [00:03:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 99 [00:03:22.000] Files (2) +Info 96 [00:03:17.000] ----------------------------------------------- +Info 96 [00:03:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 96 [00:03:19.000] Files (2) -Info 99 [00:03:23.000] ----------------------------------------------- -Info 99 [00:03:24.000] Open files: -Info 99 [00:03:25.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 99 [00:03:26.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 99 [00:03:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 99 [00:03:28.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 96 [00:03:20.000] ----------------------------------------------- +Info 96 [00:03:21.000] Open files: +Info 96 [00:03:22.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 96 [00:03:23.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 96 [00:03:24.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 96 [00:03:25.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2048,11 +2045,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [00:03:29.000] response: +Info 96 [00:03:26.000] response: { "responseRequired": false } -Info 100 [00:03:30.000] request: +Info 97 [00:03:27.000] request: { "seq": 0, "type": "request", @@ -2099,28 +2096,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 102 [00:03:32.000] Search path: /user/username/projects/myproject/random -Info 103 [00:03:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 104 [00:03:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 104 [00:03:35.000] Files (3) - -Info 104 [00:03:36.000] ----------------------------------------------- -Info 104 [00:03:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 104 [00:03:38.000] Files (2) - -Info 104 [00:03:39.000] ----------------------------------------------- -Info 104 [00:03:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 104 [00:03:41.000] Files (2) - -Info 104 [00:03:42.000] ----------------------------------------------- -Info 104 [00:03:43.000] Open files: -Info 104 [00:03:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 104 [00:03:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 104 [00:03:46.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 104 [00:03:47.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 104 [00:03:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 104 [00:03:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 101 [00:03:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 101 [00:03:32.000] Files (3) + +Info 101 [00:03:33.000] ----------------------------------------------- +Info 101 [00:03:34.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 101 [00:03:35.000] Files (2) + +Info 101 [00:03:36.000] ----------------------------------------------- +Info 101 [00:03:37.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 101 [00:03:38.000] Files (2) + +Info 101 [00:03:39.000] ----------------------------------------------- +Info 101 [00:03:40.000] Open files: +Info 101 [00:03:41.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 101 [00:03:42.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 101 [00:03:43.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 101 [00:03:44.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 101 [00:03:45.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 101 [00:03:46.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2157,11 +2154,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:50.000] response: +Info 101 [00:03:47.000] response: { "responseRequired": false } -Info 105 [00:03:51.000] request: +Info 102 [00:03:48.000] request: { "seq": 0, "type": "request", @@ -2206,24 +2203,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 107 [00:03:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 107 [00:03:54.000] Files (3) +Info 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) -Info 107 [00:03:55.000] ----------------------------------------------- -Info 107 [00:03:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 107 [00:03:57.000] Files (2) +Info 104 [00:03:52.000] ----------------------------------------------- +Info 104 [00:03:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 104 [00:03:54.000] Files (2) -Info 107 [00:03:58.000] ----------------------------------------------- -Info 107 [00:03:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 107 [00:04:00.000] Files (2) +Info 104 [00:03:55.000] ----------------------------------------------- +Info 104 [00:03:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 104 [00:03:57.000] Files (2) -Info 107 [00:04:01.000] ----------------------------------------------- -Info 107 [00:04:02.000] Open files: -Info 107 [00:04:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 107 [00:04:04.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 107 [00:04:05.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 107 [00:04:06.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 104 [00:03:58.000] ----------------------------------------------- +Info 104 [00:03:59.000] Open files: +Info 104 [00:04:00.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 104 [00:04:01.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 104 [00:04:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 104 [00:04:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2262,11 +2259,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 107 [00:04:07.000] response: +Info 104 [00:04:04.000] response: { "responseRequired": false } -Info 108 [00:04:08.000] request: +Info 105 [00:04:05.000] request: { "seq": 0, "type": "request", @@ -2313,22 +2310,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [00:04:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 110 [00:04:10.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 110 [00:04:11.000] Files (3) +Info 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) -Info 110 [00:04:12.000] ----------------------------------------------- -Info 110 [00:04:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 110 [00:04:14.000] Files (2) +Info 107 [00:04:09.000] ----------------------------------------------- +Info 107 [00:04:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 107 [00:04:11.000] Files (2) -Info 110 [00:04:15.000] ----------------------------------------------- -Info 110 [00:04:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 110 [00:04:17.000] Files (2) +Info 107 [00:04:12.000] ----------------------------------------------- +Info 107 [00:04:13.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 107 [00:04:14.000] Files (2) -Info 110 [00:04:18.000] ----------------------------------------------- -Info 110 [00:04:19.000] Open files: -Info 110 [00:04:20.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 110 [00:04:21.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 107 [00:04:15.000] ----------------------------------------------- +Info 107 [00:04:16.000] Open files: +Info 107 [00:04:17.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 107 [00:04:18.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2369,11 +2366,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:04:22.000] response: +Info 107 [00:04:19.000] response: { "responseRequired": false } -Info 111 [00:04:23.000] request: +Info 108 [00:04:20.000] request: { "seq": 0, "type": "request", @@ -2422,20 +2419,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:04:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 113 [00:04:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 113 [00:04:26.000] Files (3) +Info 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) -Info 113 [00:04:27.000] ----------------------------------------------- -Info 113 [00:04:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 113 [00:04:29.000] Files (2) +Info 110 [00:04:24.000] ----------------------------------------------- +Info 110 [00:04:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 110 [00:04:26.000] Files (2) -Info 113 [00:04:30.000] ----------------------------------------------- -Info 113 [00:04:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 113 [00:04:32.000] Files (2) +Info 110 [00:04:27.000] ----------------------------------------------- +Info 110 [00:04:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 110 [00:04:29.000] Files (2) -Info 113 [00:04:33.000] ----------------------------------------------- -Info 113 [00:04:34.000] Open files: +Info 110 [00:04:30.000] ----------------------------------------------- +Info 110 [00:04:31.000] Open files: After request PolledWatches:: @@ -2478,11 +2475,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [00:04:35.000] response: +Info 110 [00:04:32.000] response: { "responseRequired": false } -Info 114 [00:04:36.000] request: +Info 111 [00:04:33.000] request: { "seq": 0, "type": "request", @@ -2533,12 +2530,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [00:04:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 116 [00:04:38.000] Search path: /user/username/projects/myproject/random -Info 117 [00:04:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 118 [00:04:40.000] `remove Project:: -Info 119 [00:04:41.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 120 [00:04:42.000] Files (3) +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 +Info 115 [00:04:37.000] `remove Project:: +Info 116 [00:04:38.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 117 [00:04:39.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -2551,19 +2548,19 @@ Info 120 [00:04:42.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 121 [00:04:43.000] ----------------------------------------------- -Info 122 [00:04:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 123 [00:04:45.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 124 [00:04:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 125 [00:04:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 126 [00:04:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 127 [00:04:49.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 128 [00:04:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 129 [00:04:51.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 130 [00:04:52.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 131 [00:04:53.000] `remove Project:: -Info 132 [00:04:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 133 [00:04:55.000] Files (2) +Info 118 [00:04:40.000] ----------------------------------------------- +Info 119 [00:04:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 120 [00:04:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 121 [00:04:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 122 [00:04:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 123 [00:04:45.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 124 [00:04:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 125 [00:04:47.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 126 [00:04:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 127 [00:04:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 128 [00:04:50.000] `remove Project:: +Info 129 [00:04:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 130 [00:04:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2573,25 +2570,25 @@ Info 133 [00:04:55.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 134 [00:04:56.000] ----------------------------------------------- -Info 135 [00:04:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 136 [00:04:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 137 [00:04:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 138 [00:05:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 139 [00:05:01.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 140 [00:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 141 [00:05:03.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 142 [00:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 143 [00:05:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 144 [00:05:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 145 [00:05:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 146 [00:05:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 146 [00:05:09.000] Files (2) - -Info 146 [00:05:10.000] ----------------------------------------------- -Info 146 [00:05:11.000] Open files: -Info 146 [00:05:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 146 [00:05:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 131 [00:04:53.000] ----------------------------------------------- +Info 132 [00:04:54.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 133 [00:04:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 134 [00:04:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 135 [00:04:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 136 [00:04:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 137 [00:04:59.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 138 [00:05:00.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 139 [00:05:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 140 [00:05:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 141 [00:05:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 142 [00:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 143 [00:05:05.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 143 [00:05:06.000] Files (2) + +Info 143 [00:05:07.000] ----------------------------------------------- +Info 143 [00:05:08.000] Open files: +Info 143 [00:05:09.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 143 [00:05:10.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2610,7 +2607,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 146 [00:05:14.000] response: +Info 143 [00:05:11.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/usage-file-changes-with-timeout-before-request.js index f5c4c38f6a694..acf934af1bb9d 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 @@ -216,19 +216,18 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:24.000] Files (3) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:23.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +240,16 @@ Info 21 [00:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:25.000] ----------------------------------------------- -Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 21 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) -Info 25 [00:01:30.000] ----------------------------------------------- -Info 25 [00:01:31.000] Open files: -Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:29.000] ----------------------------------------------- +Info 24 [00:01:30.000] Open files: +Info 24 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +272,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:34.000] response: +Info 24 [00:01:33.000] response: { "responseRequired": false } -Info 26 [00:01:35.000] request: +Info 25 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -308,11 +307,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/dependency -Info 28 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +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 +Info 29 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 30 [00:01:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -323,17 +322,16 @@ Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -343,22 +341,22 @@ Info 42 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:56.000] Files (3) - -Info 46 [00:01:57.000] ----------------------------------------------- -Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:01:59.000] Files (2) - -Info 46 [00:02:00.000] ----------------------------------------------- -Info 46 [00:02:01.000] Open files: -Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) + +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) + +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -387,11 +385,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [00:02:06.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 47 [00:02:07.000] request: +Info 45 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -428,11 +426,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -440,17 +438,16 @@ Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:23.000] Files (2) +Info 51 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -460,26 +457,26 @@ Info 63 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:24.000] ----------------------------------------------- -Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:26.000] Files (3) - -Info 65 [00:02:27.000] ----------------------------------------------- -Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:29.000] Files (2) - -Info 65 [00:02:30.000] ----------------------------------------------- -Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:32.000] Files (2) - -Info 65 [00:02:33.000] ----------------------------------------------- -Info 65 [00:02:34.000] Open files: -Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:21.000] ----------------------------------------------- +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (3) + +Info 62 [00:02:24.000] ----------------------------------------------- +Info 62 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:26.000] Files (2) + +Info 62 [00:02:27.000] ----------------------------------------------- +Info 62 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:29.000] Files (2) + +Info 62 [00:02:30.000] ----------------------------------------------- +Info 62 [00:02:31.000] Open files: +Info 62 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -514,11 +511,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:41.000] response: +Info 62 [00:02:38.000] response: { "responseRequired": false } -Info 66 [00:02:42.000] request: +Info 63 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -563,7 +560,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -600,7 +597,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:44.000] response: +Info 65 [00:02:41.000] response: { "response": { "definitions": [ @@ -637,7 +634,7 @@ Info 68 [00:02:44.000] response: }, "responseRequired": true } -Info 69 [00:02:45.000] request: +Info 66 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -684,8 +681,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -722,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:48.000] response: +Info 69 [00:02:45.000] response: { "response": { "info": { @@ -803,7 +800,7 @@ Info 72 [00:02:48.000] response: }, "responseRequired": true } -Info 73 [00:02:49.000] request: +Info 70 [00:02:46.000] request: { "command": "change", "arguments": { @@ -889,11 +886,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:50.000] response: +Info 71 [00:02:47.000] response: { "responseRequired": false } -Info 75 [00:02:51.000] request: +Info 72 [00:02:48.000] request: { "command": "change", "arguments": { @@ -979,7 +976,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:52.000] response: +Info 73 [00:02:49.000] response: { "responseRequired": false } @@ -1055,7 +1052,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:02:53.000] request: +Info 74 [00:02:50.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1102,9 +1099,9 @@ FsWatchesRecursive:: /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 +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:: @@ -1141,7 +1138,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [00:02:57.000] response: +Info 78 [00:02:54.000] response: { "response": { "definitions": [ @@ -1178,7 +1175,7 @@ Info 81 [00:02:57.000] response: }, "responseRequired": true } -Info 82 [00:02:58.000] request: +Info 79 [00:02:55.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1261,7 +1258,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [00:02:59.000] response: +Info 80 [00:02:56.000] response: { "response": { "definitions": [ @@ -1298,7 +1295,7 @@ Info 83 [00:02:59.000] response: }, "responseRequired": true } -Info 84 [00:03:00.000] request: +Info 81 [00:02:57.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1381,7 +1378,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [00:03:01.000] response: +Info 82 [00:02:58.000] response: { "response": { "definitions": [ @@ -1418,7 +1415,7 @@ Info 85 [00:03:01.000] response: }, "responseRequired": true } -Info 86 [00:03:02.000] request: +Info 83 [00:02:59.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1501,7 +1498,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [00:03:03.000] response: +Info 84 [00:03:00.000] response: { "response": { "definitions": [ @@ -1538,7 +1535,7 @@ Info 87 [00:03:03.000] response: }, "responseRequired": true } -Info 88 [00:03:04.000] request: +Info 85 [00:03:01.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1621,7 +1618,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:05.000] response: +Info 86 [00:03:02.000] response: { "response": { "definitions": [ @@ -1658,7 +1655,7 @@ Info 89 [00:03:05.000] response: }, "responseRequired": true } -Info 90 [00:03:06.000] request: +Info 87 [00:03:03.000] request: { "command": "rename", "arguments": { @@ -1705,11 +1702,11 @@ FsWatchesRecursive:: /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:: Completely Elapsed:: *ms -Info 93 [00:03:09.000] Different program with same set of files -Info 94 [00:03:10.000] Search path: /user/username/projects/myproject/dependency -Info 95 [00:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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 +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:: @@ -1746,7 +1743,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:12.000] response: +Info 93 [00:03:09.000] response: { "response": { "info": { @@ -1827,7 +1824,7 @@ Info 96 [00:03:12.000] response: }, "responseRequired": true } -Info 97 [00:03:13.000] request: +Info 94 [00:03:10.000] request: { "command": "rename", "arguments": { @@ -1874,8 +1871,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:14.000] Search path: /user/username/projects/myproject/dependency -Info 99 [00:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 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:: @@ -1912,7 +1909,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:16.000] response: +Info 97 [00:03:13.000] response: { "response": { "info": { @@ -1993,7 +1990,7 @@ Info 100 [00:03:16.000] response: }, "responseRequired": true } -Info 101 [00:03:17.000] request: +Info 98 [00:03:14.000] request: { "command": "rename", "arguments": { @@ -2040,8 +2037,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:18.000] Search path: /user/username/projects/myproject/dependency -Info 103 [00:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2078,7 +2075,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:20.000] response: +Info 101 [00:03:17.000] response: { "response": { "info": { @@ -2159,7 +2156,7 @@ Info 104 [00:03:20.000] response: }, "responseRequired": true } -Info 105 [00:03:21.000] request: +Info 102 [00:03:18.000] request: { "command": "rename", "arguments": { @@ -2206,8 +2203,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:22.000] Search path: /user/username/projects/myproject/dependency -Info 107 [00:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2244,7 +2241,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:24.000] response: +Info 105 [00:03:21.000] response: { "response": { "info": { @@ -2325,7 +2322,7 @@ Info 108 [00:03:24.000] response: }, "responseRequired": true } -Info 109 [00:03:25.000] request: +Info 106 [00:03:22.000] request: { "command": "rename", "arguments": { @@ -2372,8 +2369,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:26.000] Search path: /user/username/projects/myproject/dependency -Info 111 [00:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2410,7 +2407,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:03:28.000] response: +Info 109 [00:03:25.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configHasNoReference/usage-file-changes.js index bb6e9e759d554..625f541a4057f 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 @@ -216,19 +216,18 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:24.000] Files (3) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:23.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +240,16 @@ Info 21 [00:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:25.000] ----------------------------------------------- -Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 21 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) -Info 25 [00:01:30.000] ----------------------------------------------- -Info 25 [00:01:31.000] Open files: -Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:29.000] ----------------------------------------------- +Info 24 [00:01:30.000] Open files: +Info 24 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +272,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:34.000] response: +Info 24 [00:01:33.000] response: { "responseRequired": false } -Info 26 [00:01:35.000] request: +Info 25 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -308,11 +307,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/dependency -Info 28 [00:01:37.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file -Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +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 +Info 29 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Config file +Info 30 [00:01:39.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -323,17 +322,16 @@ Info 31 [00:01:40.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -343,22 +341,22 @@ Info 42 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:56.000] Files (3) - -Info 46 [00:01:57.000] ----------------------------------------------- -Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:01:59.000] Files (2) - -Info 46 [00:02:00.000] ----------------------------------------------- -Info 46 [00:02:01.000] Open files: -Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) + +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) + +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -387,11 +385,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 46 [00:02:06.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 47 [00:02:07.000] request: +Info 45 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -428,11 +426,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -440,17 +438,16 @@ Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:23.000] Files (2) +Info 51 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -460,26 +457,26 @@ Info 63 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:24.000] ----------------------------------------------- -Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:26.000] Files (3) - -Info 65 [00:02:27.000] ----------------------------------------------- -Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:29.000] Files (2) - -Info 65 [00:02:30.000] ----------------------------------------------- -Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:32.000] Files (2) - -Info 65 [00:02:33.000] ----------------------------------------------- -Info 65 [00:02:34.000] Open files: -Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:21.000] ----------------------------------------------- +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (3) + +Info 62 [00:02:24.000] ----------------------------------------------- +Info 62 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:26.000] Files (2) + +Info 62 [00:02:27.000] ----------------------------------------------- +Info 62 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:29.000] Files (2) + +Info 62 [00:02:30.000] ----------------------------------------------- +Info 62 [00:02:31.000] Open files: +Info 62 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -514,11 +511,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:41.000] response: +Info 62 [00:02:38.000] response: { "responseRequired": false } -Info 66 [00:02:42.000] request: +Info 63 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -563,7 +560,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -600,7 +597,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:44.000] response: +Info 65 [00:02:41.000] response: { "response": { "definitions": [ @@ -637,7 +634,7 @@ Info 68 [00:02:44.000] response: }, "responseRequired": true } -Info 69 [00:02:45.000] request: +Info 66 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -684,8 +681,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -722,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:48.000] response: +Info 69 [00:02:45.000] response: { "response": { "info": { @@ -803,7 +800,7 @@ Info 72 [00:02:48.000] response: }, "responseRequired": true } -Info 73 [00:02:49.000] request: +Info 70 [00:02:46.000] request: { "command": "change", "arguments": { @@ -889,11 +886,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:50.000] response: +Info 71 [00:02:47.000] response: { "responseRequired": false } -Info 75 [00:02:51.000] request: +Info 72 [00:02:48.000] request: { "command": "change", "arguments": { @@ -979,11 +976,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:52.000] response: +Info 73 [00:02:49.000] response: { "responseRequired": false } -Info 77 [00:02:53.000] request: +Info 74 [00:02:50.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1030,9 +1027,9 @@ FsWatchesRecursive:: /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 +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:: @@ -1069,7 +1066,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [00:02:57.000] response: +Info 78 [00:02:54.000] response: { "response": { "definitions": [ @@ -1106,7 +1103,7 @@ Info 81 [00:02:57.000] response: }, "responseRequired": true } -Info 82 [00:02:58.000] request: +Info 79 [00:02:55.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1189,7 +1186,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [00:02:59.000] response: +Info 80 [00:02:56.000] response: { "response": { "definitions": [ @@ -1226,7 +1223,7 @@ Info 83 [00:02:59.000] response: }, "responseRequired": true } -Info 84 [00:03:00.000] request: +Info 81 [00:02:57.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1309,7 +1306,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [00:03:01.000] response: +Info 82 [00:02:58.000] response: { "response": { "definitions": [ @@ -1346,7 +1343,7 @@ Info 85 [00:03:01.000] response: }, "responseRequired": true } -Info 86 [00:03:02.000] request: +Info 83 [00:02:59.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1429,7 +1426,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [00:03:03.000] response: +Info 84 [00:03:00.000] response: { "response": { "definitions": [ @@ -1466,7 +1463,7 @@ Info 87 [00:03:03.000] response: }, "responseRequired": true } -Info 88 [00:03:04.000] request: +Info 85 [00:03:01.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1549,7 +1546,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:05.000] response: +Info 86 [00:03:02.000] response: { "response": { "definitions": [ @@ -1586,7 +1583,7 @@ Info 89 [00:03:05.000] response: }, "responseRequired": true } -Info 90 [00:03:06.000] request: +Info 87 [00:03:03.000] request: { "command": "rename", "arguments": { @@ -1633,11 +1630,11 @@ FsWatchesRecursive:: /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:: Completely Elapsed:: *ms -Info 93 [00:03:09.000] Different program with same set of files -Info 94 [00:03:10.000] Search path: /user/username/projects/myproject/dependency -Info 95 [00:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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 +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:: @@ -1674,7 +1671,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:12.000] response: +Info 93 [00:03:09.000] response: { "response": { "info": { @@ -1755,7 +1752,7 @@ Info 96 [00:03:12.000] response: }, "responseRequired": true } -Info 97 [00:03:13.000] request: +Info 94 [00:03:10.000] request: { "command": "rename", "arguments": { @@ -1802,8 +1799,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:14.000] Search path: /user/username/projects/myproject/dependency -Info 99 [00:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 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:: @@ -1840,7 +1837,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:16.000] response: +Info 97 [00:03:13.000] response: { "response": { "info": { @@ -1921,7 +1918,7 @@ Info 100 [00:03:16.000] response: }, "responseRequired": true } -Info 101 [00:03:17.000] request: +Info 98 [00:03:14.000] request: { "command": "rename", "arguments": { @@ -1968,8 +1965,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:18.000] Search path: /user/username/projects/myproject/dependency -Info 103 [00:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2006,7 +2003,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:20.000] response: +Info 101 [00:03:17.000] response: { "response": { "info": { @@ -2087,7 +2084,7 @@ Info 104 [00:03:20.000] response: }, "responseRequired": true } -Info 105 [00:03:21.000] request: +Info 102 [00:03:18.000] request: { "command": "rename", "arguments": { @@ -2134,8 +2131,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:22.000] Search path: /user/username/projects/myproject/dependency -Info 107 [00:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2172,7 +2169,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:24.000] response: +Info 105 [00:03:21.000] response: { "response": { "info": { @@ -2253,7 +2250,7 @@ Info 108 [00:03:24.000] response: }, "responseRequired": true } -Info 109 [00:03:25.000] request: +Info 106 [00:03:22.000] request: { "command": "rename", "arguments": { @@ -2300,8 +2297,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:26.000] Search path: /user/username/projects/myproject/dependency -Info 111 [00:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2338,7 +2335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:03:28.000] response: +Info 109 [00:03:25.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-changes-with-timeout-before-request.js index 7bd9b2203175d..902e5c0f578bf 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,19 +335,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [00:01:49.000] Files (2) +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 +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:47.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +356,22 @@ Info 43 [00:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [00:01:50.000] ----------------------------------------------- -Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [00:01:54.000] Files (3) - -Info 47 [00:01:55.000] ----------------------------------------------- -Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [00:01:57.000] Files (2) - -Info 47 [00:01:58.000] ----------------------------------------------- -Info 47 [00:01:59.000] Open files: -Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:48.000] ----------------------------------------------- +Info 43 [00:01:49.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:50.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:52.000] Files (3) + +Info 45 [00:01:53.000] ----------------------------------------------- +Info 45 [00:01:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:55.000] Files (2) + +Info 45 [00:01:56.000] ----------------------------------------------- +Info 45 [00:01:57.000] Open files: +Info 45 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:02:00.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 45 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +398,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [00:02:04.000] response: +Info 45 [00:02:02.000] response: { "responseRequired": false } -Info 48 [00:02:05.000] request: +Info 46 [00:02:03.000] request: { "seq": 0, "type": "request", @@ -439,11 +437,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 50 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 51 [00:02:08.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +449,16 @@ Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:21.000] Files (2) +Info 52 [00:02:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:02:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +468,26 @@ Info 64 [00:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [00:02:22.000] ----------------------------------------------- -Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:02:24.000] Files (3) - -Info 66 [00:02:25.000] ----------------------------------------------- -Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:27.000] Files (2) - -Info 66 [00:02:28.000] ----------------------------------------------- -Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:30.000] Files (2) - -Info 66 [00:02:31.000] ----------------------------------------------- -Info 66 [00:02:32.000] Open files: -Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:19.000] ----------------------------------------------- +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:21.000] Files (3) + +Info 63 [00:02:22.000] ----------------------------------------------- +Info 63 [00:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 63 [00:02:24.000] Files (2) + +Info 63 [00:02:25.000] ----------------------------------------------- +Info 63 [00:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:27.000] Files (2) + +Info 63 [00:02:28.000] ----------------------------------------------- +Info 63 [00:02:29.000] Open files: +Info 63 [00:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:32.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 63 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 63 [00:02:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +520,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:39.000] response: +Info 63 [00:02:36.000] response: { "responseRequired": false } -Info 67 [00:02:40.000] request: +Info 64 [00:02:37.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +599,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:41.000] response: +Info 65 [00:02:38.000] response: { "response": { "definitions": [ @@ -639,7 +636,7 @@ Info 68 [00:02:41.000] response: }, "responseRequired": true } -Info 69 [00:02:42.000] request: +Info 66 [00:02:39.000] request: { "command": "rename", "arguments": { @@ -682,10 +679,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 +Info 70 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -722,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:47.000] response: +Info 71 [00:02:44.000] response: { "response": { "info": { @@ -803,11 +800,11 @@ Info 74 [00:02:47.000] response: }, "responseRequired": true } -Info 75 [00:02:51.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 76 [00:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 77 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 78 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 79 [00:02:55.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 72 [00:02:48.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 73 [00:02:49.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 74 [00:02:50.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 75 [00:02:51.000] Scheduled: *ensureProjectForOpenFiles* +Info 76 [00:02:52.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts] export declare function fn1(): void; @@ -853,54 +850,54 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:02:56.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 81 [00:02:57.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 82 [00:02:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 83 [00:02:59.000] Different program with same set of files -Info 84 [00:03:00.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 85 [00:03:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 86 [00:03:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 87 [00:03:03.000] Running: *ensureProjectForOpenFiles* -Info 88 [00:03:04.000] Before ensureProjectForOpenFiles: -Info 89 [00:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 89 [00:03:06.000] Files (3) - -Info 89 [00:03:07.000] ----------------------------------------------- -Info 89 [00:03:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 89 [00:03:09.000] Files (2) - -Info 89 [00:03:10.000] ----------------------------------------------- -Info 89 [00:03:11.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 89 [00:03:12.000] Files (2) - -Info 89 [00:03:13.000] ----------------------------------------------- -Info 89 [00:03:14.000] Open files: -Info 89 [00:03:15.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 89 [00:03:16.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 89 [00:03:17.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 89 [00:03:18.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 89 [00:03:19.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 89 [00:03:20.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 89 [00:03:21.000] After ensureProjectForOpenFiles: -Info 90 [00:03:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 90 [00:03:23.000] Files (3) - -Info 90 [00:03:24.000] ----------------------------------------------- -Info 90 [00:03:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 90 [00:03:26.000] Files (2) - -Info 90 [00:03:27.000] ----------------------------------------------- -Info 90 [00:03:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 90 [00:03:29.000] Files (2) - -Info 90 [00:03:30.000] ----------------------------------------------- -Info 90 [00:03:31.000] Open files: -Info 90 [00:03:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 90 [00:03:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 90 [00:03:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 90 [00:03:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 90 [00:03:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 90 [00:03:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 80 [00:02:56.000] Different program with same set of files +Info 81 [00:02:57.000] Running: /user/username/projects/myproject/dependency/tsconfig.json +Info 82 [00:02:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 83 [00:02:59.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 84 [00:03:00.000] Running: *ensureProjectForOpenFiles* +Info 85 [00:03:01.000] Before ensureProjectForOpenFiles: +Info 86 [00:03:02.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 86 [00:03:03.000] Files (3) + +Info 86 [00:03:04.000] ----------------------------------------------- +Info 86 [00:03:05.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 86 [00:03:06.000] Files (2) + +Info 86 [00:03:07.000] ----------------------------------------------- +Info 86 [00:03:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 86 [00:03:09.000] Files (2) + +Info 86 [00:03:10.000] ----------------------------------------------- +Info 86 [00:03:11.000] Open files: +Info 86 [00:03:12.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 86 [00:03:13.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 86 [00:03:14.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 86 [00:03:15.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 86 [00:03:16.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 86 [00:03:17.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 86 [00:03:18.000] After ensureProjectForOpenFiles: +Info 87 [00:03:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 87 [00:03:20.000] Files (3) + +Info 87 [00:03:21.000] ----------------------------------------------- +Info 87 [00:03:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 87 [00:03:23.000] Files (2) + +Info 87 [00:03:24.000] ----------------------------------------------- +Info 87 [00:03:25.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 87 [00:03:26.000] Files (2) + +Info 87 [00:03:27.000] ----------------------------------------------- +Info 87 [00:03:28.000] Open files: +Info 87 [00:03:29.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 87 [00:03:30.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 87 [00:03:31.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 87 [00:03:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 87 [00:03:33.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 87 [00:03:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -937,7 +934,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:38.000] request: +Info 87 [00:03:35.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1020,7 +1017,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [00:03:39.000] response: +Info 88 [00:03:36.000] response: { "response": { "definitions": [ @@ -1057,7 +1054,7 @@ Info 91 [00:03:39.000] response: }, "responseRequired": true } -Info 92 [00:03:40.000] request: +Info 89 [00:03:37.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1140,7 +1137,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [00:03:41.000] response: +Info 90 [00:03:38.000] response: { "response": { "definitions": [ @@ -1177,7 +1174,7 @@ Info 93 [00:03:41.000] response: }, "responseRequired": true } -Info 94 [00:03:42.000] request: +Info 91 [00:03:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1260,7 +1257,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [00:03:43.000] response: +Info 92 [00:03:40.000] response: { "response": { "definitions": [ @@ -1297,7 +1294,7 @@ Info 95 [00:03:43.000] response: }, "responseRequired": true } -Info 96 [00:03:44.000] request: +Info 93 [00:03:41.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1380,7 +1377,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [00:03:45.000] response: +Info 94 [00:03:42.000] response: { "response": { "definitions": [ @@ -1417,7 +1414,7 @@ Info 97 [00:03:45.000] response: }, "responseRequired": true } -Info 98 [00:03:46.000] request: +Info 95 [00:03:43.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1500,7 +1497,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [00:03:47.000] response: +Info 96 [00:03:44.000] response: { "response": { "definitions": [ @@ -1537,7 +1534,7 @@ Info 99 [00:03:47.000] response: }, "responseRequired": true } -Info 100 [00:03:48.000] request: +Info 97 [00:03:45.000] request: { "command": "rename", "arguments": { @@ -1584,8 +1581,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [00:03:49.000] Search path: /user/username/projects/myproject/dependency -Info 102 [00:03:50.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1622,7 +1619,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [00:03:51.000] response: +Info 100 [00:03:48.000] response: { "response": { "info": { @@ -1703,7 +1700,7 @@ Info 103 [00:03:51.000] response: }, "responseRequired": true } -Info 104 [00:03:52.000] request: +Info 101 [00:03:49.000] request: { "command": "rename", "arguments": { @@ -1750,8 +1747,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 105 [00:03:53.000] Search path: /user/username/projects/myproject/dependency -Info 106 [00:03:54.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1788,7 +1785,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 107 [00:03:55.000] response: +Info 104 [00:03:52.000] response: { "response": { "info": { @@ -1869,7 +1866,7 @@ Info 107 [00:03:55.000] response: }, "responseRequired": true } -Info 108 [00:03:56.000] request: +Info 105 [00:03:53.000] request: { "command": "rename", "arguments": { @@ -1916,8 +1913,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [00:03:57.000] Search path: /user/username/projects/myproject/dependency -Info 110 [00:03:58.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1954,7 +1951,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [00:03:59.000] response: +Info 108 [00:03:56.000] response: { "response": { "info": { @@ -2035,7 +2032,7 @@ Info 111 [00:03:59.000] response: }, "responseRequired": true } -Info 112 [00:04:00.000] request: +Info 109 [00:03:57.000] request: { "command": "rename", "arguments": { @@ -2082,8 +2079,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [00:04:01.000] Search path: /user/username/projects/myproject/dependency -Info 114 [00:04:02.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2120,7 +2117,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [00:04:03.000] response: +Info 112 [00:04:00.000] response: { "response": { "info": { @@ -2201,7 +2198,7 @@ Info 115 [00:04:03.000] response: }, "responseRequired": true } -Info 116 [00:04:04.000] request: +Info 113 [00:04:01.000] request: { "command": "rename", "arguments": { @@ -2248,8 +2245,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [00:04:05.000] Search path: /user/username/projects/myproject/dependency -Info 118 [00:04:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2286,7 +2283,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 119 [00:04:07.000] response: +Info 116 [00:04:04.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-changes.js index 5e77e2fa52eda..3339917654a70 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,19 +335,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [00:01:49.000] Files (2) +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 +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:47.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +356,22 @@ Info 43 [00:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [00:01:50.000] ----------------------------------------------- -Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [00:01:54.000] Files (3) - -Info 47 [00:01:55.000] ----------------------------------------------- -Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [00:01:57.000] Files (2) - -Info 47 [00:01:58.000] ----------------------------------------------- -Info 47 [00:01:59.000] Open files: -Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:48.000] ----------------------------------------------- +Info 43 [00:01:49.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:50.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:52.000] Files (3) + +Info 45 [00:01:53.000] ----------------------------------------------- +Info 45 [00:01:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:55.000] Files (2) + +Info 45 [00:01:56.000] ----------------------------------------------- +Info 45 [00:01:57.000] Open files: +Info 45 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:02:00.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 45 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +398,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [00:02:04.000] response: +Info 45 [00:02:02.000] response: { "responseRequired": false } -Info 48 [00:02:05.000] request: +Info 46 [00:02:03.000] request: { "seq": 0, "type": "request", @@ -439,11 +437,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 50 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 51 [00:02:08.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +449,16 @@ Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:21.000] Files (2) +Info 52 [00:02:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:02:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +468,26 @@ Info 64 [00:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [00:02:22.000] ----------------------------------------------- -Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:02:24.000] Files (3) - -Info 66 [00:02:25.000] ----------------------------------------------- -Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:27.000] Files (2) - -Info 66 [00:02:28.000] ----------------------------------------------- -Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:30.000] Files (2) - -Info 66 [00:02:31.000] ----------------------------------------------- -Info 66 [00:02:32.000] Open files: -Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:19.000] ----------------------------------------------- +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:21.000] Files (3) + +Info 63 [00:02:22.000] ----------------------------------------------- +Info 63 [00:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 63 [00:02:24.000] Files (2) + +Info 63 [00:02:25.000] ----------------------------------------------- +Info 63 [00:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:27.000] Files (2) + +Info 63 [00:02:28.000] ----------------------------------------------- +Info 63 [00:02:29.000] Open files: +Info 63 [00:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:32.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 63 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 63 [00:02:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +520,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:39.000] response: +Info 63 [00:02:36.000] response: { "responseRequired": false } -Info 67 [00:02:40.000] request: +Info 64 [00:02:37.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +599,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:41.000] response: +Info 65 [00:02:38.000] response: { "response": { "definitions": [ @@ -639,7 +636,7 @@ Info 68 [00:02:41.000] response: }, "responseRequired": true } -Info 69 [00:02:42.000] request: +Info 66 [00:02:39.000] request: { "command": "rename", "arguments": { @@ -682,10 +679,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 +Info 70 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -722,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:47.000] response: +Info 71 [00:02:44.000] response: { "response": { "info": { @@ -803,12 +800,12 @@ Info 74 [00:02:47.000] response: }, "responseRequired": true } -Info 75 [00:02:51.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 76 [00:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 77 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 78 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 79 [00:02:55.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 80 [00:02:56.000] request: +Info 72 [00:02:48.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 73 [00:02:49.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 74 [00:02:50.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 75 [00:02:51.000] Scheduled: *ensureProjectForOpenFiles* +Info 76 [00:02:52.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 77 [00:02:53.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -864,9 +861,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [00:02:57.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 82 [00:02:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 83 [00:02:59.000] Different program with same set of files +Info 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:: @@ -903,7 +900,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:03:00.000] response: +Info 81 [00:02:57.000] response: { "response": { "definitions": [ @@ -940,7 +937,7 @@ Info 84 [00:03:00.000] response: }, "responseRequired": true } -Info 85 [00:03:01.000] request: +Info 82 [00:02:58.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1023,7 +1020,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:02.000] response: +Info 83 [00:02:59.000] response: { "response": { "definitions": [ @@ -1060,7 +1057,7 @@ Info 86 [00:03:02.000] response: }, "responseRequired": true } -Info 87 [00:03:03.000] request: +Info 84 [00:03:00.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1143,7 +1140,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [00:03:04.000] response: +Info 85 [00:03:01.000] response: { "response": { "definitions": [ @@ -1180,7 +1177,7 @@ Info 88 [00:03:04.000] response: }, "responseRequired": true } -Info 89 [00:03:05.000] request: +Info 86 [00:03:02.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1263,7 +1260,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:06.000] response: +Info 87 [00:03:03.000] response: { "response": { "definitions": [ @@ -1300,7 +1297,7 @@ Info 90 [00:03:06.000] response: }, "responseRequired": true } -Info 91 [00:03:07.000] request: +Info 88 [00:03:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1383,7 +1380,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [00:03:08.000] response: +Info 89 [00:03:05.000] response: { "response": { "definitions": [ @@ -1420,7 +1417,7 @@ Info 92 [00:03:08.000] response: }, "responseRequired": true } -Info 93 [00:03:09.000] request: +Info 90 [00:03:06.000] request: { "command": "rename", "arguments": { @@ -1467,10 +1464,10 @@ FsWatchesRecursive:: /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 -Info 97 [00:03:13.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1507,7 +1504,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:14.000] response: +Info 95 [00:03:11.000] response: { "response": { "info": { @@ -1588,7 +1585,7 @@ Info 98 [00:03:14.000] response: }, "responseRequired": true } -Info 99 [00:03:15.000] request: +Info 96 [00:03:12.000] request: { "command": "rename", "arguments": { @@ -1635,8 +1632,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:16.000] Search path: /user/username/projects/myproject/dependency -Info 101 [00:03:17.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1673,7 +1670,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:18.000] response: +Info 99 [00:03:15.000] response: { "response": { "info": { @@ -1754,7 +1751,7 @@ Info 102 [00:03:18.000] response: }, "responseRequired": true } -Info 103 [00:03:19.000] request: +Info 100 [00:03:16.000] request: { "command": "rename", "arguments": { @@ -1801,8 +1798,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:20.000] Search path: /user/username/projects/myproject/dependency -Info 105 [00:03:21.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1839,7 +1836,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:22.000] response: +Info 103 [00:03:19.000] response: { "response": { "info": { @@ -1920,7 +1917,7 @@ Info 106 [00:03:22.000] response: }, "responseRequired": true } -Info 107 [00:03:23.000] request: +Info 104 [00:03:20.000] request: { "command": "rename", "arguments": { @@ -1967,8 +1964,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:24.000] Search path: /user/username/projects/myproject/dependency -Info 109 [00:03:25.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2005,7 +2002,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:26.000] response: +Info 107 [00:03:23.000] response: { "response": { "info": { @@ -2086,7 +2083,7 @@ Info 110 [00:03:26.000] response: }, "responseRequired": true } -Info 111 [00:03:27.000] request: +Info 108 [00:03:24.000] request: { "command": "rename", "arguments": { @@ -2133,8 +2130,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:03:28.000] Search path: /user/username/projects/myproject/dependency -Info 113 [00:03:29.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2171,7 +2168,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [00:03:30.000] response: +Info 111 [00:03:27.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-created.js index 4bf7f02d0e7aa..7b8c5b2401467 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,9 +214,8 @@ Info 6 [00:01:07.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -227,20 +226,20 @@ Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:26.000] Files (3) +Info 11 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -253,16 +252,16 @@ Info 25 [00:01:26.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:27.000] ----------------------------------------------- -Info 27 [00:01:28.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:31.000] Files (3) +Info 25 [00:01:26.000] ----------------------------------------------- +Info 26 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:30.000] Files (3) -Info 29 [00:01:32.000] ----------------------------------------------- -Info 29 [00:01:33.000] Open files: -Info 29 [00:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:31.000] ----------------------------------------------- +Info 28 [00:01:32.000] Open files: +Info 28 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -289,11 +288,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:36.000] response: +Info 28 [00:01:35.000] response: { "responseRequired": false } -Info 30 [00:01:37.000] request: +Info 29 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -328,19 +327,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [00:01:39.000] Search path: /user/username/projects/myproject/dependency -Info 33 [00:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 41 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [00:01:50.000] Files (2) +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 +Info 33 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -350,22 +348,22 @@ Info 43 [00:01:50.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [00:01:51.000] ----------------------------------------------- -Info 45 [00:01:52.000] Search path: /user/username/projects/myproject/dependency -Info 46 [00:01:53.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [00:01:55.000] Files (3) - -Info 47 [00:01:56.000] ----------------------------------------------- -Info 47 [00:01:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [00:01:58.000] Files (2) - -Info 47 [00:01:59.000] ----------------------------------------------- -Info 47 [00:02:00.000] Open files: -Info 47 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [00:02:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [00:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:49.000] ----------------------------------------------- +Info 43 [00:01:50.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:51.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:53.000] Files (3) + +Info 45 [00:01:54.000] ----------------------------------------------- +Info 45 [00:01:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:56.000] Files (2) + +Info 45 [00:01:57.000] ----------------------------------------------- +Info 45 [00:01:58.000] Open files: +Info 45 [00:01:59.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:02:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:02:01.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 45 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -392,11 +390,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [00:02:05.000] response: +Info 45 [00:02:03.000] response: { "responseRequired": false } -Info 48 [00:02:06.000] request: +Info 46 [00:02:04.000] request: { "seq": 0, "type": "request", @@ -431,11 +429,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [00:02:07.000] Search path: /user/username/projects/myproject/random -Info 50 [00:02:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:09.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [00:02:11.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 50 [00:02:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 51 [00:02:09.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -443,17 +441,16 @@ Info 53 [00:02:11.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [00:02:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [00:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [00:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [00:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:22.000] Files (2) +Info 52 [00:02:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:02:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:19.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -463,26 +460,26 @@ Info 64 [00:02:22.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [00:02:23.000] ----------------------------------------------- -Info 66 [00:02:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:02:25.000] Files (3) - -Info 66 [00:02:26.000] ----------------------------------------------- -Info 66 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:28.000] Files (2) - -Info 66 [00:02:29.000] ----------------------------------------------- -Info 66 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:31.000] Files (2) - -Info 66 [00:02:32.000] ----------------------------------------------- -Info 66 [00:02:33.000] Open files: -Info 66 [00:02:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [00:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [00:02:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [00:02:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:20.000] ----------------------------------------------- +Info 63 [00:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:22.000] Files (3) + +Info 63 [00:02:23.000] ----------------------------------------------- +Info 63 [00:02:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 63 [00:02:25.000] Files (2) + +Info 63 [00:02:26.000] ----------------------------------------------- +Info 63 [00:02:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:28.000] Files (2) + +Info 63 [00:02:29.000] ----------------------------------------------- +Info 63 [00:02:30.000] Open files: +Info 63 [00:02:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:33.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 63 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 63 [00:02:35.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -515,11 +512,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:40.000] response: +Info 63 [00:02:37.000] response: { "responseRequired": false } -Info 67 [00:02:41.000] request: +Info 64 [00:02:38.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -594,7 +591,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:42.000] response: +Info 65 [00:02:39.000] response: { "response": { "definitions": [ @@ -631,7 +628,7 @@ Info 68 [00:02:42.000] response: }, "responseRequired": true } -Info 69 [00:02:43.000] request: +Info 66 [00:02:40.000] request: { "command": "rename", "arguments": { @@ -674,9 +671,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:44.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:45.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +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 After request PolledWatches:: @@ -711,7 +708,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [00:02:47.000] response: +Info 70 [00:02:44.000] response: { "response": { "info": { @@ -792,18 +789,18 @@ Info 73 [00:02:47.000] response: }, "responseRequired": true } -Info 74 [00:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 75 [00:02:51.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 76 [00:02:52.000] Scheduled: *ensureProjectForOpenFiles* -Info 77 [00:02:53.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 78 [00:02:54.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 79 [00:02:55.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one -Info 80 [00:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 81 [00:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 82 [00:02:58.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 83 [00:02:59.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 84 [00:03:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 85 [00:03:01.000] request: +Info 71 [00:02:47.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 72 [00:02:48.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 73 [00:02:49.000] Scheduled: *ensureProjectForOpenFiles* +Info 74 [00:02:50.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 75 [00:02:51.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 76 [00:02:52.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one +Info 77 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 78 [00:02:54.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 79 [00:02:55.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 80 [00:02:56.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 81 [00:02:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 82 [00:02:58.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -890,7 +887,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:02.000] response: +Info 83 [00:02:59.000] response: { "response": { "definitions": [ @@ -927,7 +924,7 @@ Info 86 [00:03:02.000] response: }, "responseRequired": true } -Info 87 [00:03:03.000] request: +Info 84 [00:03:00.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1006,7 +1003,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [00:03:04.000] response: +Info 85 [00:03:01.000] response: { "response": { "definitions": [ @@ -1043,7 +1040,7 @@ Info 88 [00:03:04.000] response: }, "responseRequired": true } -Info 89 [00:03:05.000] request: +Info 86 [00:03:02.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1122,7 +1119,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:06.000] response: +Info 87 [00:03:03.000] response: { "response": { "definitions": [ @@ -1159,7 +1156,7 @@ Info 90 [00:03:06.000] response: }, "responseRequired": true } -Info 91 [00:03:07.000] request: +Info 88 [00:03:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1238,7 +1235,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [00:03:08.000] response: +Info 89 [00:03:05.000] response: { "response": { "definitions": [ @@ -1275,7 +1272,7 @@ Info 92 [00:03:08.000] response: }, "responseRequired": true } -Info 93 [00:03:09.000] request: +Info 90 [00:03:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1354,7 +1351,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [00:03:10.000] response: +Info 91 [00:03:07.000] response: { "response": { "definitions": [ @@ -1391,7 +1388,7 @@ Info 94 [00:03:10.000] response: }, "responseRequired": true } -Info 95 [00:03:11.000] request: +Info 92 [00:03:08.000] request: { "command": "rename", "arguments": { @@ -1436,12 +1433,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 97 [00:03:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 98 [00:03:14.000] Search path: /user/username/projects/myproject/dependency -Info 99 [00:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 100 [00:03:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 101 [00:03:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 +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 +Info 97 [00:03:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 98 [00:03:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -1478,7 +1475,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:18.000] response: +Info 99 [00:03:15.000] response: { "response": { "info": { @@ -1559,7 +1556,7 @@ Info 102 [00:03:18.000] response: }, "responseRequired": true } -Info 103 [00:03:19.000] request: +Info 100 [00:03:16.000] request: { "command": "rename", "arguments": { @@ -1606,8 +1603,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:20.000] Search path: /user/username/projects/myproject/dependency -Info 105 [00:03:21.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1644,7 +1641,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:22.000] response: +Info 103 [00:03:19.000] response: { "response": { "info": { @@ -1725,7 +1722,7 @@ Info 106 [00:03:22.000] response: }, "responseRequired": true } -Info 107 [00:03:23.000] request: +Info 104 [00:03:20.000] request: { "command": "rename", "arguments": { @@ -1772,8 +1769,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:24.000] Search path: /user/username/projects/myproject/dependency -Info 109 [00:03:25.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1810,7 +1807,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:26.000] response: +Info 107 [00:03:23.000] response: { "response": { "info": { @@ -1891,7 +1888,7 @@ Info 110 [00:03:26.000] response: }, "responseRequired": true } -Info 111 [00:03:27.000] request: +Info 108 [00:03:24.000] request: { "command": "rename", "arguments": { @@ -1938,8 +1935,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:03:28.000] Search path: /user/username/projects/myproject/dependency -Info 113 [00:03:29.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1976,7 +1973,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [00:03:30.000] response: +Info 111 [00:03:27.000] response: { "response": { "info": { @@ -2057,7 +2054,7 @@ Info 114 [00:03:30.000] response: }, "responseRequired": true } -Info 115 [00:03:31.000] request: +Info 112 [00:03:28.000] request: { "command": "rename", "arguments": { @@ -2104,8 +2101,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [00:03:32.000] Search path: /user/username/projects/myproject/dependency -Info 117 [00:03:33.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2142,7 +2139,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 118 [00:03:34.000] response: +Info 115 [00:03:31.000] response: { "response": { "info": { @@ -2223,7 +2220,7 @@ Info 118 [00:03:34.000] response: }, "responseRequired": true } -Info 119 [00:03:35.000] request: +Info 116 [00:03:32.000] request: { "seq": 0, "type": "request", @@ -2268,24 +2265,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 120 [00:03:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 121 [00:03:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 121 [00:03:38.000] Files (3) +Info 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) -Info 121 [00:03:39.000] ----------------------------------------------- -Info 121 [00:03:40.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 121 [00:03:41.000] Files (2) +Info 118 [00:03:36.000] ----------------------------------------------- +Info 118 [00:03:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 118 [00:03:38.000] Files (2) -Info 121 [00:03:42.000] ----------------------------------------------- -Info 121 [00:03:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 121 [00:03:44.000] Files (2) +Info 118 [00:03:39.000] ----------------------------------------------- +Info 118 [00:03:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 118 [00:03:41.000] Files (2) -Info 121 [00:03:45.000] ----------------------------------------------- -Info 121 [00:03:46.000] Open files: -Info 121 [00:03:47.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 121 [00:03:48.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 121 [00:03:49.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 121 [00:03:50.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 118 [00:03:42.000] ----------------------------------------------- +Info 118 [00:03:43.000] Open files: +Info 118 [00:03:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 118 [00:03:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 118 [00:03:46.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 118 [00:03:47.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2324,11 +2321,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 121 [00:03:51.000] response: +Info 118 [00:03:48.000] response: { "responseRequired": false } -Info 122 [00:03:52.000] request: +Info 119 [00:03:49.000] request: { "seq": 0, "type": "request", @@ -2375,28 +2372,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 123 [00:03:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 124 [00:03:54.000] Search path: /user/username/projects/myproject/random -Info 125 [00:03:55.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 126 [00:03:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 126 [00:03:57.000] Files (3) - -Info 126 [00:03:58.000] ----------------------------------------------- -Info 126 [00:03:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 126 [00:04:00.000] Files (2) - -Info 126 [00:04:01.000] ----------------------------------------------- -Info 126 [00:04:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 126 [00:04:03.000] Files (2) - -Info 126 [00:04:04.000] ----------------------------------------------- -Info 126 [00:04:05.000] Open files: -Info 126 [00:04:06.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 126 [00:04:07.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 126 [00:04:08.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 126 [00:04:09.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 126 [00:04:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 126 [00:04:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 123 [00:03:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 123 [00:03:54.000] Files (3) + +Info 123 [00:03:55.000] ----------------------------------------------- +Info 123 [00:03:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 123 [00:03:57.000] Files (2) + +Info 123 [00:03:58.000] ----------------------------------------------- +Info 123 [00:03:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 123 [00:04:00.000] Files (2) + +Info 123 [00:04:01.000] ----------------------------------------------- +Info 123 [00:04:02.000] Open files: +Info 123 [00:04:03.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 123 [00:04:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 123 [00:04:05.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 123 [00:04:06.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 123 [00:04:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 123 [00:04:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2433,11 +2430,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 126 [00:04:12.000] response: +Info 123 [00:04:09.000] response: { "responseRequired": false } -Info 127 [00:04:13.000] request: +Info 124 [00:04:10.000] request: { "seq": 0, "type": "request", @@ -2482,24 +2479,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 128 [00:04:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 129 [00:04:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 129 [00:04:16.000] Files (3) +Info 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) -Info 129 [00:04:17.000] ----------------------------------------------- -Info 129 [00:04:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 129 [00:04:19.000] Files (2) +Info 126 [00:04:14.000] ----------------------------------------------- +Info 126 [00:04:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 126 [00:04:16.000] Files (2) -Info 129 [00:04:20.000] ----------------------------------------------- -Info 129 [00:04:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 129 [00:04:22.000] Files (2) +Info 126 [00:04:17.000] ----------------------------------------------- +Info 126 [00:04:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 126 [00:04:19.000] Files (2) -Info 129 [00:04:23.000] ----------------------------------------------- -Info 129 [00:04:24.000] Open files: -Info 129 [00:04:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 129 [00:04:26.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 129 [00:04:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 129 [00:04:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 126 [00:04:20.000] ----------------------------------------------- +Info 126 [00:04:21.000] Open files: +Info 126 [00:04:22.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 126 [00:04:23.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 126 [00:04:24.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 126 [00:04:25.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2538,11 +2535,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 129 [00:04:29.000] response: +Info 126 [00:04:26.000] response: { "responseRequired": false } -Info 130 [00:04:30.000] request: +Info 127 [00:04:27.000] request: { "seq": 0, "type": "request", @@ -2589,22 +2586,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 131 [00:04:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 132 [00:04:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 132 [00:04:33.000] Files (3) +Info 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) -Info 132 [00:04:34.000] ----------------------------------------------- -Info 132 [00:04:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 132 [00:04:36.000] Files (2) +Info 129 [00:04:31.000] ----------------------------------------------- +Info 129 [00:04:32.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 129 [00:04:33.000] Files (2) -Info 132 [00:04:37.000] ----------------------------------------------- -Info 132 [00:04:38.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 132 [00:04:39.000] Files (2) +Info 129 [00:04:34.000] ----------------------------------------------- +Info 129 [00:04:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 129 [00:04:36.000] Files (2) -Info 132 [00:04:40.000] ----------------------------------------------- -Info 132 [00:04:41.000] Open files: -Info 132 [00:04:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 132 [00:04:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 129 [00:04:37.000] ----------------------------------------------- +Info 129 [00:04:38.000] Open files: +Info 129 [00:04:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 129 [00:04:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2645,11 +2642,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 132 [00:04:44.000] response: +Info 129 [00:04:41.000] response: { "responseRequired": false } -Info 133 [00:04:45.000] request: +Info 130 [00:04:42.000] request: { "seq": 0, "type": "request", @@ -2698,20 +2695,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 134 [00:04:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 135 [00:04:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 135 [00:04:48.000] Files (3) +Info 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) -Info 135 [00:04:49.000] ----------------------------------------------- -Info 135 [00:04:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 135 [00:04:51.000] Files (2) +Info 132 [00:04:46.000] ----------------------------------------------- +Info 132 [00:04:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 132 [00:04:48.000] Files (2) -Info 135 [00:04:52.000] ----------------------------------------------- -Info 135 [00:04:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 135 [00:04:54.000] Files (2) +Info 132 [00:04:49.000] ----------------------------------------------- +Info 132 [00:04:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 132 [00:04:51.000] Files (2) -Info 135 [00:04:55.000] ----------------------------------------------- -Info 135 [00:04:56.000] Open files: +Info 132 [00:04:52.000] ----------------------------------------------- +Info 132 [00:04:53.000] Open files: After request PolledWatches:: @@ -2754,11 +2751,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 135 [00:04:57.000] response: +Info 132 [00:04:54.000] response: { "responseRequired": false } -Info 136 [00:04:58.000] request: +Info 133 [00:04:55.000] request: { "seq": 0, "type": "request", @@ -2809,12 +2806,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 137 [00:04:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 138 [00:05:00.000] Search path: /user/username/projects/myproject/random -Info 139 [00:05:01.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 140 [00:05:02.000] `remove Project:: -Info 141 [00:05:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 142 [00:05:04.000] Files (3) +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 +Info 137 [00:04:59.000] `remove Project:: +Info 138 [00:05:00.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 139 [00:05:01.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -2827,19 +2824,19 @@ Info 142 [00:05:04.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 143 [00:05:05.000] ----------------------------------------------- -Info 144 [00:05:06.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 145 [00:05:07.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 146 [00:05:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 147 [00:05:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 148 [00:05:10.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 149 [00:05:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 150 [00:05:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 151 [00:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 152 [00:05:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 153 [00:05:15.000] `remove Project:: -Info 154 [00:05:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 155 [00:05:17.000] Files (2) +Info 140 [00:05:02.000] ----------------------------------------------- +Info 141 [00:05:03.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 142 [00:05:04.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 143 [00:05:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 144 [00:05:06.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 145 [00:05:07.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 146 [00:05:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 147 [00:05:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 148 [00:05:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 149 [00:05:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 150 [00:05:12.000] `remove Project:: +Info 151 [00:05:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 152 [00:05:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2849,26 +2846,26 @@ Info 155 [00:05:17.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 156 [00:05:18.000] ----------------------------------------------- -Info 157 [00:05:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 158 [00:05:20.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 159 [00:05:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 160 [00:05:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 161 [00:05:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 162 [00:05:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 163 [00:05:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 164 [00:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 165 [00:05:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 166 [00:05:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 167 [00:05:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 168 [00:05:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 169 [00:05:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 169 [00:05:32.000] Files (2) - -Info 169 [00:05:33.000] ----------------------------------------------- -Info 169 [00:05:34.000] Open files: -Info 169 [00:05:35.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 169 [00:05:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 153 [00:05:15.000] ----------------------------------------------- +Info 154 [00:05:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 155 [00:05:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 156 [00:05:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 157 [00:05:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 158 [00:05:20.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 159 [00:05:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 160 [00:05:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 161 [00:05:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 162 [00:05:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 163 [00:05:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 164 [00:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 165 [00:05:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 166 [00:05:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 166 [00:05:29.000] Files (2) + +Info 166 [00:05:30.000] ----------------------------------------------- +Info 166 [00:05:31.000] Open files: +Info 166 [00:05:32.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 166 [00:05:33.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2887,7 +2884,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 169 [00:05:37.000] response: +Info 166 [00:05:34.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-deleted.js index 2b9a7aebecebf..15f0ffb8bceac 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,19 +335,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [00:01:49.000] Files (2) +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 +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:47.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +356,22 @@ Info 43 [00:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [00:01:50.000] ----------------------------------------------- -Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [00:01:54.000] Files (3) - -Info 47 [00:01:55.000] ----------------------------------------------- -Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [00:01:57.000] Files (2) - -Info 47 [00:01:58.000] ----------------------------------------------- -Info 47 [00:01:59.000] Open files: -Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:48.000] ----------------------------------------------- +Info 43 [00:01:49.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:50.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:52.000] Files (3) + +Info 45 [00:01:53.000] ----------------------------------------------- +Info 45 [00:01:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:55.000] Files (2) + +Info 45 [00:01:56.000] ----------------------------------------------- +Info 45 [00:01:57.000] Open files: +Info 45 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:02:00.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 45 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +398,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [00:02:04.000] response: +Info 45 [00:02:02.000] response: { "responseRequired": false } -Info 48 [00:02:05.000] request: +Info 46 [00:02:03.000] request: { "seq": 0, "type": "request", @@ -439,11 +437,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 50 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 51 [00:02:08.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +449,16 @@ Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:21.000] Files (2) +Info 52 [00:02:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:02:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +468,26 @@ Info 64 [00:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [00:02:22.000] ----------------------------------------------- -Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:02:24.000] Files (3) - -Info 66 [00:02:25.000] ----------------------------------------------- -Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:27.000] Files (2) - -Info 66 [00:02:28.000] ----------------------------------------------- -Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:30.000] Files (2) - -Info 66 [00:02:31.000] ----------------------------------------------- -Info 66 [00:02:32.000] Open files: -Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:19.000] ----------------------------------------------- +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:21.000] Files (3) + +Info 63 [00:02:22.000] ----------------------------------------------- +Info 63 [00:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 63 [00:02:24.000] Files (2) + +Info 63 [00:02:25.000] ----------------------------------------------- +Info 63 [00:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:27.000] Files (2) + +Info 63 [00:02:28.000] ----------------------------------------------- +Info 63 [00:02:29.000] Open files: +Info 63 [00:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:32.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 63 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 63 [00:02:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +520,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:39.000] response: +Info 63 [00:02:36.000] response: { "responseRequired": false } -Info 67 [00:02:40.000] request: +Info 64 [00:02:37.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +599,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:41.000] response: +Info 65 [00:02:38.000] response: { "response": { "definitions": [ @@ -639,7 +636,7 @@ Info 68 [00:02:41.000] response: }, "responseRequired": true } -Info 69 [00:02:42.000] request: +Info 66 [00:02:39.000] request: { "command": "rename", "arguments": { @@ -682,10 +679,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 +Info 70 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -722,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:47.000] response: +Info 71 [00:02:44.000] response: { "response": { "info": { @@ -803,16 +800,16 @@ Info 74 [00:02:47.000] response: }, "responseRequired": true } -Info 75 [00:02:49.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 76 [00:02:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 77 [00:02:51.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 78 [00:02:52.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 79 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles* -Info 80 [00:02:54.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 81 [00:02:55.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 82 [00:02:56.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 83 [00:02:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 84 [00:02:58.000] request: +Info 72 [00:02:46.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 73 [00:02:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 74 [00:02:48.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 75 [00:02:49.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 76 [00:02:50.000] Scheduled: *ensureProjectForOpenFiles* +Info 77 [00:02:51.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 78 [00:02:52.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 79 [00:02:53.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 80 [00:02:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 81 [00:02:55.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -858,9 +855,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 86 [00:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 87 [00:03:01.000] Different program with same set of files +Info 82 [00:02:56.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 83 [00:02:57.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 84 [00:02:58.000] Different program with same set of files After request PolledWatches:: @@ -895,7 +892,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [00:03:02.000] response: +Info 85 [00:02:59.000] response: { "response": { "definitions": [ @@ -932,7 +929,7 @@ Info 88 [00:03:02.000] response: }, "responseRequired": true } -Info 89 [00:03:03.000] request: +Info 86 [00:03:00.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1011,7 +1008,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:04.000] response: +Info 87 [00:03:01.000] response: { "response": { "definitions": [ @@ -1048,7 +1045,7 @@ Info 90 [00:03:04.000] response: }, "responseRequired": true } -Info 91 [00:03:05.000] request: +Info 88 [00:03:02.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1127,7 +1124,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [00:03:06.000] response: +Info 89 [00:03:03.000] response: { "response": { "definitions": [ @@ -1164,7 +1161,7 @@ Info 92 [00:03:06.000] response: }, "responseRequired": true } -Info 93 [00:03:07.000] request: +Info 90 [00:03:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1243,7 +1240,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [00:03:08.000] response: +Info 91 [00:03:05.000] response: { "response": { "definitions": [ @@ -1280,7 +1277,7 @@ Info 94 [00:03:08.000] response: }, "responseRequired": true } -Info 95 [00:03:09.000] request: +Info 92 [00:03:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1359,7 +1356,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:10.000] response: +Info 93 [00:03:07.000] response: { "response": { "definitions": [ @@ -1396,7 +1393,7 @@ Info 96 [00:03:10.000] response: }, "responseRequired": true } -Info 97 [00:03:11.000] request: +Info 94 [00:03:08.000] request: { "command": "rename", "arguments": { @@ -1441,11 +1438,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 99 [00:03:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 100 [00:03:14.000] Search path: /user/username/projects/myproject/dependency -Info 101 [00:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 102 [00:03:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +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 +Info 98 [00:03:12.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 99 [00:03:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file After request PolledWatches:: @@ -1482,7 +1479,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [00:03:17.000] response: +Info 100 [00:03:14.000] response: { "response": { "info": { @@ -1563,7 +1560,7 @@ Info 103 [00:03:17.000] response: }, "responseRequired": true } -Info 104 [00:03:18.000] request: +Info 101 [00:03:15.000] request: { "command": "rename", "arguments": { @@ -1610,8 +1607,8 @@ FsWatchesRecursive:: /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 +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:: @@ -1648,7 +1645,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 107 [00:03:21.000] response: +Info 104 [00:03:18.000] response: { "response": { "info": { @@ -1729,7 +1726,7 @@ Info 107 [00:03:21.000] response: }, "responseRequired": true } -Info 108 [00:03:22.000] request: +Info 105 [00:03:19.000] request: { "command": "rename", "arguments": { @@ -1776,8 +1773,8 @@ FsWatchesRecursive:: /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 +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:: @@ -1814,7 +1811,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [00:03:25.000] response: +Info 108 [00:03:22.000] response: { "response": { "info": { @@ -1895,7 +1892,7 @@ Info 111 [00:03:25.000] response: }, "responseRequired": true } -Info 112 [00:03:26.000] request: +Info 109 [00:03:23.000] request: { "command": "rename", "arguments": { @@ -1942,8 +1939,8 @@ FsWatchesRecursive:: /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 +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:: @@ -1980,7 +1977,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [00:03:29.000] response: +Info 112 [00:03:26.000] response: { "response": { "info": { @@ -2061,7 +2058,7 @@ Info 115 [00:03:29.000] response: }, "responseRequired": true } -Info 116 [00:03:30.000] request: +Info 113 [00:03:27.000] request: { "command": "rename", "arguments": { @@ -2108,8 +2105,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [00:03:31.000] Search path: /user/username/projects/myproject/dependency -Info 118 [00:03:32.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2146,7 +2143,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 119 [00:03:33.000] response: +Info 116 [00:03:30.000] response: { "response": { "info": { @@ -2227,7 +2224,7 @@ Info 119 [00:03:33.000] response: }, "responseRequired": true } -Info 120 [00:03:34.000] request: +Info 117 [00:03:31.000] request: { "seq": 0, "type": "request", @@ -2272,24 +2269,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 121 [00:03:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 122 [00:03:36.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 122 [00:03:37.000] Files (3) +Info 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) -Info 122 [00:03:38.000] ----------------------------------------------- -Info 122 [00:03:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 122 [00:03:40.000] Files (2) +Info 119 [00:03:35.000] ----------------------------------------------- +Info 119 [00:03:36.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 119 [00:03:37.000] Files (2) -Info 122 [00:03:41.000] ----------------------------------------------- -Info 122 [00:03:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 122 [00:03:43.000] Files (2) +Info 119 [00:03:38.000] ----------------------------------------------- +Info 119 [00:03:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 119 [00:03:40.000] Files (2) -Info 122 [00:03:44.000] ----------------------------------------------- -Info 122 [00:03:45.000] Open files: -Info 122 [00:03:46.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 122 [00:03:47.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 122 [00:03:48.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 122 [00:03:49.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 119 [00:03:41.000] ----------------------------------------------- +Info 119 [00:03:42.000] Open files: +Info 119 [00:03:43.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 119 [00:03:44.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 119 [00:03:45.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 119 [00:03:46.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2328,11 +2325,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 122 [00:03:50.000] response: +Info 119 [00:03:47.000] response: { "responseRequired": false } -Info 123 [00:03:51.000] request: +Info 120 [00:03:48.000] request: { "seq": 0, "type": "request", @@ -2379,29 +2376,29 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 124 [00:03:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 125 [00:03:53.000] Search path: /user/username/projects/myproject/random -Info 126 [00:03:54.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 127 [00:03:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 128 [00:03:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 128 [00:03:57.000] Files (3) - -Info 128 [00:03:58.000] ----------------------------------------------- -Info 128 [00:03:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 128 [00:04:00.000] Files (2) - -Info 128 [00:04:01.000] ----------------------------------------------- -Info 128 [00:04:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 128 [00:04:03.000] Files (2) - -Info 128 [00:04:04.000] ----------------------------------------------- -Info 128 [00:04:05.000] Open files: -Info 128 [00:04:06.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 128 [00:04:07.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 128 [00:04:08.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 128 [00:04:09.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 128 [00:04:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 128 [00:04:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 124 [00:03:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 125 [00:03:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 125 [00:03:54.000] Files (3) + +Info 125 [00:03:55.000] ----------------------------------------------- +Info 125 [00:03:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 125 [00:03:57.000] Files (2) + +Info 125 [00:03:58.000] ----------------------------------------------- +Info 125 [00:03:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 125 [00:04:00.000] Files (2) + +Info 125 [00:04:01.000] ----------------------------------------------- +Info 125 [00:04:02.000] Open files: +Info 125 [00:04:03.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 125 [00:04:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 125 [00:04:05.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 125 [00:04:06.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 125 [00:04:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 125 [00:04:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2436,11 +2433,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 128 [00:04:12.000] response: +Info 125 [00:04:09.000] response: { "responseRequired": false } -Info 129 [00:04:13.000] request: +Info 126 [00:04:10.000] request: { "seq": 0, "type": "request", @@ -2483,24 +2480,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 130 [00:04:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 131 [00:04:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 131 [00:04:16.000] Files (3) +Info 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) -Info 131 [00:04:17.000] ----------------------------------------------- -Info 131 [00:04:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 131 [00:04:19.000] Files (2) +Info 128 [00:04:14.000] ----------------------------------------------- +Info 128 [00:04:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 128 [00:04:16.000] Files (2) -Info 131 [00:04:20.000] ----------------------------------------------- -Info 131 [00:04:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 131 [00:04:22.000] Files (2) +Info 128 [00:04:17.000] ----------------------------------------------- +Info 128 [00:04:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 128 [00:04:19.000] Files (2) -Info 131 [00:04:23.000] ----------------------------------------------- -Info 131 [00:04:24.000] Open files: -Info 131 [00:04:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 131 [00:04:26.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 131 [00:04:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 131 [00:04:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 128 [00:04:20.000] ----------------------------------------------- +Info 128 [00:04:21.000] Open files: +Info 128 [00:04:22.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 128 [00:04:23.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 128 [00:04:24.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 128 [00:04:25.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2537,11 +2534,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 131 [00:04:29.000] response: +Info 128 [00:04:26.000] response: { "responseRequired": false } -Info 132 [00:04:30.000] request: +Info 129 [00:04:27.000] request: { "seq": 0, "type": "request", @@ -2586,22 +2583,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 133 [00:04:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 134 [00:04:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 134 [00:04:33.000] Files (3) +Info 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) -Info 134 [00:04:34.000] ----------------------------------------------- -Info 134 [00:04:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 134 [00:04:36.000] Files (2) +Info 131 [00:04:31.000] ----------------------------------------------- +Info 131 [00:04:32.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 131 [00:04:33.000] Files (2) -Info 134 [00:04:37.000] ----------------------------------------------- -Info 134 [00:04:38.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 134 [00:04:39.000] Files (2) +Info 131 [00:04:34.000] ----------------------------------------------- +Info 131 [00:04:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 131 [00:04:36.000] Files (2) -Info 134 [00:04:40.000] ----------------------------------------------- -Info 134 [00:04:41.000] Open files: -Info 134 [00:04:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 134 [00:04:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 131 [00:04:37.000] ----------------------------------------------- +Info 131 [00:04:38.000] Open files: +Info 131 [00:04:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 131 [00:04:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2640,11 +2637,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 134 [00:04:44.000] response: +Info 131 [00:04:41.000] response: { "responseRequired": false } -Info 135 [00:04:45.000] request: +Info 132 [00:04:42.000] request: { "seq": 0, "type": "request", @@ -2691,20 +2688,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 136 [00:04:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 137 [00:04:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 137 [00:04:48.000] Files (3) +Info 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) -Info 137 [00:04:49.000] ----------------------------------------------- -Info 137 [00:04:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 137 [00:04:51.000] Files (2) +Info 134 [00:04:46.000] ----------------------------------------------- +Info 134 [00:04:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 134 [00:04:48.000] Files (2) -Info 137 [00:04:52.000] ----------------------------------------------- -Info 137 [00:04:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 137 [00:04:54.000] Files (2) +Info 134 [00:04:49.000] ----------------------------------------------- +Info 134 [00:04:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 134 [00:04:51.000] Files (2) -Info 137 [00:04:55.000] ----------------------------------------------- -Info 137 [00:04:56.000] Open files: +Info 134 [00:04:52.000] ----------------------------------------------- +Info 134 [00:04:53.000] Open files: After request PolledWatches:: @@ -2745,11 +2742,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 137 [00:04:57.000] response: +Info 134 [00:04:54.000] response: { "responseRequired": false } -Info 138 [00:04:58.000] request: +Info 135 [00:04:55.000] request: { "seq": 0, "type": "request", @@ -2798,12 +2795,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 139 [00:04:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 140 [00:05:00.000] Search path: /user/username/projects/myproject/random -Info 141 [00:05:01.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 142 [00:05:02.000] `remove Project:: -Info 143 [00:05:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 144 [00:05:04.000] Files (3) +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 +Info 139 [00:04:59.000] `remove Project:: +Info 140 [00:05:00.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 141 [00:05:01.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -2816,19 +2813,19 @@ Info 144 [00:05:04.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 145 [00:05:05.000] ----------------------------------------------- -Info 146 [00:05:06.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 147 [00:05:07.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 148 [00:05:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 149 [00:05:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 150 [00:05:10.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 151 [00:05:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 152 [00:05:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 153 [00:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 154 [00:05:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 155 [00:05:15.000] `remove Project:: -Info 156 [00:05:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 157 [00:05:17.000] Files (2) +Info 142 [00:05:02.000] ----------------------------------------------- +Info 143 [00:05:03.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 144 [00:05:04.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 145 [00:05:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 146 [00:05:06.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 147 [00:05:07.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 148 [00:05:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 149 [00:05:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 150 [00:05:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 151 [00:05:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 152 [00:05:12.000] `remove Project:: +Info 153 [00:05:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 154 [00:05:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2838,24 +2835,24 @@ Info 157 [00:05:17.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 158 [00:05:18.000] ----------------------------------------------- -Info 159 [00:05:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 160 [00:05:20.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 161 [00:05:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 162 [00:05:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 163 [00:05:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 164 [00:05:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 165 [00:05:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 166 [00:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 167 [00:05:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 168 [00:05:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 169 [00:05:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 169 [00:05:30.000] Files (2) - -Info 169 [00:05:31.000] ----------------------------------------------- -Info 169 [00:05:32.000] Open files: -Info 169 [00:05:33.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 169 [00:05:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 155 [00:05:15.000] ----------------------------------------------- +Info 156 [00:05:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 157 [00:05:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 158 [00:05:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 159 [00:05:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 160 [00:05:20.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 161 [00:05:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 162 [00:05:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 163 [00:05:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 164 [00:05:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 165 [00:05:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 166 [00:05:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 166 [00:05:27.000] Files (2) + +Info 166 [00:05:28.000] ----------------------------------------------- +Info 166 [00:05:29.000] Open files: +Info 166 [00:05:30.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 166 [00:05:31.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2874,7 +2871,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 169 [00:05:35.000] response: +Info 166 [00:05:32.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dts-not-present.js index 92d7e5e1f44d9..f0e709d180c1d 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,9 +214,8 @@ Info 6 [00:01:07.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -227,20 +226,20 @@ Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:26.000] Files (3) +Info 11 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -253,16 +252,16 @@ Info 25 [00:01:26.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:27.000] ----------------------------------------------- -Info 27 [00:01:28.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:31.000] Files (3) +Info 25 [00:01:26.000] ----------------------------------------------- +Info 26 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:30.000] Files (3) -Info 29 [00:01:32.000] ----------------------------------------------- -Info 29 [00:01:33.000] Open files: -Info 29 [00:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:31.000] ----------------------------------------------- +Info 28 [00:01:32.000] Open files: +Info 28 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -289,11 +288,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:36.000] response: +Info 28 [00:01:35.000] response: { "responseRequired": false } -Info 30 [00:01:37.000] request: +Info 29 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -328,19 +327,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [00:01:39.000] Search path: /user/username/projects/myproject/dependency -Info 33 [00:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 41 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [00:01:50.000] Files (2) +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 +Info 33 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -350,22 +348,22 @@ Info 43 [00:01:50.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [00:01:51.000] ----------------------------------------------- -Info 45 [00:01:52.000] Search path: /user/username/projects/myproject/dependency -Info 46 [00:01:53.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [00:01:55.000] Files (3) - -Info 47 [00:01:56.000] ----------------------------------------------- -Info 47 [00:01:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [00:01:58.000] Files (2) - -Info 47 [00:01:59.000] ----------------------------------------------- -Info 47 [00:02:00.000] Open files: -Info 47 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [00:02:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [00:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:49.000] ----------------------------------------------- +Info 43 [00:01:50.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:51.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:53.000] Files (3) + +Info 45 [00:01:54.000] ----------------------------------------------- +Info 45 [00:01:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:56.000] Files (2) + +Info 45 [00:01:57.000] ----------------------------------------------- +Info 45 [00:01:58.000] Open files: +Info 45 [00:01:59.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:02:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:02:01.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 45 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -392,11 +390,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [00:02:05.000] response: +Info 45 [00:02:03.000] response: { "responseRequired": false } -Info 48 [00:02:06.000] request: +Info 46 [00:02:04.000] request: { "seq": 0, "type": "request", @@ -431,11 +429,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [00:02:07.000] Search path: /user/username/projects/myproject/random -Info 50 [00:02:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:09.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [00:02:11.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 50 [00:02:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 51 [00:02:09.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -443,17 +441,16 @@ Info 53 [00:02:11.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [00:02:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [00:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [00:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [00:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:22.000] Files (2) +Info 52 [00:02:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:02:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:19.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -463,26 +460,26 @@ Info 64 [00:02:22.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [00:02:23.000] ----------------------------------------------- -Info 66 [00:02:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:02:25.000] Files (3) - -Info 66 [00:02:26.000] ----------------------------------------------- -Info 66 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:28.000] Files (2) - -Info 66 [00:02:29.000] ----------------------------------------------- -Info 66 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:31.000] Files (2) - -Info 66 [00:02:32.000] ----------------------------------------------- -Info 66 [00:02:33.000] Open files: -Info 66 [00:02:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [00:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [00:02:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [00:02:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:20.000] ----------------------------------------------- +Info 63 [00:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:22.000] Files (3) + +Info 63 [00:02:23.000] ----------------------------------------------- +Info 63 [00:02:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 63 [00:02:25.000] Files (2) + +Info 63 [00:02:26.000] ----------------------------------------------- +Info 63 [00:02:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:28.000] Files (2) + +Info 63 [00:02:29.000] ----------------------------------------------- +Info 63 [00:02:30.000] Open files: +Info 63 [00:02:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:33.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 63 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 63 [00:02:35.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -515,11 +512,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:40.000] response: +Info 63 [00:02:37.000] response: { "responseRequired": false } -Info 67 [00:02:41.000] request: +Info 64 [00:02:38.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -594,7 +591,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:42.000] response: +Info 65 [00:02:39.000] response: { "response": { "definitions": [ @@ -631,7 +628,7 @@ Info 68 [00:02:42.000] response: }, "responseRequired": true } -Info 69 [00:02:43.000] request: +Info 66 [00:02:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -706,7 +703,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:44.000] response: +Info 67 [00:02:41.000] response: { "response": { "definitions": [ @@ -743,7 +740,7 @@ Info 70 [00:02:44.000] response: }, "responseRequired": true } -Info 71 [00:02:45.000] request: +Info 68 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -818,7 +815,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:46.000] response: +Info 69 [00:02:43.000] response: { "response": { "definitions": [ @@ -855,7 +852,7 @@ Info 72 [00:02:46.000] response: }, "responseRequired": true } -Info 73 [00:02:47.000] request: +Info 70 [00:02:44.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -930,7 +927,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:48.000] response: +Info 71 [00:02:45.000] response: { "response": { "definitions": [ @@ -967,7 +964,7 @@ Info 74 [00:02:48.000] response: }, "responseRequired": true } -Info 75 [00:02:49.000] request: +Info 72 [00:02:46.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1042,7 +1039,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:50.000] response: +Info 73 [00:02:47.000] response: { "response": { "definitions": [ @@ -1079,7 +1076,7 @@ Info 76 [00:02:50.000] response: }, "responseRequired": true } -Info 77 [00:02:51.000] request: +Info 74 [00:02:48.000] request: { "command": "rename", "arguments": { @@ -1122,9 +1119,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [00:02:52.000] Search path: /user/username/projects/myproject/dependency -Info 79 [00:02:53.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 80 [00:02:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +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 After request PolledWatches:: @@ -1159,7 +1156,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [00:02:55.000] response: +Info 78 [00:02:52.000] response: { "response": { "info": { @@ -1240,7 +1237,7 @@ Info 81 [00:02:55.000] response: }, "responseRequired": true } -Info 82 [00:02:56.000] request: +Info 79 [00:02:53.000] request: { "command": "rename", "arguments": { @@ -1285,8 +1282,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [00:02:57.000] Search path: /user/username/projects/myproject/dependency -Info 84 [00:02:58.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1321,7 +1318,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [00:02:59.000] response: +Info 82 [00:02:56.000] response: { "response": { "info": { @@ -1402,7 +1399,7 @@ Info 85 [00:02:59.000] response: }, "responseRequired": true } -Info 86 [00:03:00.000] request: +Info 83 [00:02:57.000] request: { "command": "rename", "arguments": { @@ -1447,8 +1444,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [00:03:01.000] Search path: /user/username/projects/myproject/dependency -Info 88 [00:03:02.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1483,7 +1480,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:03.000] response: +Info 86 [00:03:00.000] response: { "response": { "info": { @@ -1564,7 +1561,7 @@ Info 89 [00:03:03.000] response: }, "responseRequired": true } -Info 90 [00:03:04.000] request: +Info 87 [00:03:01.000] request: { "command": "rename", "arguments": { @@ -1609,8 +1606,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [00:03:05.000] Search path: /user/username/projects/myproject/dependency -Info 92 [00:03:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1645,7 +1642,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [00:03:07.000] response: +Info 90 [00:03:04.000] response: { "response": { "info": { @@ -1726,7 +1723,7 @@ Info 93 [00:03:07.000] response: }, "responseRequired": true } -Info 94 [00:03:08.000] request: +Info 91 [00:03:05.000] request: { "command": "rename", "arguments": { @@ -1771,8 +1768,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [00:03:09.000] Search path: /user/username/projects/myproject/dependency -Info 96 [00:03:10.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1807,7 +1804,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [00:03:11.000] response: +Info 94 [00:03:08.000] response: { "response": { "info": { @@ -1888,7 +1885,7 @@ Info 97 [00:03:11.000] response: }, "responseRequired": true } -Info 98 [00:03:12.000] request: +Info 95 [00:03:09.000] request: { "seq": 0, "type": "request", @@ -1931,24 +1928,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [00:03:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 100 [00:03:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 100 [00:03:15.000] Files (3) +Info 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) -Info 100 [00:03:16.000] ----------------------------------------------- -Info 100 [00:03:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 100 [00:03:18.000] Files (2) +Info 97 [00:03:13.000] ----------------------------------------------- +Info 97 [00:03:14.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 97 [00:03:15.000] Files (2) -Info 100 [00:03:19.000] ----------------------------------------------- -Info 100 [00:03:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 100 [00:03:21.000] Files (2) +Info 97 [00:03:16.000] ----------------------------------------------- +Info 97 [00:03:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 97 [00:03:18.000] Files (2) -Info 100 [00:03:22.000] ----------------------------------------------- -Info 100 [00:03:23.000] Open files: -Info 100 [00:03:24.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 100 [00:03:25.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 100 [00:03:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 100 [00:03:27.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 97 [00:03:19.000] ----------------------------------------------- +Info 97 [00:03:20.000] Open files: +Info 97 [00:03:21.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 97 [00:03:22.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 97 [00:03:23.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 97 [00:03:24.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1985,11 +1982,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:28.000] response: +Info 97 [00:03:25.000] response: { "responseRequired": false } -Info 101 [00:03:29.000] request: +Info 98 [00:03:26.000] request: { "seq": 0, "type": "request", @@ -2034,28 +2031,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 103 [00:03:31.000] Search path: /user/username/projects/myproject/random -Info 104 [00:03:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 105 [00:03:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 105 [00:03:34.000] Files (3) - -Info 105 [00:03:35.000] ----------------------------------------------- -Info 105 [00:03:36.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 105 [00:03:37.000] Files (2) - -Info 105 [00:03:38.000] ----------------------------------------------- -Info 105 [00:03:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 105 [00:03:40.000] Files (2) - -Info 105 [00:03:41.000] ----------------------------------------------- -Info 105 [00:03:42.000] Open files: -Info 105 [00:03:43.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 105 [00:03:44.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 105 [00:03:45.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 105 [00:03:46.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 105 [00:03:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 105 [00:03:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 102 [00:03:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 102 [00:03:31.000] Files (3) + +Info 102 [00:03:32.000] ----------------------------------------------- +Info 102 [00:03:33.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 102 [00:03:34.000] Files (2) + +Info 102 [00:03:35.000] ----------------------------------------------- +Info 102 [00:03:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 102 [00:03:37.000] Files (2) + +Info 102 [00:03:38.000] ----------------------------------------------- +Info 102 [00:03:39.000] Open files: +Info 102 [00:03:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 102 [00:03:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 102 [00:03:42.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 102 [00:03:43.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 102 [00:03:44.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 102 [00:03:45.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2090,11 +2087,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 105 [00:03:49.000] response: +Info 102 [00:03:46.000] response: { "responseRequired": false } -Info 106 [00:03:50.000] request: +Info 103 [00:03:47.000] request: { "seq": 0, "type": "request", @@ -2137,24 +2134,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 107 [00:03:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 108 [00:03:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 108 [00:03:53.000] Files (3) +Info 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) -Info 108 [00:03:54.000] ----------------------------------------------- -Info 108 [00:03:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 108 [00:03:56.000] Files (2) +Info 105 [00:03:51.000] ----------------------------------------------- +Info 105 [00:03:52.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 105 [00:03:53.000] Files (2) -Info 108 [00:03:57.000] ----------------------------------------------- -Info 108 [00:03:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 108 [00:03:59.000] Files (2) +Info 105 [00:03:54.000] ----------------------------------------------- +Info 105 [00:03:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 105 [00:03:56.000] Files (2) -Info 108 [00:04:00.000] ----------------------------------------------- -Info 108 [00:04:01.000] Open files: -Info 108 [00:04:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 108 [00:04:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 108 [00:04:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 108 [00:04:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 105 [00:03:57.000] ----------------------------------------------- +Info 105 [00:03:58.000] Open files: +Info 105 [00:03:59.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 105 [00:04:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 105 [00:04:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 105 [00:04:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2191,11 +2188,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:04:06.000] response: +Info 105 [00:04:03.000] response: { "responseRequired": false } -Info 109 [00:04:07.000] request: +Info 106 [00:04:04.000] request: { "seq": 0, "type": "request", @@ -2240,22 +2237,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:04:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 111 [00:04:09.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 111 [00:04:10.000] Files (3) +Info 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) -Info 111 [00:04:11.000] ----------------------------------------------- -Info 111 [00:04:12.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 111 [00:04:13.000] Files (2) +Info 108 [00:04:08.000] ----------------------------------------------- +Info 108 [00:04:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 108 [00:04:10.000] Files (2) -Info 111 [00:04:14.000] ----------------------------------------------- -Info 111 [00:04:15.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 111 [00:04:16.000] Files (2) +Info 108 [00:04:11.000] ----------------------------------------------- +Info 108 [00:04:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 108 [00:04:13.000] Files (2) -Info 111 [00:04:17.000] ----------------------------------------------- -Info 111 [00:04:18.000] Open files: -Info 111 [00:04:19.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 111 [00:04:20.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 108 [00:04:14.000] ----------------------------------------------- +Info 108 [00:04:15.000] Open files: +Info 108 [00:04:16.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 108 [00:04:17.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2294,11 +2291,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [00:04:21.000] response: +Info 108 [00:04:18.000] response: { "responseRequired": false } -Info 112 [00:04:22.000] request: +Info 109 [00:04:19.000] request: { "seq": 0, "type": "request", @@ -2345,20 +2342,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [00:04:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 114 [00:04:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 114 [00:04:25.000] Files (3) +Info 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) -Info 114 [00:04:26.000] ----------------------------------------------- -Info 114 [00:04:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 114 [00:04:28.000] Files (2) +Info 111 [00:04:23.000] ----------------------------------------------- +Info 111 [00:04:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 111 [00:04:25.000] Files (2) -Info 114 [00:04:29.000] ----------------------------------------------- -Info 114 [00:04:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 114 [00:04:31.000] Files (2) +Info 111 [00:04:26.000] ----------------------------------------------- +Info 111 [00:04:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 111 [00:04:28.000] Files (2) -Info 114 [00:04:32.000] ----------------------------------------------- -Info 114 [00:04:33.000] Open files: +Info 111 [00:04:29.000] ----------------------------------------------- +Info 111 [00:04:30.000] Open files: After request PolledWatches:: @@ -2399,11 +2396,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [00:04:34.000] response: +Info 111 [00:04:31.000] response: { "responseRequired": false } -Info 115 [00:04:35.000] request: +Info 112 [00:04:32.000] request: { "seq": 0, "type": "request", @@ -2452,12 +2449,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [00:04:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 117 [00:04:37.000] Search path: /user/username/projects/myproject/random -Info 118 [00:04:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 119 [00:04:39.000] `remove Project:: -Info 120 [00:04:40.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 121 [00:04:41.000] Files (3) +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 +Info 116 [00:04:36.000] `remove Project:: +Info 117 [00:04:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 118 [00:04:38.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -2470,19 +2467,19 @@ Info 121 [00:04:41.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 122 [00:04:42.000] ----------------------------------------------- -Info 123 [00:04:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 124 [00:04:44.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 125 [00:04:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 126 [00:04:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 127 [00:04:47.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 128 [00:04:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 129 [00:04:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 130 [00:04:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 131 [00:04:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 132 [00:04:52.000] `remove Project:: -Info 133 [00:04:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 134 [00:04:54.000] Files (2) +Info 119 [00:04:39.000] ----------------------------------------------- +Info 120 [00:04:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 121 [00:04:41.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 122 [00:04:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 123 [00:04:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 124 [00:04:44.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 125 [00:04:45.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 126 [00:04:46.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 127 [00:04:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 128 [00:04:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 129 [00:04:49.000] `remove Project:: +Info 130 [00:04:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 131 [00:04:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2492,24 +2489,24 @@ Info 134 [00:04:54.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 135 [00:04:55.000] ----------------------------------------------- -Info 136 [00:04:56.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 137 [00:04:57.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 138 [00:04:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 139 [00:04:59.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 140 [00:05:00.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 141 [00:05:01.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 142 [00:05:02.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 143 [00:05:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 144 [00:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 145 [00:05:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 146 [00:05:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 146 [00:05:07.000] Files (2) - -Info 146 [00:05:08.000] ----------------------------------------------- -Info 146 [00:05:09.000] Open files: -Info 146 [00:05:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 146 [00:05:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 132 [00:04:52.000] ----------------------------------------------- +Info 133 [00:04:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 134 [00:04:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 135 [00:04:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 136 [00:04:56.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 137 [00:04:57.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 138 [00:04:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 139 [00:04:59.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 140 [00:05:00.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 141 [00:05:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 142 [00:05:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 143 [00:05:03.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 143 [00:05:04.000] Files (2) + +Info 143 [00:05:05.000] ----------------------------------------------- +Info 143 [00:05:06.000] Open files: +Info 143 [00:05:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 143 [00:05:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2528,7 +2525,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 146 [00:05:12.000] response: +Info 143 [00:05:09.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js index 393f1cdd5e96d..88dbf7076b4ab 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,19 +335,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [00:01:49.000] Files (2) +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 +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:47.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +356,22 @@ Info 43 [00:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [00:01:50.000] ----------------------------------------------- -Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [00:01:54.000] Files (3) - -Info 47 [00:01:55.000] ----------------------------------------------- -Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [00:01:57.000] Files (2) - -Info 47 [00:01:58.000] ----------------------------------------------- -Info 47 [00:01:59.000] Open files: -Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:48.000] ----------------------------------------------- +Info 43 [00:01:49.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:50.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:52.000] Files (3) + +Info 45 [00:01:53.000] ----------------------------------------------- +Info 45 [00:01:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:55.000] Files (2) + +Info 45 [00:01:56.000] ----------------------------------------------- +Info 45 [00:01:57.000] Open files: +Info 45 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:02:00.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 45 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +398,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [00:02:04.000] response: +Info 45 [00:02:02.000] response: { "responseRequired": false } -Info 48 [00:02:05.000] request: +Info 46 [00:02:03.000] request: { "seq": 0, "type": "request", @@ -439,11 +437,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 50 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 51 [00:02:08.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +449,16 @@ Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:21.000] Files (2) +Info 52 [00:02:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:02:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +468,26 @@ Info 64 [00:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [00:02:22.000] ----------------------------------------------- -Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:02:24.000] Files (3) - -Info 66 [00:02:25.000] ----------------------------------------------- -Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:27.000] Files (2) - -Info 66 [00:02:28.000] ----------------------------------------------- -Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:30.000] Files (2) - -Info 66 [00:02:31.000] ----------------------------------------------- -Info 66 [00:02:32.000] Open files: -Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:19.000] ----------------------------------------------- +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:21.000] Files (3) + +Info 63 [00:02:22.000] ----------------------------------------------- +Info 63 [00:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 63 [00:02:24.000] Files (2) + +Info 63 [00:02:25.000] ----------------------------------------------- +Info 63 [00:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:27.000] Files (2) + +Info 63 [00:02:28.000] ----------------------------------------------- +Info 63 [00:02:29.000] Open files: +Info 63 [00:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:32.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 63 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 63 [00:02:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +520,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:39.000] response: +Info 63 [00:02:36.000] response: { "responseRequired": false } -Info 67 [00:02:40.000] request: +Info 64 [00:02:37.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +599,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:41.000] response: +Info 65 [00:02:38.000] response: { "response": { "definitions": [ @@ -639,7 +636,7 @@ Info 68 [00:02:41.000] response: }, "responseRequired": true } -Info 69 [00:02:42.000] request: +Info 66 [00:02:39.000] request: { "command": "rename", "arguments": { @@ -682,10 +679,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 +Info 70 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -722,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:47.000] response: +Info 71 [00:02:44.000] response: { "response": { "info": { @@ -803,11 +800,11 @@ Info 74 [00:02:47.000] response: }, "responseRequired": true } -Info 75 [00:02:51.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 76 [00:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 77 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 78 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 79 [00:02:55.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 72 [00:02:48.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 73 [00:02:49.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 74 [00:02:50.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 75 [00:02:51.000] Scheduled: *ensureProjectForOpenFiles* +Info 76 [00:02:52.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts.map] {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} @@ -847,54 +844,54 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:02:56.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 81 [00:02:57.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 82 [00:02:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 83 [00:02:59.000] Different program with same set of files -Info 84 [00:03:00.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 85 [00:03:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 86 [00:03:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 87 [00:03:03.000] Running: *ensureProjectForOpenFiles* -Info 88 [00:03:04.000] Before ensureProjectForOpenFiles: -Info 89 [00:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 89 [00:03:06.000] Files (3) - -Info 89 [00:03:07.000] ----------------------------------------------- -Info 89 [00:03:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 89 [00:03:09.000] Files (2) - -Info 89 [00:03:10.000] ----------------------------------------------- -Info 89 [00:03:11.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 89 [00:03:12.000] Files (2) - -Info 89 [00:03:13.000] ----------------------------------------------- -Info 89 [00:03:14.000] Open files: -Info 89 [00:03:15.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 89 [00:03:16.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 89 [00:03:17.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 89 [00:03:18.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 89 [00:03:19.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 89 [00:03:20.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 89 [00:03:21.000] After ensureProjectForOpenFiles: -Info 90 [00:03:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 90 [00:03:23.000] Files (3) - -Info 90 [00:03:24.000] ----------------------------------------------- -Info 90 [00:03:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 90 [00:03:26.000] Files (2) - -Info 90 [00:03:27.000] ----------------------------------------------- -Info 90 [00:03:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 90 [00:03:29.000] Files (2) - -Info 90 [00:03:30.000] ----------------------------------------------- -Info 90 [00:03:31.000] Open files: -Info 90 [00:03:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 90 [00:03:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 90 [00:03:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 90 [00:03:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 90 [00:03:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 90 [00:03:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 80 [00:02:56.000] Different program with same set of files +Info 81 [00:02:57.000] Running: /user/username/projects/myproject/dependency/tsconfig.json +Info 82 [00:02:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 83 [00:02:59.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 84 [00:03:00.000] Running: *ensureProjectForOpenFiles* +Info 85 [00:03:01.000] Before ensureProjectForOpenFiles: +Info 86 [00:03:02.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 86 [00:03:03.000] Files (3) + +Info 86 [00:03:04.000] ----------------------------------------------- +Info 86 [00:03:05.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 86 [00:03:06.000] Files (2) + +Info 86 [00:03:07.000] ----------------------------------------------- +Info 86 [00:03:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 86 [00:03:09.000] Files (2) + +Info 86 [00:03:10.000] ----------------------------------------------- +Info 86 [00:03:11.000] Open files: +Info 86 [00:03:12.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 86 [00:03:13.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 86 [00:03:14.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 86 [00:03:15.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 86 [00:03:16.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 86 [00:03:17.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 86 [00:03:18.000] After ensureProjectForOpenFiles: +Info 87 [00:03:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 87 [00:03:20.000] Files (3) + +Info 87 [00:03:21.000] ----------------------------------------------- +Info 87 [00:03:22.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 87 [00:03:23.000] Files (2) + +Info 87 [00:03:24.000] ----------------------------------------------- +Info 87 [00:03:25.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 87 [00:03:26.000] Files (2) + +Info 87 [00:03:27.000] ----------------------------------------------- +Info 87 [00:03:28.000] Open files: +Info 87 [00:03:29.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 87 [00:03:30.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 87 [00:03:31.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 87 [00:03:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 87 [00:03:33.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 87 [00:03:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -931,7 +928,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:38.000] request: +Info 87 [00:03:35.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1014,7 +1011,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [00:03:39.000] response: +Info 88 [00:03:36.000] response: { "response": { "definitions": [ @@ -1051,7 +1048,7 @@ Info 91 [00:03:39.000] response: }, "responseRequired": true } -Info 92 [00:03:40.000] request: +Info 89 [00:03:37.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1134,7 +1131,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [00:03:41.000] response: +Info 90 [00:03:38.000] response: { "response": { "definitions": [ @@ -1171,7 +1168,7 @@ Info 93 [00:03:41.000] response: }, "responseRequired": true } -Info 94 [00:03:42.000] request: +Info 91 [00:03:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1254,7 +1251,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [00:03:43.000] response: +Info 92 [00:03:40.000] response: { "response": { "definitions": [ @@ -1291,7 +1288,7 @@ Info 95 [00:03:43.000] response: }, "responseRequired": true } -Info 96 [00:03:44.000] request: +Info 93 [00:03:41.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1374,7 +1371,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [00:03:45.000] response: +Info 94 [00:03:42.000] response: { "response": { "definitions": [ @@ -1411,7 +1408,7 @@ Info 97 [00:03:45.000] response: }, "responseRequired": true } -Info 98 [00:03:46.000] request: +Info 95 [00:03:43.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1494,7 +1491,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [00:03:47.000] response: +Info 96 [00:03:44.000] response: { "response": { "definitions": [ @@ -1531,7 +1528,7 @@ Info 99 [00:03:47.000] response: }, "responseRequired": true } -Info 100 [00:03:48.000] request: +Info 97 [00:03:45.000] request: { "command": "rename", "arguments": { @@ -1578,8 +1575,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [00:03:49.000] Search path: /user/username/projects/myproject/dependency -Info 102 [00:03:50.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1616,7 +1613,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [00:03:51.000] response: +Info 100 [00:03:48.000] response: { "response": { "info": { @@ -1697,7 +1694,7 @@ Info 103 [00:03:51.000] response: }, "responseRequired": true } -Info 104 [00:03:52.000] request: +Info 101 [00:03:49.000] request: { "command": "rename", "arguments": { @@ -1744,8 +1741,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 105 [00:03:53.000] Search path: /user/username/projects/myproject/dependency -Info 106 [00:03:54.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1782,7 +1779,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 107 [00:03:55.000] response: +Info 104 [00:03:52.000] response: { "response": { "info": { @@ -1863,7 +1860,7 @@ Info 107 [00:03:55.000] response: }, "responseRequired": true } -Info 108 [00:03:56.000] request: +Info 105 [00:03:53.000] request: { "command": "rename", "arguments": { @@ -1910,8 +1907,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [00:03:57.000] Search path: /user/username/projects/myproject/dependency -Info 110 [00:03:58.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1948,7 +1945,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [00:03:59.000] response: +Info 108 [00:03:56.000] response: { "response": { "info": { @@ -2029,7 +2026,7 @@ Info 111 [00:03:59.000] response: }, "responseRequired": true } -Info 112 [00:04:00.000] request: +Info 109 [00:03:57.000] request: { "command": "rename", "arguments": { @@ -2076,8 +2073,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [00:04:01.000] Search path: /user/username/projects/myproject/dependency -Info 114 [00:04:02.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2114,7 +2111,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [00:04:03.000] response: +Info 112 [00:04:00.000] response: { "response": { "info": { @@ -2195,7 +2192,7 @@ Info 115 [00:04:03.000] response: }, "responseRequired": true } -Info 116 [00:04:04.000] request: +Info 113 [00:04:01.000] request: { "command": "rename", "arguments": { @@ -2242,8 +2239,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [00:04:05.000] Search path: /user/username/projects/myproject/dependency -Info 118 [00:04:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2280,7 +2277,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 119 [00:04:07.000] response: +Info 116 [00:04:04.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-changes.js index 154b9b7027f69..efecef1a3bf8f 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,19 +335,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [00:01:49.000] Files (2) +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 +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:47.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +356,22 @@ Info 43 [00:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [00:01:50.000] ----------------------------------------------- -Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [00:01:54.000] Files (3) - -Info 47 [00:01:55.000] ----------------------------------------------- -Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [00:01:57.000] Files (2) - -Info 47 [00:01:58.000] ----------------------------------------------- -Info 47 [00:01:59.000] Open files: -Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:48.000] ----------------------------------------------- +Info 43 [00:01:49.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:50.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:52.000] Files (3) + +Info 45 [00:01:53.000] ----------------------------------------------- +Info 45 [00:01:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:55.000] Files (2) + +Info 45 [00:01:56.000] ----------------------------------------------- +Info 45 [00:01:57.000] Open files: +Info 45 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:02:00.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 45 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +398,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [00:02:04.000] response: +Info 45 [00:02:02.000] response: { "responseRequired": false } -Info 48 [00:02:05.000] request: +Info 46 [00:02:03.000] request: { "seq": 0, "type": "request", @@ -439,11 +437,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 50 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 51 [00:02:08.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +449,16 @@ Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:21.000] Files (2) +Info 52 [00:02:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:02:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +468,26 @@ Info 64 [00:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [00:02:22.000] ----------------------------------------------- -Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:02:24.000] Files (3) - -Info 66 [00:02:25.000] ----------------------------------------------- -Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:27.000] Files (2) - -Info 66 [00:02:28.000] ----------------------------------------------- -Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:30.000] Files (2) - -Info 66 [00:02:31.000] ----------------------------------------------- -Info 66 [00:02:32.000] Open files: -Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:19.000] ----------------------------------------------- +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:21.000] Files (3) + +Info 63 [00:02:22.000] ----------------------------------------------- +Info 63 [00:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 63 [00:02:24.000] Files (2) + +Info 63 [00:02:25.000] ----------------------------------------------- +Info 63 [00:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:27.000] Files (2) + +Info 63 [00:02:28.000] ----------------------------------------------- +Info 63 [00:02:29.000] Open files: +Info 63 [00:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:32.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 63 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 63 [00:02:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +520,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:39.000] response: +Info 63 [00:02:36.000] response: { "responseRequired": false } -Info 67 [00:02:40.000] request: +Info 64 [00:02:37.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +599,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:41.000] response: +Info 65 [00:02:38.000] response: { "response": { "definitions": [ @@ -639,7 +636,7 @@ Info 68 [00:02:41.000] response: }, "responseRequired": true } -Info 69 [00:02:42.000] request: +Info 66 [00:02:39.000] request: { "command": "rename", "arguments": { @@ -682,10 +679,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 +Info 70 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -722,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:47.000] response: +Info 71 [00:02:44.000] response: { "response": { "info": { @@ -803,12 +800,12 @@ Info 74 [00:02:47.000] response: }, "responseRequired": true } -Info 75 [00:02:51.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 76 [00:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 77 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 78 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 79 [00:02:55.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 80 [00:02:56.000] request: +Info 72 [00:02:48.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 73 [00:02:49.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 74 [00:02:50.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 75 [00:02:51.000] Scheduled: *ensureProjectForOpenFiles* +Info 76 [00:02:52.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 77 [00:02:53.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -858,9 +855,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [00:02:57.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 82 [00:02:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 83 [00:02:59.000] Different program with same set of files +Info 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:: @@ -897,7 +894,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:03:00.000] response: +Info 81 [00:02:57.000] response: { "response": { "definitions": [ @@ -934,7 +931,7 @@ Info 84 [00:03:00.000] response: }, "responseRequired": true } -Info 85 [00:03:01.000] request: +Info 82 [00:02:58.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1017,7 +1014,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:02.000] response: +Info 83 [00:02:59.000] response: { "response": { "definitions": [ @@ -1054,7 +1051,7 @@ Info 86 [00:03:02.000] response: }, "responseRequired": true } -Info 87 [00:03:03.000] request: +Info 84 [00:03:00.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1137,7 +1134,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [00:03:04.000] response: +Info 85 [00:03:01.000] response: { "response": { "definitions": [ @@ -1174,7 +1171,7 @@ Info 88 [00:03:04.000] response: }, "responseRequired": true } -Info 89 [00:03:05.000] request: +Info 86 [00:03:02.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1257,7 +1254,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:06.000] response: +Info 87 [00:03:03.000] response: { "response": { "definitions": [ @@ -1294,7 +1291,7 @@ Info 90 [00:03:06.000] response: }, "responseRequired": true } -Info 91 [00:03:07.000] request: +Info 88 [00:03:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1377,7 +1374,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [00:03:08.000] response: +Info 89 [00:03:05.000] response: { "response": { "definitions": [ @@ -1414,7 +1411,7 @@ Info 92 [00:03:08.000] response: }, "responseRequired": true } -Info 93 [00:03:09.000] request: +Info 90 [00:03:06.000] request: { "command": "rename", "arguments": { @@ -1461,10 +1458,10 @@ FsWatchesRecursive:: /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 -Info 97 [00:03:13.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1501,7 +1498,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:14.000] response: +Info 95 [00:03:11.000] response: { "response": { "info": { @@ -1582,7 +1579,7 @@ Info 98 [00:03:14.000] response: }, "responseRequired": true } -Info 99 [00:03:15.000] request: +Info 96 [00:03:12.000] request: { "command": "rename", "arguments": { @@ -1629,8 +1626,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:16.000] Search path: /user/username/projects/myproject/dependency -Info 101 [00:03:17.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1667,7 +1664,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:18.000] response: +Info 99 [00:03:15.000] response: { "response": { "info": { @@ -1748,7 +1745,7 @@ Info 102 [00:03:18.000] response: }, "responseRequired": true } -Info 103 [00:03:19.000] request: +Info 100 [00:03:16.000] request: { "command": "rename", "arguments": { @@ -1795,8 +1792,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:20.000] Search path: /user/username/projects/myproject/dependency -Info 105 [00:03:21.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1833,7 +1830,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:22.000] response: +Info 103 [00:03:19.000] response: { "response": { "info": { @@ -1914,7 +1911,7 @@ Info 106 [00:03:22.000] response: }, "responseRequired": true } -Info 107 [00:03:23.000] request: +Info 104 [00:03:20.000] request: { "command": "rename", "arguments": { @@ -1961,8 +1958,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:24.000] Search path: /user/username/projects/myproject/dependency -Info 109 [00:03:25.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1999,7 +1996,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:26.000] response: +Info 107 [00:03:23.000] response: { "response": { "info": { @@ -2080,7 +2077,7 @@ Info 110 [00:03:26.000] response: }, "responseRequired": true } -Info 111 [00:03:27.000] request: +Info 108 [00:03:24.000] request: { "command": "rename", "arguments": { @@ -2127,8 +2124,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:03:28.000] Search path: /user/username/projects/myproject/dependency -Info 113 [00:03:29.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2165,7 +2162,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [00:03:30.000] response: +Info 111 [00:03:27.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-created.js index 3ef46e05a2f38..836975410d7cf 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,9 +219,8 @@ Info 6 [00:01:07.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -232,20 +231,20 @@ Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:26.000] Files (3) +Info 11 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -258,16 +257,16 @@ Info 25 [00:01:26.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:27.000] ----------------------------------------------- -Info 27 [00:01:28.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:31.000] Files (3) +Info 25 [00:01:26.000] ----------------------------------------------- +Info 26 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:30.000] Files (3) -Info 29 [00:01:32.000] ----------------------------------------------- -Info 29 [00:01:33.000] Open files: -Info 29 [00:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:31.000] ----------------------------------------------- +Info 28 [00:01:32.000] Open files: +Info 28 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -294,11 +293,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:36.000] response: +Info 28 [00:01:35.000] response: { "responseRequired": false } -Info 30 [00:01:37.000] request: +Info 29 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -333,19 +332,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [00:01:39.000] Search path: /user/username/projects/myproject/dependency -Info 33 [00:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 41 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [00:01:50.000] Files (2) +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 +Info 33 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -355,22 +353,22 @@ Info 43 [00:01:50.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [00:01:51.000] ----------------------------------------------- -Info 45 [00:01:52.000] Search path: /user/username/projects/myproject/dependency -Info 46 [00:01:53.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [00:01:55.000] Files (3) - -Info 47 [00:01:56.000] ----------------------------------------------- -Info 47 [00:01:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [00:01:58.000] Files (2) - -Info 47 [00:01:59.000] ----------------------------------------------- -Info 47 [00:02:00.000] Open files: -Info 47 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [00:02:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [00:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:49.000] ----------------------------------------------- +Info 43 [00:01:50.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:51.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:53.000] Files (3) + +Info 45 [00:01:54.000] ----------------------------------------------- +Info 45 [00:01:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:56.000] Files (2) + +Info 45 [00:01:57.000] ----------------------------------------------- +Info 45 [00:01:58.000] Open files: +Info 45 [00:01:59.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:02:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:02:01.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 45 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -397,11 +395,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [00:02:05.000] response: +Info 45 [00:02:03.000] response: { "responseRequired": false } -Info 48 [00:02:06.000] request: +Info 46 [00:02:04.000] request: { "seq": 0, "type": "request", @@ -436,11 +434,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [00:02:07.000] Search path: /user/username/projects/myproject/random -Info 50 [00:02:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:09.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [00:02:11.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 50 [00:02:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 51 [00:02:09.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -448,17 +446,16 @@ Info 53 [00:02:11.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [00:02:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [00:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [00:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [00:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:22.000] Files (2) +Info 52 [00:02:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:02:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:19.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -468,26 +465,26 @@ Info 64 [00:02:22.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [00:02:23.000] ----------------------------------------------- -Info 66 [00:02:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:02:25.000] Files (3) - -Info 66 [00:02:26.000] ----------------------------------------------- -Info 66 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:28.000] Files (2) - -Info 66 [00:02:29.000] ----------------------------------------------- -Info 66 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:31.000] Files (2) - -Info 66 [00:02:32.000] ----------------------------------------------- -Info 66 [00:02:33.000] Open files: -Info 66 [00:02:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [00:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [00:02:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [00:02:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:20.000] ----------------------------------------------- +Info 63 [00:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:22.000] Files (3) + +Info 63 [00:02:23.000] ----------------------------------------------- +Info 63 [00:02:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 63 [00:02:25.000] Files (2) + +Info 63 [00:02:26.000] ----------------------------------------------- +Info 63 [00:02:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:28.000] Files (2) + +Info 63 [00:02:29.000] ----------------------------------------------- +Info 63 [00:02:30.000] Open files: +Info 63 [00:02:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:33.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 63 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 63 [00:02:35.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -520,11 +517,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:40.000] response: +Info 63 [00:02:37.000] response: { "responseRequired": false } -Info 67 [00:02:41.000] request: +Info 64 [00:02:38.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -599,7 +596,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:42.000] response: +Info 65 [00:02:39.000] response: { "response": { "definitions": [ @@ -636,7 +633,7 @@ Info 68 [00:02:42.000] response: }, "responseRequired": true } -Info 69 [00:02:43.000] request: +Info 66 [00:02:40.000] request: { "command": "rename", "arguments": { @@ -679,10 +676,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:44.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:45.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [00:02:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +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 +Info 70 [00:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -719,7 +716,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:48.000] response: +Info 71 [00:02:45.000] response: { "response": { "info": { @@ -800,15 +797,15 @@ Info 74 [00:02:48.000] response: }, "responseRequired": true } -Info 75 [00:02:51.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 76 [00:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 77 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 78 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 79 [00:02:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 80 [00:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 81 [00:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 82 [00:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 83 [00:02:59.000] request: +Info 72 [00:02:48.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 73 [00:02:49.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 74 [00:02:50.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 75 [00:02:51.000] Scheduled: *ensureProjectForOpenFiles* +Info 76 [00:02:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 77 [00:02:53.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 78 [00:02:54.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 79 [00:02:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 80 [00:02:56.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -856,9 +853,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:03:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 85 [00:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 86 [00:03:02.000] Different program with same set of files +Info 81 [00:02:57.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 82 [00:02:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 83 [00:02:59.000] Different program with same set of files After request PolledWatches:: @@ -893,7 +890,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [00:03:03.000] response: +Info 84 [00:03:00.000] response: { "response": { "definitions": [ @@ -930,7 +927,7 @@ Info 87 [00:03:03.000] response: }, "responseRequired": true } -Info 88 [00:03:04.000] request: +Info 85 [00:03:01.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1009,7 +1006,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:05.000] response: +Info 86 [00:03:02.000] response: { "response": { "definitions": [ @@ -1046,7 +1043,7 @@ Info 89 [00:03:05.000] response: }, "responseRequired": true } -Info 90 [00:03:06.000] request: +Info 87 [00:03:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1125,7 +1122,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [00:03:07.000] response: +Info 88 [00:03:04.000] response: { "response": { "definitions": [ @@ -1162,7 +1159,7 @@ Info 91 [00:03:07.000] response: }, "responseRequired": true } -Info 92 [00:03:08.000] request: +Info 89 [00:03:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1241,7 +1238,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [00:03:09.000] response: +Info 90 [00:03:06.000] response: { "response": { "definitions": [ @@ -1278,7 +1275,7 @@ Info 93 [00:03:09.000] response: }, "responseRequired": true } -Info 94 [00:03:10.000] request: +Info 91 [00:03:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1357,7 +1354,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [00:03:11.000] response: +Info 92 [00:03:08.000] response: { "response": { "definitions": [ @@ -1394,7 +1391,7 @@ Info 95 [00:03:11.000] response: }, "responseRequired": true } -Info 96 [00:03:12.000] request: +Info 93 [00:03:09.000] request: { "command": "rename", "arguments": { @@ -1439,11 +1436,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [00:03:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 98 [00:03:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 99 [00:03:15.000] Search path: /user/username/projects/myproject/dependency -Info 100 [00:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 101 [00:03:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 94 [00:03:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 95 [00:03:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 96 [00:03:12.000] Search path: /user/username/projects/myproject/dependency +Info 97 [00:03:13.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 98 [00:03:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -1480,7 +1477,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:18.000] response: +Info 99 [00:03:15.000] response: { "response": { "info": { @@ -1561,7 +1558,7 @@ Info 102 [00:03:18.000] response: }, "responseRequired": true } -Info 103 [00:03:19.000] request: +Info 100 [00:03:16.000] request: { "command": "rename", "arguments": { @@ -1608,8 +1605,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:20.000] Search path: /user/username/projects/myproject/dependency -Info 105 [00:03:21.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1646,7 +1643,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:22.000] response: +Info 103 [00:03:19.000] response: { "response": { "info": { @@ -1727,7 +1724,7 @@ Info 106 [00:03:22.000] response: }, "responseRequired": true } -Info 107 [00:03:23.000] request: +Info 104 [00:03:20.000] request: { "command": "rename", "arguments": { @@ -1774,8 +1771,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:24.000] Search path: /user/username/projects/myproject/dependency -Info 109 [00:03:25.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1812,7 +1809,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:26.000] response: +Info 107 [00:03:23.000] response: { "response": { "info": { @@ -1893,7 +1890,7 @@ Info 110 [00:03:26.000] response: }, "responseRequired": true } -Info 111 [00:03:27.000] request: +Info 108 [00:03:24.000] request: { "command": "rename", "arguments": { @@ -1940,8 +1937,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:03:28.000] Search path: /user/username/projects/myproject/dependency -Info 113 [00:03:29.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1978,7 +1975,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [00:03:30.000] response: +Info 111 [00:03:27.000] response: { "response": { "info": { @@ -2059,7 +2056,7 @@ Info 114 [00:03:30.000] response: }, "responseRequired": true } -Info 115 [00:03:31.000] request: +Info 112 [00:03:28.000] request: { "command": "rename", "arguments": { @@ -2106,8 +2103,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [00:03:32.000] Search path: /user/username/projects/myproject/dependency -Info 117 [00:03:33.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2144,7 +2141,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 118 [00:03:34.000] response: +Info 115 [00:03:31.000] response: { "response": { "info": { @@ -2225,7 +2222,7 @@ Info 118 [00:03:34.000] response: }, "responseRequired": true } -Info 119 [00:03:35.000] request: +Info 116 [00:03:32.000] request: { "seq": 0, "type": "request", @@ -2270,24 +2267,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 120 [00:03:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 121 [00:03:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 121 [00:03:38.000] Files (3) +Info 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) -Info 121 [00:03:39.000] ----------------------------------------------- -Info 121 [00:03:40.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 121 [00:03:41.000] Files (2) +Info 118 [00:03:36.000] ----------------------------------------------- +Info 118 [00:03:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 118 [00:03:38.000] Files (2) -Info 121 [00:03:42.000] ----------------------------------------------- -Info 121 [00:03:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 121 [00:03:44.000] Files (2) +Info 118 [00:03:39.000] ----------------------------------------------- +Info 118 [00:03:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 118 [00:03:41.000] Files (2) -Info 121 [00:03:45.000] ----------------------------------------------- -Info 121 [00:03:46.000] Open files: -Info 121 [00:03:47.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 121 [00:03:48.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 121 [00:03:49.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 121 [00:03:50.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 118 [00:03:42.000] ----------------------------------------------- +Info 118 [00:03:43.000] Open files: +Info 118 [00:03:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 118 [00:03:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 118 [00:03:46.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 118 [00:03:47.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2326,11 +2323,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 121 [00:03:51.000] response: +Info 118 [00:03:48.000] response: { "responseRequired": false } -Info 122 [00:03:52.000] request: +Info 119 [00:03:49.000] request: { "seq": 0, "type": "request", @@ -2377,28 +2374,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 123 [00:03:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 124 [00:03:54.000] Search path: /user/username/projects/myproject/random -Info 125 [00:03:55.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 126 [00:03:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 126 [00:03:57.000] Files (3) - -Info 126 [00:03:58.000] ----------------------------------------------- -Info 126 [00:03:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 126 [00:04:00.000] Files (2) - -Info 126 [00:04:01.000] ----------------------------------------------- -Info 126 [00:04:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 126 [00:04:03.000] Files (2) - -Info 126 [00:04:04.000] ----------------------------------------------- -Info 126 [00:04:05.000] Open files: -Info 126 [00:04:06.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 126 [00:04:07.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 126 [00:04:08.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 126 [00:04:09.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 126 [00:04:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 126 [00:04:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 123 [00:03:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 123 [00:03:54.000] Files (3) + +Info 123 [00:03:55.000] ----------------------------------------------- +Info 123 [00:03:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 123 [00:03:57.000] Files (2) + +Info 123 [00:03:58.000] ----------------------------------------------- +Info 123 [00:03:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 123 [00:04:00.000] Files (2) + +Info 123 [00:04:01.000] ----------------------------------------------- +Info 123 [00:04:02.000] Open files: +Info 123 [00:04:03.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 123 [00:04:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 123 [00:04:05.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 123 [00:04:06.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 123 [00:04:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 123 [00:04:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2435,11 +2432,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 126 [00:04:12.000] response: +Info 123 [00:04:09.000] response: { "responseRequired": false } -Info 127 [00:04:13.000] request: +Info 124 [00:04:10.000] request: { "seq": 0, "type": "request", @@ -2484,24 +2481,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 128 [00:04:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 129 [00:04:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 129 [00:04:16.000] Files (3) +Info 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) -Info 129 [00:04:17.000] ----------------------------------------------- -Info 129 [00:04:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 129 [00:04:19.000] Files (2) +Info 126 [00:04:14.000] ----------------------------------------------- +Info 126 [00:04:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 126 [00:04:16.000] Files (2) -Info 129 [00:04:20.000] ----------------------------------------------- -Info 129 [00:04:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 129 [00:04:22.000] Files (2) +Info 126 [00:04:17.000] ----------------------------------------------- +Info 126 [00:04:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 126 [00:04:19.000] Files (2) -Info 129 [00:04:23.000] ----------------------------------------------- -Info 129 [00:04:24.000] Open files: -Info 129 [00:04:25.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 129 [00:04:26.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 129 [00:04:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 129 [00:04:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 126 [00:04:20.000] ----------------------------------------------- +Info 126 [00:04:21.000] Open files: +Info 126 [00:04:22.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 126 [00:04:23.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 126 [00:04:24.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 126 [00:04:25.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2540,11 +2537,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 129 [00:04:29.000] response: +Info 126 [00:04:26.000] response: { "responseRequired": false } -Info 130 [00:04:30.000] request: +Info 127 [00:04:27.000] request: { "seq": 0, "type": "request", @@ -2591,22 +2588,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 131 [00:04:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 132 [00:04:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 132 [00:04:33.000] Files (3) +Info 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) -Info 132 [00:04:34.000] ----------------------------------------------- -Info 132 [00:04:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 132 [00:04:36.000] Files (2) +Info 129 [00:04:31.000] ----------------------------------------------- +Info 129 [00:04:32.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 129 [00:04:33.000] Files (2) -Info 132 [00:04:37.000] ----------------------------------------------- -Info 132 [00:04:38.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 132 [00:04:39.000] Files (2) +Info 129 [00:04:34.000] ----------------------------------------------- +Info 129 [00:04:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 129 [00:04:36.000] Files (2) -Info 132 [00:04:40.000] ----------------------------------------------- -Info 132 [00:04:41.000] Open files: -Info 132 [00:04:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 132 [00:04:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 129 [00:04:37.000] ----------------------------------------------- +Info 129 [00:04:38.000] Open files: +Info 129 [00:04:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 129 [00:04:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2647,11 +2644,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 132 [00:04:44.000] response: +Info 129 [00:04:41.000] response: { "responseRequired": false } -Info 133 [00:04:45.000] request: +Info 130 [00:04:42.000] request: { "seq": 0, "type": "request", @@ -2700,20 +2697,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 134 [00:04:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 135 [00:04:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 135 [00:04:48.000] Files (3) +Info 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) -Info 135 [00:04:49.000] ----------------------------------------------- -Info 135 [00:04:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 135 [00:04:51.000] Files (2) +Info 132 [00:04:46.000] ----------------------------------------------- +Info 132 [00:04:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 132 [00:04:48.000] Files (2) -Info 135 [00:04:52.000] ----------------------------------------------- -Info 135 [00:04:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 135 [00:04:54.000] Files (2) +Info 132 [00:04:49.000] ----------------------------------------------- +Info 132 [00:04:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 132 [00:04:51.000] Files (2) -Info 135 [00:04:55.000] ----------------------------------------------- -Info 135 [00:04:56.000] Open files: +Info 132 [00:04:52.000] ----------------------------------------------- +Info 132 [00:04:53.000] Open files: After request PolledWatches:: @@ -2756,11 +2753,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 135 [00:04:57.000] response: +Info 132 [00:04:54.000] response: { "responseRequired": false } -Info 136 [00:04:58.000] request: +Info 133 [00:04:55.000] request: { "seq": 0, "type": "request", @@ -2811,12 +2808,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 137 [00:04:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 138 [00:05:00.000] Search path: /user/username/projects/myproject/random -Info 139 [00:05:01.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 140 [00:05:02.000] `remove Project:: -Info 141 [00:05:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 142 [00:05:04.000] Files (3) +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 +Info 137 [00:04:59.000] `remove Project:: +Info 138 [00:05:00.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 139 [00:05:01.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -2829,19 +2826,19 @@ Info 142 [00:05:04.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 143 [00:05:05.000] ----------------------------------------------- -Info 144 [00:05:06.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 145 [00:05:07.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 146 [00:05:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 147 [00:05:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 148 [00:05:10.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 149 [00:05:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 150 [00:05:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 151 [00:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 152 [00:05:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 153 [00:05:15.000] `remove Project:: -Info 154 [00:05:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 155 [00:05:17.000] Files (2) +Info 140 [00:05:02.000] ----------------------------------------------- +Info 141 [00:05:03.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 142 [00:05:04.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 143 [00:05:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 144 [00:05:06.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 145 [00:05:07.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 146 [00:05:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 147 [00:05:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 148 [00:05:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 149 [00:05:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 150 [00:05:12.000] `remove Project:: +Info 151 [00:05:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 152 [00:05:14.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2851,25 +2848,25 @@ Info 155 [00:05:17.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 156 [00:05:18.000] ----------------------------------------------- -Info 157 [00:05:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 158 [00:05:20.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 159 [00:05:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 160 [00:05:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 161 [00:05:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 162 [00:05:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 163 [00:05:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 164 [00:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 165 [00:05:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 166 [00:05:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 167 [00:05:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 168 [00:05:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 168 [00:05:31.000] Files (2) - -Info 168 [00:05:32.000] ----------------------------------------------- -Info 168 [00:05:33.000] Open files: -Info 168 [00:05:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 168 [00:05:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 153 [00:05:15.000] ----------------------------------------------- +Info 154 [00:05:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 155 [00:05:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 156 [00:05:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 157 [00:05:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 158 [00:05:20.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 159 [00:05:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 160 [00:05:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 161 [00:05:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 162 [00:05:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 163 [00:05:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 164 [00:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 165 [00:05:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 165 [00:05:28.000] Files (2) + +Info 165 [00:05:29.000] ----------------------------------------------- +Info 165 [00:05:30.000] Open files: +Info 165 [00:05:31.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 165 [00:05:32.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2888,7 +2885,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 168 [00:05:36.000] response: +Info 165 [00:05:33.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-deleted.js index dc560003c9609..bf43710231348 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,19 +335,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [00:01:49.000] Files (2) +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 +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:47.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +356,22 @@ Info 43 [00:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [00:01:50.000] ----------------------------------------------- -Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [00:01:54.000] Files (3) - -Info 47 [00:01:55.000] ----------------------------------------------- -Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [00:01:57.000] Files (2) - -Info 47 [00:01:58.000] ----------------------------------------------- -Info 47 [00:01:59.000] Open files: -Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:48.000] ----------------------------------------------- +Info 43 [00:01:49.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:50.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:52.000] Files (3) + +Info 45 [00:01:53.000] ----------------------------------------------- +Info 45 [00:01:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:55.000] Files (2) + +Info 45 [00:01:56.000] ----------------------------------------------- +Info 45 [00:01:57.000] Open files: +Info 45 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:02:00.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 45 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +398,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [00:02:04.000] response: +Info 45 [00:02:02.000] response: { "responseRequired": false } -Info 48 [00:02:05.000] request: +Info 46 [00:02:03.000] request: { "seq": 0, "type": "request", @@ -439,11 +437,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 50 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 51 [00:02:08.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +449,16 @@ Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:21.000] Files (2) +Info 52 [00:02:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:02:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +468,26 @@ Info 64 [00:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [00:02:22.000] ----------------------------------------------- -Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:02:24.000] Files (3) - -Info 66 [00:02:25.000] ----------------------------------------------- -Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:27.000] Files (2) - -Info 66 [00:02:28.000] ----------------------------------------------- -Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:30.000] Files (2) - -Info 66 [00:02:31.000] ----------------------------------------------- -Info 66 [00:02:32.000] Open files: -Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:19.000] ----------------------------------------------- +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:21.000] Files (3) + +Info 63 [00:02:22.000] ----------------------------------------------- +Info 63 [00:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 63 [00:02:24.000] Files (2) + +Info 63 [00:02:25.000] ----------------------------------------------- +Info 63 [00:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:27.000] Files (2) + +Info 63 [00:02:28.000] ----------------------------------------------- +Info 63 [00:02:29.000] Open files: +Info 63 [00:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:32.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 63 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 63 [00:02:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +520,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:39.000] response: +Info 63 [00:02:36.000] response: { "responseRequired": false } -Info 67 [00:02:40.000] request: +Info 64 [00:02:37.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +599,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:41.000] response: +Info 65 [00:02:38.000] response: { "response": { "definitions": [ @@ -639,7 +636,7 @@ Info 68 [00:02:41.000] response: }, "responseRequired": true } -Info 69 [00:02:42.000] request: +Info 66 [00:02:39.000] request: { "command": "rename", "arguments": { @@ -682,10 +679,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 +Info 70 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -722,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:47.000] response: +Info 71 [00:02:44.000] response: { "response": { "info": { @@ -803,15 +800,15 @@ Info 74 [00:02:47.000] response: }, "responseRequired": true } -Info 75 [00:02:49.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 76 [00:02:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 77 [00:02:51.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 78 [00:02:52.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 79 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles* -Info 80 [00:02:54.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 81 [00:02:55.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 82 [00:02:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 83 [00:02:57.000] request: +Info 72 [00:02:46.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 73 [00:02:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 74 [00:02:48.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 75 [00:02:49.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 76 [00:02:50.000] Scheduled: *ensureProjectForOpenFiles* +Info 77 [00:02:51.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 78 [00:02:52.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 79 [00:02:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 80 [00:02:54.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -857,9 +854,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:02:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 85 [00:02:59.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 86 [00:03:00.000] Different program with same set of files +Info 81 [00:02:55.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 82 [00:02:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 83 [00:02:57.000] Different program with same set of files After request PolledWatches:: @@ -894,7 +891,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [00:03:01.000] response: +Info 84 [00:02:58.000] response: { "response": { "definitions": [ @@ -931,7 +928,7 @@ Info 87 [00:03:01.000] response: }, "responseRequired": true } -Info 88 [00:03:02.000] request: +Info 85 [00:02:59.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1010,7 +1007,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:03.000] response: +Info 86 [00:03:00.000] response: { "response": { "definitions": [ @@ -1047,7 +1044,7 @@ Info 89 [00:03:03.000] response: }, "responseRequired": true } -Info 90 [00:03:04.000] request: +Info 87 [00:03:01.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1126,7 +1123,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [00:03:05.000] response: +Info 88 [00:03:02.000] response: { "response": { "definitions": [ @@ -1163,7 +1160,7 @@ Info 91 [00:03:05.000] response: }, "responseRequired": true } -Info 92 [00:03:06.000] request: +Info 89 [00:03:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1242,7 +1239,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [00:03:07.000] response: +Info 90 [00:03:04.000] response: { "response": { "definitions": [ @@ -1279,7 +1276,7 @@ Info 93 [00:03:07.000] response: }, "responseRequired": true } -Info 94 [00:03:08.000] request: +Info 91 [00:03:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1358,7 +1355,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [00:03:09.000] response: +Info 92 [00:03:06.000] response: { "response": { "definitions": [ @@ -1395,7 +1392,7 @@ Info 95 [00:03:09.000] response: }, "responseRequired": true } -Info 96 [00:03:10.000] request: +Info 93 [00:03:07.000] request: { "command": "rename", "arguments": { @@ -1440,11 +1437,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [00:03:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 98 [00:03:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 99 [00:03:13.000] Search path: /user/username/projects/myproject/dependency -Info 100 [00:03:14.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 101 [00:03:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +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 +Info 97 [00:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 98 [00:03:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -1481,7 +1478,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:16.000] response: +Info 99 [00:03:13.000] response: { "response": { "info": { @@ -1562,7 +1559,7 @@ Info 102 [00:03:16.000] response: }, "responseRequired": true } -Info 103 [00:03:17.000] request: +Info 100 [00:03:14.000] request: { "command": "rename", "arguments": { @@ -1609,8 +1606,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:18.000] Search path: /user/username/projects/myproject/dependency -Info 105 [00:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1647,7 +1644,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:20.000] response: +Info 103 [00:03:17.000] response: { "response": { "info": { @@ -1728,7 +1725,7 @@ Info 106 [00:03:20.000] response: }, "responseRequired": true } -Info 107 [00:03:21.000] request: +Info 104 [00:03:18.000] request: { "command": "rename", "arguments": { @@ -1775,8 +1772,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:22.000] Search path: /user/username/projects/myproject/dependency -Info 109 [00:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1813,7 +1810,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:24.000] response: +Info 107 [00:03:21.000] response: { "response": { "info": { @@ -1894,7 +1891,7 @@ Info 110 [00:03:24.000] response: }, "responseRequired": true } -Info 111 [00:03:25.000] request: +Info 108 [00:03:22.000] request: { "command": "rename", "arguments": { @@ -1941,8 +1938,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:03:26.000] Search path: /user/username/projects/myproject/dependency -Info 113 [00:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1979,7 +1976,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [00:03:28.000] response: +Info 111 [00:03:25.000] response: { "response": { "info": { @@ -2060,7 +2057,7 @@ Info 114 [00:03:28.000] response: }, "responseRequired": true } -Info 115 [00:03:29.000] request: +Info 112 [00:03:26.000] request: { "command": "rename", "arguments": { @@ -2107,8 +2104,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [00:03:30.000] Search path: /user/username/projects/myproject/dependency -Info 117 [00:03:31.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2145,7 +2142,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 118 [00:03:32.000] response: +Info 115 [00:03:29.000] response: { "response": { "info": { @@ -2226,7 +2223,7 @@ Info 118 [00:03:32.000] response: }, "responseRequired": true } -Info 119 [00:03:33.000] request: +Info 116 [00:03:30.000] request: { "seq": 0, "type": "request", @@ -2271,24 +2268,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 120 [00:03:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 121 [00:03:35.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 121 [00:03:36.000] Files (3) +Info 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) -Info 121 [00:03:37.000] ----------------------------------------------- -Info 121 [00:03:38.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 121 [00:03:39.000] Files (2) +Info 118 [00:03:34.000] ----------------------------------------------- +Info 118 [00:03:35.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 118 [00:03:36.000] Files (2) -Info 121 [00:03:40.000] ----------------------------------------------- -Info 121 [00:03:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 121 [00:03:42.000] Files (2) +Info 118 [00:03:37.000] ----------------------------------------------- +Info 118 [00:03:38.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 118 [00:03:39.000] Files (2) -Info 121 [00:03:43.000] ----------------------------------------------- -Info 121 [00:03:44.000] Open files: -Info 121 [00:03:45.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 121 [00:03:46.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 121 [00:03:47.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 121 [00:03:48.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 118 [00:03:40.000] ----------------------------------------------- +Info 118 [00:03:41.000] Open files: +Info 118 [00:03:42.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 118 [00:03:43.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 118 [00:03:44.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 118 [00:03:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2327,11 +2324,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 121 [00:03:49.000] response: +Info 118 [00:03:46.000] response: { "responseRequired": false } -Info 122 [00:03:50.000] request: +Info 119 [00:03:47.000] request: { "seq": 0, "type": "request", @@ -2378,28 +2375,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 123 [00:03:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 124 [00:03:52.000] Search path: /user/username/projects/myproject/random -Info 125 [00:03:53.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 126 [00:03:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 126 [00:03:55.000] Files (3) - -Info 126 [00:03:56.000] ----------------------------------------------- -Info 126 [00:03:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 126 [00:03:58.000] Files (2) - -Info 126 [00:03:59.000] ----------------------------------------------- -Info 126 [00:04:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 126 [00:04:01.000] Files (2) - -Info 126 [00:04:02.000] ----------------------------------------------- -Info 126 [00:04:03.000] Open files: -Info 126 [00:04:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 126 [00:04:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 126 [00:04:06.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 126 [00:04:07.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 126 [00:04:08.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 126 [00:04:09.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 123 [00:03:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 123 [00:03:52.000] Files (3) + +Info 123 [00:03:53.000] ----------------------------------------------- +Info 123 [00:03:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 123 [00:03:55.000] Files (2) + +Info 123 [00:03:56.000] ----------------------------------------------- +Info 123 [00:03:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 123 [00:03:58.000] Files (2) + +Info 123 [00:03:59.000] ----------------------------------------------- +Info 123 [00:04:00.000] Open files: +Info 123 [00:04:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 123 [00:04:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 123 [00:04:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 123 [00:04:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 123 [00:04:05.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 123 [00:04:06.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2436,11 +2433,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 126 [00:04:10.000] response: +Info 123 [00:04:07.000] response: { "responseRequired": false } -Info 127 [00:04:11.000] request: +Info 124 [00:04:08.000] request: { "seq": 0, "type": "request", @@ -2485,24 +2482,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 128 [00:04:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 129 [00:04:13.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 129 [00:04:14.000] Files (3) +Info 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) -Info 129 [00:04:15.000] ----------------------------------------------- -Info 129 [00:04:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 129 [00:04:17.000] Files (2) +Info 126 [00:04:12.000] ----------------------------------------------- +Info 126 [00:04:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 126 [00:04:14.000] Files (2) -Info 129 [00:04:18.000] ----------------------------------------------- -Info 129 [00:04:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 129 [00:04:20.000] Files (2) +Info 126 [00:04:15.000] ----------------------------------------------- +Info 126 [00:04:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 126 [00:04:17.000] Files (2) -Info 129 [00:04:21.000] ----------------------------------------------- -Info 129 [00:04:22.000] Open files: -Info 129 [00:04:23.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 129 [00:04:24.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 129 [00:04:25.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 129 [00:04:26.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 126 [00:04:18.000] ----------------------------------------------- +Info 126 [00:04:19.000] Open files: +Info 126 [00:04:20.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 126 [00:04:21.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 126 [00:04:22.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 126 [00:04:23.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2541,11 +2538,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 129 [00:04:27.000] response: +Info 126 [00:04:24.000] response: { "responseRequired": false } -Info 130 [00:04:28.000] request: +Info 127 [00:04:25.000] request: { "seq": 0, "type": "request", @@ -2592,22 +2589,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 131 [00:04:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 132 [00:04:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 132 [00:04:31.000] Files (3) +Info 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) -Info 132 [00:04:32.000] ----------------------------------------------- -Info 132 [00:04:33.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 132 [00:04:34.000] Files (2) +Info 129 [00:04:29.000] ----------------------------------------------- +Info 129 [00:04:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 129 [00:04:31.000] Files (2) -Info 132 [00:04:35.000] ----------------------------------------------- -Info 132 [00:04:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 132 [00:04:37.000] Files (2) +Info 129 [00:04:32.000] ----------------------------------------------- +Info 129 [00:04:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 129 [00:04:34.000] Files (2) -Info 132 [00:04:38.000] ----------------------------------------------- -Info 132 [00:04:39.000] Open files: -Info 132 [00:04:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 132 [00:04:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 129 [00:04:35.000] ----------------------------------------------- +Info 129 [00:04:36.000] Open files: +Info 129 [00:04:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 129 [00:04:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2648,11 +2645,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 132 [00:04:42.000] response: +Info 129 [00:04:39.000] response: { "responseRequired": false } -Info 133 [00:04:43.000] request: +Info 130 [00:04:40.000] request: { "seq": 0, "type": "request", @@ -2701,20 +2698,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 134 [00:04:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 135 [00:04:45.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 135 [00:04:46.000] Files (3) +Info 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) -Info 135 [00:04:47.000] ----------------------------------------------- -Info 135 [00:04:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 135 [00:04:49.000] Files (2) +Info 132 [00:04:44.000] ----------------------------------------------- +Info 132 [00:04:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 132 [00:04:46.000] Files (2) -Info 135 [00:04:50.000] ----------------------------------------------- -Info 135 [00:04:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 135 [00:04:52.000] Files (2) +Info 132 [00:04:47.000] ----------------------------------------------- +Info 132 [00:04:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 132 [00:04:49.000] Files (2) -Info 135 [00:04:53.000] ----------------------------------------------- -Info 135 [00:04:54.000] Open files: +Info 132 [00:04:50.000] ----------------------------------------------- +Info 132 [00:04:51.000] Open files: After request PolledWatches:: @@ -2757,11 +2754,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 135 [00:04:55.000] response: +Info 132 [00:04:52.000] response: { "responseRequired": false } -Info 136 [00:04:56.000] request: +Info 133 [00:04:53.000] request: { "seq": 0, "type": "request", @@ -2812,12 +2809,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 137 [00:04:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 138 [00:04:58.000] Search path: /user/username/projects/myproject/random -Info 139 [00:04:59.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 140 [00:05:00.000] `remove Project:: -Info 141 [00:05:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 142 [00:05:02.000] Files (3) +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 +Info 137 [00:04:57.000] `remove Project:: +Info 138 [00:04:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 139 [00:04:59.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -2830,19 +2827,19 @@ Info 142 [00:05:02.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 143 [00:05:03.000] ----------------------------------------------- -Info 144 [00:05:04.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 145 [00:05:05.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 146 [00:05:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 147 [00:05:07.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 148 [00:05:08.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 149 [00:05:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 150 [00:05:10.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 151 [00:05:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 152 [00:05:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 153 [00:05:13.000] `remove Project:: -Info 154 [00:05:14.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 155 [00:05:15.000] Files (2) +Info 140 [00:05:00.000] ----------------------------------------------- +Info 141 [00:05:01.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 142 [00:05:02.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 143 [00:05:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 144 [00:05:04.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 145 [00:05:05.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 146 [00:05:06.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 147 [00:05:07.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 148 [00:05:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 149 [00:05:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 150 [00:05:10.000] `remove Project:: +Info 151 [00:05:11.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 152 [00:05:12.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2852,25 +2849,25 @@ Info 155 [00:05:15.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 156 [00:05:16.000] ----------------------------------------------- -Info 157 [00:05:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 158 [00:05:18.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 159 [00:05:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 160 [00:05:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 161 [00:05:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 162 [00:05:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 163 [00:05:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 164 [00:05:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 165 [00:05:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 166 [00:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 167 [00:05:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 168 [00:05:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 168 [00:05:29.000] Files (2) - -Info 168 [00:05:30.000] ----------------------------------------------- -Info 168 [00:05:31.000] Open files: -Info 168 [00:05:32.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 168 [00:05:33.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 153 [00:05:13.000] ----------------------------------------------- +Info 154 [00:05:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 155 [00:05:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 156 [00:05:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 157 [00:05:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 158 [00:05:18.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 159 [00:05:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 160 [00:05:20.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 161 [00:05:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 162 [00:05:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 163 [00:05:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 164 [00:05:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 165 [00:05:25.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 165 [00:05:26.000] Files (2) + +Info 165 [00:05:27.000] ----------------------------------------------- +Info 165 [00:05:28.000] Open files: +Info 165 [00:05:29.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 165 [00:05:30.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2889,7 +2886,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 168 [00:05:34.000] response: +Info 165 [00:05:31.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-dtsMap-not-present.js index a485a0cf68d7a..5a154f9d21693 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,9 +219,8 @@ Info 6 [00:01:07.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -232,20 +231,20 @@ Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:26.000] Files (3) +Info 11 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -258,16 +257,16 @@ Info 25 [00:01:26.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:27.000] ----------------------------------------------- -Info 27 [00:01:28.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:31.000] Files (3) +Info 25 [00:01:26.000] ----------------------------------------------- +Info 26 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:30.000] Files (3) -Info 29 [00:01:32.000] ----------------------------------------------- -Info 29 [00:01:33.000] Open files: -Info 29 [00:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:31.000] ----------------------------------------------- +Info 28 [00:01:32.000] Open files: +Info 28 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -294,11 +293,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:36.000] response: +Info 28 [00:01:35.000] response: { "responseRequired": false } -Info 30 [00:01:37.000] request: +Info 29 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -333,19 +332,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [00:01:39.000] Search path: /user/username/projects/myproject/dependency -Info 33 [00:01:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:41.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 41 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [00:01:50.000] Files (2) +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 +Info 33 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:46.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:48.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -355,22 +353,22 @@ Info 43 [00:01:50.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [00:01:51.000] ----------------------------------------------- -Info 45 [00:01:52.000] Search path: /user/username/projects/myproject/dependency -Info 46 [00:01:53.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [00:01:55.000] Files (3) - -Info 47 [00:01:56.000] ----------------------------------------------- -Info 47 [00:01:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [00:01:58.000] Files (2) - -Info 47 [00:01:59.000] ----------------------------------------------- -Info 47 [00:02:00.000] Open files: -Info 47 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [00:02:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [00:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:49.000] ----------------------------------------------- +Info 43 [00:01:50.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:51.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:53.000] Files (3) + +Info 45 [00:01:54.000] ----------------------------------------------- +Info 45 [00:01:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:56.000] Files (2) + +Info 45 [00:01:57.000] ----------------------------------------------- +Info 45 [00:01:58.000] Open files: +Info 45 [00:01:59.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:02:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:02:01.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 45 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -397,11 +395,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [00:02:05.000] response: +Info 45 [00:02:03.000] response: { "responseRequired": false } -Info 48 [00:02:06.000] request: +Info 46 [00:02:04.000] request: { "seq": 0, "type": "request", @@ -436,11 +434,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [00:02:07.000] Search path: /user/username/projects/myproject/random -Info 50 [00:02:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:09.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [00:02:11.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 50 [00:02:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 51 [00:02:09.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -448,17 +446,16 @@ Info 53 [00:02:11.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [00:02:14.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [00:02:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [00:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [00:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:22.000] Files (2) +Info 52 [00:02:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:02:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:19.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -468,26 +465,26 @@ Info 64 [00:02:22.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [00:02:23.000] ----------------------------------------------- -Info 66 [00:02:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:02:25.000] Files (3) - -Info 66 [00:02:26.000] ----------------------------------------------- -Info 66 [00:02:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:28.000] Files (2) - -Info 66 [00:02:29.000] ----------------------------------------------- -Info 66 [00:02:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:31.000] Files (2) - -Info 66 [00:02:32.000] ----------------------------------------------- -Info 66 [00:02:33.000] Open files: -Info 66 [00:02:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [00:02:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [00:02:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [00:02:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:20.000] ----------------------------------------------- +Info 63 [00:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:22.000] Files (3) + +Info 63 [00:02:23.000] ----------------------------------------------- +Info 63 [00:02:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 63 [00:02:25.000] Files (2) + +Info 63 [00:02:26.000] ----------------------------------------------- +Info 63 [00:02:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:28.000] Files (2) + +Info 63 [00:02:29.000] ----------------------------------------------- +Info 63 [00:02:30.000] Open files: +Info 63 [00:02:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:33.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 63 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 63 [00:02:35.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -520,11 +517,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:40.000] response: +Info 63 [00:02:37.000] response: { "responseRequired": false } -Info 67 [00:02:41.000] request: +Info 64 [00:02:38.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -599,7 +596,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:42.000] response: +Info 65 [00:02:39.000] response: { "response": { "definitions": [ @@ -636,7 +633,7 @@ Info 68 [00:02:42.000] response: }, "responseRequired": true } -Info 69 [00:02:43.000] request: +Info 66 [00:02:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -711,7 +708,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:44.000] response: +Info 67 [00:02:41.000] response: { "response": { "definitions": [ @@ -748,7 +745,7 @@ Info 70 [00:02:44.000] response: }, "responseRequired": true } -Info 71 [00:02:45.000] request: +Info 68 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -823,7 +820,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:46.000] response: +Info 69 [00:02:43.000] response: { "response": { "definitions": [ @@ -860,7 +857,7 @@ Info 72 [00:02:46.000] response: }, "responseRequired": true } -Info 73 [00:02:47.000] request: +Info 70 [00:02:44.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -935,7 +932,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:48.000] response: +Info 71 [00:02:45.000] response: { "response": { "definitions": [ @@ -972,7 +969,7 @@ Info 74 [00:02:48.000] response: }, "responseRequired": true } -Info 75 [00:02:49.000] request: +Info 72 [00:02:46.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1047,7 +1044,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:50.000] response: +Info 73 [00:02:47.000] response: { "response": { "definitions": [ @@ -1084,7 +1081,7 @@ Info 76 [00:02:50.000] response: }, "responseRequired": true } -Info 77 [00:02:51.000] request: +Info 74 [00:02:48.000] request: { "command": "rename", "arguments": { @@ -1127,10 +1124,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [00:02:52.000] Search path: /user/username/projects/myproject/dependency -Info 79 [00:02:53.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 80 [00:02:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 81 [00:02:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +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 +Info 78 [00:02:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -1167,7 +1164,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [00:02:56.000] response: +Info 79 [00:02:53.000] response: { "response": { "info": { @@ -1248,7 +1245,7 @@ Info 82 [00:02:56.000] response: }, "responseRequired": true } -Info 83 [00:02:57.000] request: +Info 80 [00:02:54.000] request: { "command": "rename", "arguments": { @@ -1295,8 +1292,8 @@ FsWatchesRecursive:: /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 +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:: @@ -1333,7 +1330,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:00.000] response: +Info 83 [00:02:57.000] response: { "response": { "info": { @@ -1414,7 +1411,7 @@ Info 86 [00:03:00.000] response: }, "responseRequired": true } -Info 87 [00:03:01.000] request: +Info 84 [00:02:58.000] request: { "command": "rename", "arguments": { @@ -1461,8 +1458,8 @@ FsWatchesRecursive:: /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 +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:: @@ -1499,7 +1496,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:04.000] response: +Info 87 [00:03:01.000] response: { "response": { "info": { @@ -1580,7 +1577,7 @@ Info 90 [00:03:04.000] response: }, "responseRequired": true } -Info 91 [00:03:05.000] request: +Info 88 [00:03:02.000] request: { "command": "rename", "arguments": { @@ -1627,8 +1624,8 @@ FsWatchesRecursive:: /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 +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:: @@ -1665,7 +1662,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [00:03:08.000] response: +Info 91 [00:03:05.000] response: { "response": { "info": { @@ -1746,7 +1743,7 @@ Info 94 [00:03:08.000] response: }, "responseRequired": true } -Info 95 [00:03:09.000] request: +Info 92 [00:03:06.000] request: { "command": "rename", "arguments": { @@ -1793,8 +1790,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:10.000] Search path: /user/username/projects/myproject/dependency -Info 97 [00:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1831,7 +1828,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:12.000] response: +Info 95 [00:03:09.000] response: { "response": { "info": { @@ -1912,7 +1909,7 @@ Info 98 [00:03:12.000] response: }, "responseRequired": true } -Info 99 [00:03:13.000] request: +Info 96 [00:03:10.000] request: { "seq": 0, "type": "request", @@ -1957,24 +1954,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 101 [00:03:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 101 [00:03:16.000] Files (3) +Info 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) -Info 101 [00:03:17.000] ----------------------------------------------- -Info 101 [00:03:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 101 [00:03:19.000] Files (2) +Info 98 [00:03:14.000] ----------------------------------------------- +Info 98 [00:03:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 98 [00:03:16.000] Files (2) -Info 101 [00:03:20.000] ----------------------------------------------- -Info 101 [00:03:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 101 [00:03:22.000] Files (2) +Info 98 [00:03:17.000] ----------------------------------------------- +Info 98 [00:03:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 98 [00:03:19.000] Files (2) -Info 101 [00:03:23.000] ----------------------------------------------- -Info 101 [00:03:24.000] Open files: -Info 101 [00:03:25.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 101 [00:03:26.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 101 [00:03:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 101 [00:03:28.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 98 [00:03:20.000] ----------------------------------------------- +Info 98 [00:03:21.000] Open files: +Info 98 [00:03:22.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 98 [00:03:23.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 98 [00:03:24.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 98 [00:03:25.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2013,11 +2010,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [00:03:29.000] response: +Info 98 [00:03:26.000] response: { "responseRequired": false } -Info 102 [00:03:30.000] request: +Info 99 [00:03:27.000] request: { "seq": 0, "type": "request", @@ -2064,28 +2061,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 104 [00:03:32.000] Search path: /user/username/projects/myproject/random -Info 105 [00:03:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 106 [00:03:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 106 [00:03:35.000] Files (3) - -Info 106 [00:03:36.000] ----------------------------------------------- -Info 106 [00:03:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 106 [00:03:38.000] Files (2) - -Info 106 [00:03:39.000] ----------------------------------------------- -Info 106 [00:03:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 106 [00:03:41.000] Files (2) - -Info 106 [00:03:42.000] ----------------------------------------------- -Info 106 [00:03:43.000] Open files: -Info 106 [00:03:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 106 [00:03:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 106 [00:03:46.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 106 [00:03:47.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 106 [00:03:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 106 [00:03:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 103 [00:03:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 103 [00:03:32.000] Files (3) + +Info 103 [00:03:33.000] ----------------------------------------------- +Info 103 [00:03:34.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 103 [00:03:35.000] Files (2) + +Info 103 [00:03:36.000] ----------------------------------------------- +Info 103 [00:03:37.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 103 [00:03:38.000] Files (2) + +Info 103 [00:03:39.000] ----------------------------------------------- +Info 103 [00:03:40.000] Open files: +Info 103 [00:03:41.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 103 [00:03:42.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 103 [00:03:43.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 103 [00:03:44.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 103 [00:03:45.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 103 [00:03:46.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2122,11 +2119,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:50.000] response: +Info 103 [00:03:47.000] response: { "responseRequired": false } -Info 107 [00:03:51.000] request: +Info 104 [00:03:48.000] request: { "seq": 0, "type": "request", @@ -2171,24 +2168,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 109 [00:03:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 109 [00:03:54.000] Files (3) +Info 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) -Info 109 [00:03:55.000] ----------------------------------------------- -Info 109 [00:03:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 109 [00:03:57.000] Files (2) +Info 106 [00:03:52.000] ----------------------------------------------- +Info 106 [00:03:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 106 [00:03:54.000] Files (2) -Info 109 [00:03:58.000] ----------------------------------------------- -Info 109 [00:03:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 109 [00:04:00.000] Files (2) +Info 106 [00:03:55.000] ----------------------------------------------- +Info 106 [00:03:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 106 [00:03:57.000] Files (2) -Info 109 [00:04:01.000] ----------------------------------------------- -Info 109 [00:04:02.000] Open files: -Info 109 [00:04:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 109 [00:04:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 109 [00:04:05.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 109 [00:04:06.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 106 [00:03:58.000] ----------------------------------------------- +Info 106 [00:03:59.000] Open files: +Info 106 [00:04:00.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 106 [00:04:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 106 [00:04:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 106 [00:04:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2227,11 +2224,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [00:04:07.000] response: +Info 106 [00:04:04.000] response: { "responseRequired": false } -Info 110 [00:04:08.000] request: +Info 107 [00:04:05.000] request: { "seq": 0, "type": "request", @@ -2278,22 +2275,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [00:04:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 112 [00:04:10.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 112 [00:04:11.000] Files (3) +Info 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) -Info 112 [00:04:12.000] ----------------------------------------------- -Info 112 [00:04:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 112 [00:04:14.000] Files (2) +Info 109 [00:04:09.000] ----------------------------------------------- +Info 109 [00:04:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 109 [00:04:11.000] Files (2) -Info 112 [00:04:15.000] ----------------------------------------------- -Info 112 [00:04:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 112 [00:04:17.000] Files (2) +Info 109 [00:04:12.000] ----------------------------------------------- +Info 109 [00:04:13.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 109 [00:04:14.000] Files (2) -Info 112 [00:04:18.000] ----------------------------------------------- -Info 112 [00:04:19.000] Open files: -Info 112 [00:04:20.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 112 [00:04:21.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 109 [00:04:15.000] ----------------------------------------------- +Info 109 [00:04:16.000] Open files: +Info 109 [00:04:17.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 109 [00:04:18.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2334,11 +2331,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:04:22.000] response: +Info 109 [00:04:19.000] response: { "responseRequired": false } -Info 113 [00:04:23.000] request: +Info 110 [00:04:20.000] request: { "seq": 0, "type": "request", @@ -2387,20 +2384,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [00:04:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 115 [00:04:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 115 [00:04:26.000] Files (3) +Info 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) -Info 115 [00:04:27.000] ----------------------------------------------- -Info 115 [00:04:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 115 [00:04:29.000] Files (2) +Info 112 [00:04:24.000] ----------------------------------------------- +Info 112 [00:04:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 112 [00:04:26.000] Files (2) -Info 115 [00:04:30.000] ----------------------------------------------- -Info 115 [00:04:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 115 [00:04:32.000] Files (2) +Info 112 [00:04:27.000] ----------------------------------------------- +Info 112 [00:04:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 112 [00:04:29.000] Files (2) -Info 115 [00:04:33.000] ----------------------------------------------- -Info 115 [00:04:34.000] Open files: +Info 112 [00:04:30.000] ----------------------------------------------- +Info 112 [00:04:31.000] Open files: After request PolledWatches:: @@ -2443,11 +2440,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [00:04:35.000] response: +Info 112 [00:04:32.000] response: { "responseRequired": false } -Info 116 [00:04:36.000] request: +Info 113 [00:04:33.000] request: { "seq": 0, "type": "request", @@ -2498,12 +2495,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [00:04:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 118 [00:04:38.000] Search path: /user/username/projects/myproject/random -Info 119 [00:04:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 120 [00:04:40.000] `remove Project:: -Info 121 [00:04:41.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 122 [00:04:42.000] Files (3) +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 +Info 117 [00:04:37.000] `remove Project:: +Info 118 [00:04:38.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 119 [00:04:39.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -2516,19 +2513,19 @@ Info 122 [00:04:42.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 123 [00:04:43.000] ----------------------------------------------- -Info 124 [00:04:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 125 [00:04:45.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 126 [00:04:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 127 [00:04:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 128 [00:04:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 129 [00:04:49.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 130 [00:04:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 131 [00:04:51.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 132 [00:04:52.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 133 [00:04:53.000] `remove Project:: -Info 134 [00:04:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 135 [00:04:55.000] Files (2) +Info 120 [00:04:40.000] ----------------------------------------------- +Info 121 [00:04:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 122 [00:04:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 123 [00:04:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 124 [00:04:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 125 [00:04:45.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 126 [00:04:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 127 [00:04:47.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 128 [00:04:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 129 [00:04:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 130 [00:04:50.000] `remove Project:: +Info 131 [00:04:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 132 [00:04:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2538,25 +2535,25 @@ Info 135 [00:04:55.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 136 [00:04:56.000] ----------------------------------------------- -Info 137 [00:04:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 138 [00:04:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 139 [00:04:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 140 [00:05:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 141 [00:05:01.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 142 [00:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 143 [00:05:03.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 144 [00:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 145 [00:05:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 146 [00:05:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 147 [00:05:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 148 [00:05:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 148 [00:05:09.000] Files (2) - -Info 148 [00:05:10.000] ----------------------------------------------- -Info 148 [00:05:11.000] Open files: -Info 148 [00:05:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 148 [00:05:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 133 [00:04:53.000] ----------------------------------------------- +Info 134 [00:04:54.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 135 [00:04:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 136 [00:04:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 137 [00:04:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 138 [00:04:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 139 [00:04:59.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 140 [00:05:00.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 141 [00:05:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 142 [00:05:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 143 [00:05:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 144 [00:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 145 [00:05:05.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 145 [00:05:06.000] Files (2) + +Info 145 [00:05:07.000] ----------------------------------------------- +Info 145 [00:05:08.000] Open files: +Info 145 [00:05:09.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 145 [00:05:10.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2575,7 +2572,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 148 [00:05:14.000] response: +Info 145 [00:05:11.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-source-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-source-changes-with-timeout-before-request.js index b16282efa5901..a4c84a461a1b2 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,19 +335,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [00:01:49.000] Files (2) +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 +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:47.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +356,22 @@ Info 43 [00:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [00:01:50.000] ----------------------------------------------- -Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [00:01:54.000] Files (3) - -Info 47 [00:01:55.000] ----------------------------------------------- -Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [00:01:57.000] Files (2) - -Info 47 [00:01:58.000] ----------------------------------------------- -Info 47 [00:01:59.000] Open files: -Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:48.000] ----------------------------------------------- +Info 43 [00:01:49.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:50.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:52.000] Files (3) + +Info 45 [00:01:53.000] ----------------------------------------------- +Info 45 [00:01:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:55.000] Files (2) + +Info 45 [00:01:56.000] ----------------------------------------------- +Info 45 [00:01:57.000] Open files: +Info 45 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:02:00.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 45 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +398,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [00:02:04.000] response: +Info 45 [00:02:02.000] response: { "responseRequired": false } -Info 48 [00:02:05.000] request: +Info 46 [00:02:03.000] request: { "seq": 0, "type": "request", @@ -439,11 +437,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 50 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 51 [00:02:08.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +449,16 @@ Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:21.000] Files (2) +Info 52 [00:02:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:02:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +468,26 @@ Info 64 [00:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [00:02:22.000] ----------------------------------------------- -Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:02:24.000] Files (3) - -Info 66 [00:02:25.000] ----------------------------------------------- -Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:27.000] Files (2) - -Info 66 [00:02:28.000] ----------------------------------------------- -Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:30.000] Files (2) - -Info 66 [00:02:31.000] ----------------------------------------------- -Info 66 [00:02:32.000] Open files: -Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:19.000] ----------------------------------------------- +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:21.000] Files (3) + +Info 63 [00:02:22.000] ----------------------------------------------- +Info 63 [00:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 63 [00:02:24.000] Files (2) + +Info 63 [00:02:25.000] ----------------------------------------------- +Info 63 [00:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:27.000] Files (2) + +Info 63 [00:02:28.000] ----------------------------------------------- +Info 63 [00:02:29.000] Open files: +Info 63 [00:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:32.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 63 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 63 [00:02:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +520,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:39.000] response: +Info 63 [00:02:36.000] response: { "responseRequired": false } -Info 67 [00:02:40.000] request: +Info 64 [00:02:37.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +599,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:41.000] response: +Info 65 [00:02:38.000] response: { "response": { "definitions": [ @@ -639,7 +636,7 @@ Info 68 [00:02:41.000] response: }, "responseRequired": true } -Info 69 [00:02:42.000] request: +Info 66 [00:02:39.000] request: { "command": "rename", "arguments": { @@ -682,10 +679,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 +Info 70 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -722,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:47.000] response: +Info 71 [00:02:44.000] response: { "response": { "info": { @@ -803,7 +800,7 @@ Info 74 [00:02:47.000] response: }, "responseRequired": true } -Info 75 [00:02:48.000] request: +Info 72 [00:02:45.000] request: { "command": "change", "arguments": { @@ -889,7 +886,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:49.000] response: +Info 73 [00:02:46.000] response: { "responseRequired": false } @@ -965,7 +962,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:02:50.000] request: +Info 74 [00:02:47.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1012,9 +1009,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [00:02:51.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 79 [00:02:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 80 [00:02:53.000] Different program with same set of files +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:: @@ -1051,7 +1048,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [00:02:54.000] response: +Info 78 [00:02:51.000] response: { "response": { "definitions": [ @@ -1088,7 +1085,7 @@ Info 81 [00:02:54.000] response: }, "responseRequired": true } -Info 82 [00:02:55.000] request: +Info 79 [00:02:52.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1171,7 +1168,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [00:02:56.000] response: +Info 80 [00:02:53.000] response: { "response": { "definitions": [ @@ -1208,7 +1205,7 @@ Info 83 [00:02:56.000] response: }, "responseRequired": true } -Info 84 [00:02:57.000] request: +Info 81 [00:02:54.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1291,7 +1288,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [00:02:58.000] response: +Info 82 [00:02:55.000] response: { "response": { "definitions": [ @@ -1328,7 +1325,7 @@ Info 85 [00:02:58.000] response: }, "responseRequired": true } -Info 86 [00:02:59.000] request: +Info 83 [00:02:56.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1411,7 +1408,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [00:03:00.000] response: +Info 84 [00:02:57.000] response: { "response": { "definitions": [ @@ -1448,7 +1445,7 @@ Info 87 [00:03:00.000] response: }, "responseRequired": true } -Info 88 [00:03:01.000] request: +Info 85 [00:02:58.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1531,7 +1528,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:02.000] response: +Info 86 [00:02:59.000] response: { "response": { "definitions": [ @@ -1568,7 +1565,7 @@ Info 89 [00:03:02.000] response: }, "responseRequired": true } -Info 90 [00:03:03.000] request: +Info 87 [00:03:00.000] request: { "command": "rename", "arguments": { @@ -1615,11 +1612,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [00:03:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 92 [00:03:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 93 [00:03:06.000] Different program with same set of files -Info 94 [00:03:07.000] Search path: /user/username/projects/myproject/dependency -Info 95 [00:03:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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 +Info 91 [00:03:04.000] Search path: /user/username/projects/myproject/dependency +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:: @@ -1656,7 +1653,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:09.000] response: +Info 93 [00:03:06.000] response: { "response": { "info": { @@ -1737,7 +1734,7 @@ Info 96 [00:03:09.000] response: }, "responseRequired": true } -Info 97 [00:03:10.000] request: +Info 94 [00:03:07.000] request: { "command": "rename", "arguments": { @@ -1784,8 +1781,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:11.000] Search path: /user/username/projects/myproject/dependency -Info 99 [00:03:12.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1822,7 +1819,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:13.000] response: +Info 97 [00:03:10.000] response: { "response": { "info": { @@ -1903,7 +1900,7 @@ Info 100 [00:03:13.000] response: }, "responseRequired": true } -Info 101 [00:03:14.000] request: +Info 98 [00:03:11.000] request: { "command": "rename", "arguments": { @@ -1950,8 +1947,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:15.000] Search path: /user/username/projects/myproject/dependency -Info 103 [00:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1988,7 +1985,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:17.000] response: +Info 101 [00:03:14.000] response: { "response": { "info": { @@ -2069,7 +2066,7 @@ Info 104 [00:03:17.000] response: }, "responseRequired": true } -Info 105 [00:03:18.000] request: +Info 102 [00:03:15.000] request: { "command": "rename", "arguments": { @@ -2116,8 +2113,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:19.000] Search path: /user/username/projects/myproject/dependency -Info 107 [00:03:20.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2154,7 +2151,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:21.000] response: +Info 105 [00:03:18.000] response: { "response": { "info": { @@ -2235,7 +2232,7 @@ Info 108 [00:03:21.000] response: }, "responseRequired": true } -Info 109 [00:03:22.000] request: +Info 106 [00:03:19.000] request: { "command": "rename", "arguments": { @@ -2282,8 +2279,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:23.000] Search path: /user/username/projects/myproject/dependency -Info 111 [00:03:24.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2320,7 +2317,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:03:25.000] response: +Info 109 [00:03:22.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-source-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/dependency-source-changes.js index 41ca2822bd2e2..9191f0e685dc2 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,19 +335,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [00:01:49.000] Files (2) +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 +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:47.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +356,22 @@ Info 43 [00:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [00:01:50.000] ----------------------------------------------- -Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [00:01:54.000] Files (3) - -Info 47 [00:01:55.000] ----------------------------------------------- -Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [00:01:57.000] Files (2) - -Info 47 [00:01:58.000] ----------------------------------------------- -Info 47 [00:01:59.000] Open files: -Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:48.000] ----------------------------------------------- +Info 43 [00:01:49.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:50.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:52.000] Files (3) + +Info 45 [00:01:53.000] ----------------------------------------------- +Info 45 [00:01:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:55.000] Files (2) + +Info 45 [00:01:56.000] ----------------------------------------------- +Info 45 [00:01:57.000] Open files: +Info 45 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:02:00.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 45 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +398,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [00:02:04.000] response: +Info 45 [00:02:02.000] response: { "responseRequired": false } -Info 48 [00:02:05.000] request: +Info 46 [00:02:03.000] request: { "seq": 0, "type": "request", @@ -439,11 +437,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 50 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 51 [00:02:08.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +449,16 @@ Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:21.000] Files (2) +Info 52 [00:02:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:02:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +468,26 @@ Info 64 [00:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [00:02:22.000] ----------------------------------------------- -Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:02:24.000] Files (3) - -Info 66 [00:02:25.000] ----------------------------------------------- -Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:27.000] Files (2) - -Info 66 [00:02:28.000] ----------------------------------------------- -Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:30.000] Files (2) - -Info 66 [00:02:31.000] ----------------------------------------------- -Info 66 [00:02:32.000] Open files: -Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:19.000] ----------------------------------------------- +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:21.000] Files (3) + +Info 63 [00:02:22.000] ----------------------------------------------- +Info 63 [00:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 63 [00:02:24.000] Files (2) + +Info 63 [00:02:25.000] ----------------------------------------------- +Info 63 [00:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:27.000] Files (2) + +Info 63 [00:02:28.000] ----------------------------------------------- +Info 63 [00:02:29.000] Open files: +Info 63 [00:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:32.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 63 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 63 [00:02:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +520,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:39.000] response: +Info 63 [00:02:36.000] response: { "responseRequired": false } -Info 67 [00:02:40.000] request: +Info 64 [00:02:37.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +599,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:41.000] response: +Info 65 [00:02:38.000] response: { "response": { "definitions": [ @@ -639,7 +636,7 @@ Info 68 [00:02:41.000] response: }, "responseRequired": true } -Info 69 [00:02:42.000] request: +Info 66 [00:02:39.000] request: { "command": "rename", "arguments": { @@ -682,10 +679,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 +Info 70 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -722,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:47.000] response: +Info 71 [00:02:44.000] response: { "response": { "info": { @@ -803,7 +800,7 @@ Info 74 [00:02:47.000] response: }, "responseRequired": true } -Info 75 [00:02:48.000] request: +Info 72 [00:02:45.000] request: { "command": "change", "arguments": { @@ -889,11 +886,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:49.000] response: +Info 73 [00:02:46.000] response: { "responseRequired": false } -Info 77 [00:02:50.000] request: +Info 74 [00:02:47.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -940,9 +937,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [00:02:51.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 79 [00:02:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 80 [00:02:53.000] Different program with same set of files +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:: @@ -979,7 +976,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [00:02:54.000] response: +Info 78 [00:02:51.000] response: { "response": { "definitions": [ @@ -1016,7 +1013,7 @@ Info 81 [00:02:54.000] response: }, "responseRequired": true } -Info 82 [00:02:55.000] request: +Info 79 [00:02:52.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1099,7 +1096,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [00:02:56.000] response: +Info 80 [00:02:53.000] response: { "response": { "definitions": [ @@ -1136,7 +1133,7 @@ Info 83 [00:02:56.000] response: }, "responseRequired": true } -Info 84 [00:02:57.000] request: +Info 81 [00:02:54.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1219,7 +1216,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [00:02:58.000] response: +Info 82 [00:02:55.000] response: { "response": { "definitions": [ @@ -1256,7 +1253,7 @@ Info 85 [00:02:58.000] response: }, "responseRequired": true } -Info 86 [00:02:59.000] request: +Info 83 [00:02:56.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1339,7 +1336,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [00:03:00.000] response: +Info 84 [00:02:57.000] response: { "response": { "definitions": [ @@ -1376,7 +1373,7 @@ Info 87 [00:03:00.000] response: }, "responseRequired": true } -Info 88 [00:03:01.000] request: +Info 85 [00:02:58.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1459,7 +1456,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:02.000] response: +Info 86 [00:02:59.000] response: { "response": { "definitions": [ @@ -1496,7 +1493,7 @@ Info 89 [00:03:02.000] response: }, "responseRequired": true } -Info 90 [00:03:03.000] request: +Info 87 [00:03:00.000] request: { "command": "rename", "arguments": { @@ -1543,11 +1540,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [00:03:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 92 [00:03:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 93 [00:03:06.000] Different program with same set of files -Info 94 [00:03:07.000] Search path: /user/username/projects/myproject/dependency -Info 95 [00:03:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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 +Info 91 [00:03:04.000] Search path: /user/username/projects/myproject/dependency +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:: @@ -1584,7 +1581,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:09.000] response: +Info 93 [00:03:06.000] response: { "response": { "info": { @@ -1665,7 +1662,7 @@ Info 96 [00:03:09.000] response: }, "responseRequired": true } -Info 97 [00:03:10.000] request: +Info 94 [00:03:07.000] request: { "command": "rename", "arguments": { @@ -1712,8 +1709,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:11.000] Search path: /user/username/projects/myproject/dependency -Info 99 [00:03:12.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1750,7 +1747,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:13.000] response: +Info 97 [00:03:10.000] response: { "response": { "info": { @@ -1831,7 +1828,7 @@ Info 100 [00:03:13.000] response: }, "responseRequired": true } -Info 101 [00:03:14.000] request: +Info 98 [00:03:11.000] request: { "command": "rename", "arguments": { @@ -1878,8 +1875,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:15.000] Search path: /user/username/projects/myproject/dependency -Info 103 [00:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1916,7 +1913,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:17.000] response: +Info 101 [00:03:14.000] response: { "response": { "info": { @@ -1997,7 +1994,7 @@ Info 104 [00:03:17.000] response: }, "responseRequired": true } -Info 105 [00:03:18.000] request: +Info 102 [00:03:15.000] request: { "command": "rename", "arguments": { @@ -2044,8 +2041,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:19.000] Search path: /user/username/projects/myproject/dependency -Info 107 [00:03:20.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2082,7 +2079,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:21.000] response: +Info 105 [00:03:18.000] response: { "response": { "info": { @@ -2163,7 +2160,7 @@ Info 108 [00:03:21.000] response: }, "responseRequired": true } -Info 109 [00:03:22.000] request: +Info 106 [00:03:19.000] request: { "command": "rename", "arguments": { @@ -2210,8 +2207,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:23.000] Search path: /user/username/projects/myproject/dependency -Info 111 [00:03:24.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2248,7 +2245,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:03:25.000] response: +Info 109 [00:03:22.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/gotoDef-and-rename-locations.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/gotoDef-and-rename-locations.js index 443e73f51be22..bef1a73aea4c0 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,19 +335,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [00:01:49.000] Files (2) +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 +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:47.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +356,22 @@ Info 43 [00:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [00:01:50.000] ----------------------------------------------- -Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [00:01:54.000] Files (3) - -Info 47 [00:01:55.000] ----------------------------------------------- -Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [00:01:57.000] Files (2) - -Info 47 [00:01:58.000] ----------------------------------------------- -Info 47 [00:01:59.000] Open files: -Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:48.000] ----------------------------------------------- +Info 43 [00:01:49.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:50.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:52.000] Files (3) + +Info 45 [00:01:53.000] ----------------------------------------------- +Info 45 [00:01:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:55.000] Files (2) + +Info 45 [00:01:56.000] ----------------------------------------------- +Info 45 [00:01:57.000] Open files: +Info 45 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:02:00.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 45 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +398,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [00:02:04.000] response: +Info 45 [00:02:02.000] response: { "responseRequired": false } -Info 48 [00:02:05.000] request: +Info 46 [00:02:03.000] request: { "seq": 0, "type": "request", @@ -439,11 +437,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 50 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 51 [00:02:08.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +449,16 @@ Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:21.000] Files (2) +Info 52 [00:02:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:02:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +468,26 @@ Info 64 [00:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [00:02:22.000] ----------------------------------------------- -Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:02:24.000] Files (3) - -Info 66 [00:02:25.000] ----------------------------------------------- -Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:27.000] Files (2) - -Info 66 [00:02:28.000] ----------------------------------------------- -Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:30.000] Files (2) - -Info 66 [00:02:31.000] ----------------------------------------------- -Info 66 [00:02:32.000] Open files: -Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:19.000] ----------------------------------------------- +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:21.000] Files (3) + +Info 63 [00:02:22.000] ----------------------------------------------- +Info 63 [00:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 63 [00:02:24.000] Files (2) + +Info 63 [00:02:25.000] ----------------------------------------------- +Info 63 [00:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:27.000] Files (2) + +Info 63 [00:02:28.000] ----------------------------------------------- +Info 63 [00:02:29.000] Open files: +Info 63 [00:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:32.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 63 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 63 [00:02:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +520,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:39.000] response: +Info 63 [00:02:36.000] response: { "responseRequired": false } -Info 67 [00:02:40.000] request: +Info 64 [00:02:37.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +599,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:41.000] response: +Info 65 [00:02:38.000] response: { "response": { "definitions": [ @@ -639,7 +636,7 @@ Info 68 [00:02:41.000] response: }, "responseRequired": true } -Info 69 [00:02:42.000] request: +Info 66 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -714,7 +711,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:43.000] response: +Info 67 [00:02:40.000] response: { "response": { "definitions": [ @@ -751,7 +748,7 @@ Info 70 [00:02:43.000] response: }, "responseRequired": true } -Info 71 [00:02:44.000] request: +Info 68 [00:02:41.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -826,7 +823,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:45.000] response: +Info 69 [00:02:42.000] response: { "response": { "definitions": [ @@ -863,7 +860,7 @@ Info 72 [00:02:45.000] response: }, "responseRequired": true } -Info 73 [00:02:46.000] request: +Info 70 [00:02:43.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -938,7 +935,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:47.000] response: +Info 71 [00:02:44.000] response: { "response": { "definitions": [ @@ -975,7 +972,7 @@ Info 74 [00:02:47.000] response: }, "responseRequired": true } -Info 75 [00:02:48.000] request: +Info 72 [00:02:45.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1050,7 +1047,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:49.000] response: +Info 73 [00:02:46.000] response: { "response": { "definitions": [ @@ -1087,7 +1084,7 @@ Info 76 [00:02:49.000] response: }, "responseRequired": true } -Info 77 [00:02:50.000] request: +Info 74 [00:02:47.000] request: { "command": "rename", "arguments": { @@ -1130,10 +1127,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [00:02:51.000] Search path: /user/username/projects/myproject/dependency -Info 79 [00:02:52.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 80 [00:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 81 [00:02:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 +Info 78 [00:02:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -1170,7 +1167,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [00:02:55.000] response: +Info 79 [00:02:52.000] response: { "response": { "info": { @@ -1251,7 +1248,7 @@ Info 82 [00:02:55.000] response: }, "responseRequired": true } -Info 83 [00:02:56.000] request: +Info 80 [00:02:53.000] request: { "command": "rename", "arguments": { @@ -1298,8 +1295,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:02:57.000] Search path: /user/username/projects/myproject/dependency -Info 85 [00:02:58.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1336,7 +1333,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:02:59.000] response: +Info 83 [00:02:56.000] response: { "response": { "info": { @@ -1417,7 +1414,7 @@ Info 86 [00:02:59.000] response: }, "responseRequired": true } -Info 87 [00:03:00.000] request: +Info 84 [00:02:57.000] request: { "command": "rename", "arguments": { @@ -1464,8 +1461,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [00:03:01.000] Search path: /user/username/projects/myproject/dependency -Info 89 [00:03:02.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1502,7 +1499,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:03.000] response: +Info 87 [00:03:00.000] response: { "response": { "info": { @@ -1583,7 +1580,7 @@ Info 90 [00:03:03.000] response: }, "responseRequired": true } -Info 91 [00:03:04.000] request: +Info 88 [00:03:01.000] request: { "command": "rename", "arguments": { @@ -1630,8 +1627,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [00:03:05.000] Search path: /user/username/projects/myproject/dependency -Info 93 [00:03:06.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1668,7 +1665,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [00:03:07.000] response: +Info 91 [00:03:04.000] response: { "response": { "info": { @@ -1749,7 +1746,7 @@ Info 94 [00:03:07.000] response: }, "responseRequired": true } -Info 95 [00:03:08.000] request: +Info 92 [00:03:05.000] request: { "command": "rename", "arguments": { @@ -1796,8 +1793,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:09.000] Search path: /user/username/projects/myproject/dependency -Info 97 [00:03:10.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1834,7 +1831,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:11.000] response: +Info 95 [00:03:08.000] response: { "response": { "info": { @@ -1915,7 +1912,7 @@ Info 98 [00:03:11.000] response: }, "responseRequired": true } -Info 99 [00:03:12.000] request: +Info 96 [00:03:09.000] request: { "seq": 0, "type": "request", @@ -1960,24 +1957,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 101 [00:03:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 101 [00:03:15.000] Files (3) +Info 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) -Info 101 [00:03:16.000] ----------------------------------------------- -Info 101 [00:03:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 101 [00:03:18.000] Files (2) +Info 98 [00:03:13.000] ----------------------------------------------- +Info 98 [00:03:14.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 98 [00:03:15.000] Files (2) -Info 101 [00:03:19.000] ----------------------------------------------- -Info 101 [00:03:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 101 [00:03:21.000] Files (2) +Info 98 [00:03:16.000] ----------------------------------------------- +Info 98 [00:03:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 98 [00:03:18.000] Files (2) -Info 101 [00:03:22.000] ----------------------------------------------- -Info 101 [00:03:23.000] Open files: -Info 101 [00:03:24.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 101 [00:03:25.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 101 [00:03:26.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 101 [00:03:27.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 98 [00:03:19.000] ----------------------------------------------- +Info 98 [00:03:20.000] Open files: +Info 98 [00:03:21.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 98 [00:03:22.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 98 [00:03:23.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 98 [00:03:24.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2016,11 +2013,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [00:03:28.000] response: +Info 98 [00:03:25.000] response: { "responseRequired": false } -Info 102 [00:03:29.000] request: +Info 99 [00:03:26.000] request: { "seq": 0, "type": "request", @@ -2067,28 +2064,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 104 [00:03:31.000] Search path: /user/username/projects/myproject/random -Info 105 [00:03:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 106 [00:03:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 106 [00:03:34.000] Files (3) - -Info 106 [00:03:35.000] ----------------------------------------------- -Info 106 [00:03:36.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 106 [00:03:37.000] Files (2) - -Info 106 [00:03:38.000] ----------------------------------------------- -Info 106 [00:03:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 106 [00:03:40.000] Files (2) - -Info 106 [00:03:41.000] ----------------------------------------------- -Info 106 [00:03:42.000] Open files: -Info 106 [00:03:43.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 106 [00:03:44.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 106 [00:03:45.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 106 [00:03:46.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 106 [00:03:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 106 [00:03:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 103 [00:03:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 103 [00:03:31.000] Files (3) + +Info 103 [00:03:32.000] ----------------------------------------------- +Info 103 [00:03:33.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 103 [00:03:34.000] Files (2) + +Info 103 [00:03:35.000] ----------------------------------------------- +Info 103 [00:03:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 103 [00:03:37.000] Files (2) + +Info 103 [00:03:38.000] ----------------------------------------------- +Info 103 [00:03:39.000] Open files: +Info 103 [00:03:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 103 [00:03:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 103 [00:03:42.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 103 [00:03:43.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 103 [00:03:44.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 103 [00:03:45.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2125,11 +2122,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:49.000] response: +Info 103 [00:03:46.000] response: { "responseRequired": false } -Info 107 [00:03:50.000] request: +Info 104 [00:03:47.000] request: { "seq": 0, "type": "request", @@ -2174,24 +2171,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 109 [00:03:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 109 [00:03:53.000] Files (3) +Info 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) -Info 109 [00:03:54.000] ----------------------------------------------- -Info 109 [00:03:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 109 [00:03:56.000] Files (2) +Info 106 [00:03:51.000] ----------------------------------------------- +Info 106 [00:03:52.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 106 [00:03:53.000] Files (2) -Info 109 [00:03:57.000] ----------------------------------------------- -Info 109 [00:03:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 109 [00:03:59.000] Files (2) +Info 106 [00:03:54.000] ----------------------------------------------- +Info 106 [00:03:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 106 [00:03:56.000] Files (2) -Info 109 [00:04:00.000] ----------------------------------------------- -Info 109 [00:04:01.000] Open files: -Info 109 [00:04:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 109 [00:04:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 109 [00:04:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 109 [00:04:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 106 [00:03:57.000] ----------------------------------------------- +Info 106 [00:03:58.000] Open files: +Info 106 [00:03:59.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 106 [00:04:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 106 [00:04:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 106 [00:04:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2230,11 +2227,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [00:04:06.000] response: +Info 106 [00:04:03.000] response: { "responseRequired": false } -Info 110 [00:04:07.000] request: +Info 107 [00:04:04.000] request: { "seq": 0, "type": "request", @@ -2281,22 +2278,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [00:04:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 112 [00:04:09.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 112 [00:04:10.000] Files (3) +Info 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) -Info 112 [00:04:11.000] ----------------------------------------------- -Info 112 [00:04:12.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 112 [00:04:13.000] Files (2) +Info 109 [00:04:08.000] ----------------------------------------------- +Info 109 [00:04:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 109 [00:04:10.000] Files (2) -Info 112 [00:04:14.000] ----------------------------------------------- -Info 112 [00:04:15.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 112 [00:04:16.000] Files (2) +Info 109 [00:04:11.000] ----------------------------------------------- +Info 109 [00:04:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 109 [00:04:13.000] Files (2) -Info 112 [00:04:17.000] ----------------------------------------------- -Info 112 [00:04:18.000] Open files: -Info 112 [00:04:19.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 112 [00:04:20.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 109 [00:04:14.000] ----------------------------------------------- +Info 109 [00:04:15.000] Open files: +Info 109 [00:04:16.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 109 [00:04:17.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2337,11 +2334,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:04:21.000] response: +Info 109 [00:04:18.000] response: { "responseRequired": false } -Info 113 [00:04:22.000] request: +Info 110 [00:04:19.000] request: { "seq": 0, "type": "request", @@ -2390,20 +2387,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [00:04:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 115 [00:04:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 115 [00:04:25.000] Files (3) +Info 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) -Info 115 [00:04:26.000] ----------------------------------------------- -Info 115 [00:04:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 115 [00:04:28.000] Files (2) +Info 112 [00:04:23.000] ----------------------------------------------- +Info 112 [00:04:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 112 [00:04:25.000] Files (2) -Info 115 [00:04:29.000] ----------------------------------------------- -Info 115 [00:04:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 115 [00:04:31.000] Files (2) +Info 112 [00:04:26.000] ----------------------------------------------- +Info 112 [00:04:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 112 [00:04:28.000] Files (2) -Info 115 [00:04:32.000] ----------------------------------------------- -Info 115 [00:04:33.000] Open files: +Info 112 [00:04:29.000] ----------------------------------------------- +Info 112 [00:04:30.000] Open files: After request PolledWatches:: @@ -2446,11 +2443,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [00:04:34.000] response: +Info 112 [00:04:31.000] response: { "responseRequired": false } -Info 116 [00:04:35.000] request: +Info 113 [00:04:32.000] request: { "seq": 0, "type": "request", @@ -2501,12 +2498,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [00:04:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 118 [00:04:37.000] Search path: /user/username/projects/myproject/random -Info 119 [00:04:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 120 [00:04:39.000] `remove Project:: -Info 121 [00:04:40.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 122 [00:04:41.000] Files (3) +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 +Info 117 [00:04:36.000] `remove Project:: +Info 118 [00:04:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 119 [00:04:38.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -2519,19 +2516,19 @@ Info 122 [00:04:41.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 123 [00:04:42.000] ----------------------------------------------- -Info 124 [00:04:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 125 [00:04:44.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 126 [00:04:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 127 [00:04:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 128 [00:04:47.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 129 [00:04:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 130 [00:04:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 131 [00:04:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 132 [00:04:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 133 [00:04:52.000] `remove Project:: -Info 134 [00:04:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 135 [00:04:54.000] Files (2) +Info 120 [00:04:39.000] ----------------------------------------------- +Info 121 [00:04:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 122 [00:04:41.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 123 [00:04:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 124 [00:04:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 125 [00:04:44.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 126 [00:04:45.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 127 [00:04:46.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 128 [00:04:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 129 [00:04:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 130 [00:04:49.000] `remove Project:: +Info 131 [00:04:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 132 [00:04:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2541,25 +2538,25 @@ Info 135 [00:04:54.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 136 [00:04:55.000] ----------------------------------------------- -Info 137 [00:04:56.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 138 [00:04:57.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 139 [00:04:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 140 [00:04:59.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 141 [00:05:00.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 142 [00:05:01.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 143 [00:05:02.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 144 [00:05:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 145 [00:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 146 [00:05:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 147 [00:05:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 148 [00:05:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 148 [00:05:08.000] Files (2) - -Info 148 [00:05:09.000] ----------------------------------------------- -Info 148 [00:05:10.000] Open files: -Info 148 [00:05:11.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 148 [00:05:12.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 133 [00:04:52.000] ----------------------------------------------- +Info 134 [00:04:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 135 [00:04:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 136 [00:04:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 137 [00:04:56.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 138 [00:04:57.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 139 [00:04:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 140 [00:04:59.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 141 [00:05:00.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 142 [00:05:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 143 [00:05:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info +Info 144 [00:05:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 145 [00:05:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 145 [00:05:05.000] Files (2) + +Info 145 [00:05:06.000] ----------------------------------------------- +Info 145 [00:05:07.000] Open files: +Info 145 [00:05:08.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 145 [00:05:09.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2578,7 +2575,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 148 [00:05:13.000] response: +Info 145 [00:05:10.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/usage-file-changes-with-timeout-before-request.js index bda2dfb55a068..7915b8644b5fa 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,19 +335,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [00:01:49.000] Files (2) +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 +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:47.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +356,22 @@ Info 43 [00:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [00:01:50.000] ----------------------------------------------- -Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [00:01:54.000] Files (3) - -Info 47 [00:01:55.000] ----------------------------------------------- -Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [00:01:57.000] Files (2) - -Info 47 [00:01:58.000] ----------------------------------------------- -Info 47 [00:01:59.000] Open files: -Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:48.000] ----------------------------------------------- +Info 43 [00:01:49.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:50.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:52.000] Files (3) + +Info 45 [00:01:53.000] ----------------------------------------------- +Info 45 [00:01:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:55.000] Files (2) + +Info 45 [00:01:56.000] ----------------------------------------------- +Info 45 [00:01:57.000] Open files: +Info 45 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:02:00.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 45 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +398,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [00:02:04.000] response: +Info 45 [00:02:02.000] response: { "responseRequired": false } -Info 48 [00:02:05.000] request: +Info 46 [00:02:03.000] request: { "seq": 0, "type": "request", @@ -439,11 +437,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 50 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 51 [00:02:08.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +449,16 @@ Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:21.000] Files (2) +Info 52 [00:02:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:02:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +468,26 @@ Info 64 [00:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [00:02:22.000] ----------------------------------------------- -Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:02:24.000] Files (3) - -Info 66 [00:02:25.000] ----------------------------------------------- -Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:27.000] Files (2) - -Info 66 [00:02:28.000] ----------------------------------------------- -Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:30.000] Files (2) - -Info 66 [00:02:31.000] ----------------------------------------------- -Info 66 [00:02:32.000] Open files: -Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:19.000] ----------------------------------------------- +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:21.000] Files (3) + +Info 63 [00:02:22.000] ----------------------------------------------- +Info 63 [00:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 63 [00:02:24.000] Files (2) + +Info 63 [00:02:25.000] ----------------------------------------------- +Info 63 [00:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:27.000] Files (2) + +Info 63 [00:02:28.000] ----------------------------------------------- +Info 63 [00:02:29.000] Open files: +Info 63 [00:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:32.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 63 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 63 [00:02:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +520,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:39.000] response: +Info 63 [00:02:36.000] response: { "responseRequired": false } -Info 67 [00:02:40.000] request: +Info 64 [00:02:37.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +599,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:41.000] response: +Info 65 [00:02:38.000] response: { "response": { "definitions": [ @@ -639,7 +636,7 @@ Info 68 [00:02:41.000] response: }, "responseRequired": true } -Info 69 [00:02:42.000] request: +Info 66 [00:02:39.000] request: { "command": "rename", "arguments": { @@ -682,10 +679,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 +Info 70 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -722,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:47.000] response: +Info 71 [00:02:44.000] response: { "response": { "info": { @@ -803,7 +800,7 @@ Info 74 [00:02:47.000] response: }, "responseRequired": true } -Info 75 [00:02:48.000] request: +Info 72 [00:02:45.000] request: { "command": "change", "arguments": { @@ -889,11 +886,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:49.000] response: +Info 73 [00:02:46.000] response: { "responseRequired": false } -Info 77 [00:02:50.000] request: +Info 74 [00:02:47.000] request: { "command": "change", "arguments": { @@ -979,7 +976,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [00:02:51.000] response: +Info 75 [00:02:48.000] response: { "responseRequired": false } @@ -1055,7 +1052,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [00:02:52.000] request: +Info 76 [00:02:49.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1102,9 +1099,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:02:53.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 81 [00:02:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 82 [00:02:55.000] Different program with same set of files +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:: @@ -1141,7 +1138,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [00:02:56.000] response: +Info 80 [00:02:53.000] response: { "response": { "definitions": [ @@ -1178,7 +1175,7 @@ Info 83 [00:02:56.000] response: }, "responseRequired": true } -Info 84 [00:02:57.000] request: +Info 81 [00:02:54.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1261,7 +1258,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [00:02:58.000] response: +Info 82 [00:02:55.000] response: { "response": { "definitions": [ @@ -1298,7 +1295,7 @@ Info 85 [00:02:58.000] response: }, "responseRequired": true } -Info 86 [00:02:59.000] request: +Info 83 [00:02:56.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1381,7 +1378,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [00:03:00.000] response: +Info 84 [00:02:57.000] response: { "response": { "definitions": [ @@ -1418,7 +1415,7 @@ Info 87 [00:03:00.000] response: }, "responseRequired": true } -Info 88 [00:03:01.000] request: +Info 85 [00:02:58.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1501,7 +1498,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:02.000] response: +Info 86 [00:02:59.000] response: { "response": { "definitions": [ @@ -1538,7 +1535,7 @@ Info 89 [00:03:02.000] response: }, "responseRequired": true } -Info 90 [00:03:03.000] request: +Info 87 [00:03:00.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1621,7 +1618,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [00:03:04.000] response: +Info 88 [00:03:01.000] response: { "response": { "definitions": [ @@ -1658,7 +1655,7 @@ Info 91 [00:03:04.000] response: }, "responseRequired": true } -Info 92 [00:03:05.000] request: +Info 89 [00:03:02.000] request: { "command": "rename", "arguments": { @@ -1705,11 +1702,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [00:03:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 94 [00:03:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 95 [00:03:08.000] Different program with same set of files -Info 96 [00:03:09.000] Search path: /user/username/projects/myproject/dependency -Info 97 [00:03:10.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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 +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:: @@ -1746,7 +1743,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:11.000] response: +Info 95 [00:03:08.000] response: { "response": { "info": { @@ -1827,7 +1824,7 @@ Info 98 [00:03:11.000] response: }, "responseRequired": true } -Info 99 [00:03:12.000] request: +Info 96 [00:03:09.000] request: { "command": "rename", "arguments": { @@ -1874,8 +1871,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:13.000] Search path: /user/username/projects/myproject/dependency -Info 101 [00:03:14.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1912,7 +1909,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:15.000] response: +Info 99 [00:03:12.000] response: { "response": { "info": { @@ -1993,7 +1990,7 @@ Info 102 [00:03:15.000] response: }, "responseRequired": true } -Info 103 [00:03:16.000] request: +Info 100 [00:03:13.000] request: { "command": "rename", "arguments": { @@ -2040,8 +2037,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:17.000] Search path: /user/username/projects/myproject/dependency -Info 105 [00:03:18.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2078,7 +2075,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:19.000] response: +Info 103 [00:03:16.000] response: { "response": { "info": { @@ -2159,7 +2156,7 @@ Info 106 [00:03:19.000] response: }, "responseRequired": true } -Info 107 [00:03:20.000] request: +Info 104 [00:03:17.000] request: { "command": "rename", "arguments": { @@ -2206,8 +2203,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:21.000] Search path: /user/username/projects/myproject/dependency -Info 109 [00:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2244,7 +2241,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:23.000] response: +Info 107 [00:03:20.000] response: { "response": { "info": { @@ -2325,7 +2322,7 @@ Info 110 [00:03:23.000] response: }, "responseRequired": true } -Info 111 [00:03:24.000] request: +Info 108 [00:03:21.000] request: { "command": "rename", "arguments": { @@ -2372,8 +2369,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:03:25.000] Search path: /user/username/projects/myproject/dependency -Info 113 [00:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2410,7 +2407,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [00:03:27.000] response: +Info 111 [00:03:24.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/usage-file-changes.js index e695069c2444c..095cf41ebbef8 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,19 +335,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [00:01:38.000] Search path: /user/username/projects/myproject/dependency -Info 33 [00:01:39.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:40.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [00:01:49.000] Files (2) +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 +Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:47.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +356,22 @@ Info 43 [00:01:49.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [00:01:50.000] ----------------------------------------------- -Info 45 [00:01:51.000] Search path: /user/username/projects/myproject/dependency -Info 46 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [00:01:54.000] Files (3) - -Info 47 [00:01:55.000] ----------------------------------------------- -Info 47 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [00:01:57.000] Files (2) - -Info 47 [00:01:58.000] ----------------------------------------------- -Info 47 [00:01:59.000] Open files: -Info 47 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:48.000] ----------------------------------------------- +Info 43 [00:01:49.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:50.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:52.000] Files (3) + +Info 45 [00:01:53.000] ----------------------------------------------- +Info 45 [00:01:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:55.000] Files (2) + +Info 45 [00:01:56.000] ----------------------------------------------- +Info 45 [00:01:57.000] Open files: +Info 45 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:02:00.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 45 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -400,11 +398,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [00:02:04.000] response: +Info 45 [00:02:02.000] response: { "responseRequired": false } -Info 48 [00:02:05.000] request: +Info 46 [00:02:03.000] request: { "seq": 0, "type": "request", @@ -439,11 +437,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 49 [00:02:06.000] Search path: /user/username/projects/myproject/random -Info 50 [00:02:07.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:08.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 50 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 51 [00:02:08.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -451,17 +449,16 @@ Info 53 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [00:02:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:21.000] Files (2) +Info 52 [00:02:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:02:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:18.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -471,26 +468,26 @@ Info 64 [00:02:21.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [00:02:22.000] ----------------------------------------------- -Info 66 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:02:24.000] Files (3) - -Info 66 [00:02:25.000] ----------------------------------------------- -Info 66 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:27.000] Files (2) - -Info 66 [00:02:28.000] ----------------------------------------------- -Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:30.000] Files (2) - -Info 66 [00:02:31.000] ----------------------------------------------- -Info 66 [00:02:32.000] Open files: -Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:19.000] ----------------------------------------------- +Info 63 [00:02:20.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:21.000] Files (3) + +Info 63 [00:02:22.000] ----------------------------------------------- +Info 63 [00:02:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 63 [00:02:24.000] Files (2) + +Info 63 [00:02:25.000] ----------------------------------------------- +Info 63 [00:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:27.000] Files (2) + +Info 63 [00:02:28.000] ----------------------------------------------- +Info 63 [00:02:29.000] Open files: +Info 63 [00:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:32.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 63 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 63 [00:02:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -523,11 +520,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:39.000] response: +Info 63 [00:02:36.000] response: { "responseRequired": false } -Info 67 [00:02:40.000] request: +Info 64 [00:02:37.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +599,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:41.000] response: +Info 65 [00:02:38.000] response: { "response": { "definitions": [ @@ -639,7 +636,7 @@ Info 68 [00:02:41.000] response: }, "responseRequired": true } -Info 69 [00:02:42.000] request: +Info 66 [00:02:39.000] request: { "command": "rename", "arguments": { @@ -682,10 +679,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 500 undefined WatchType: Closed Script info -Info 73 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 +Info 70 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -722,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:47.000] response: +Info 71 [00:02:44.000] response: { "response": { "info": { @@ -803,7 +800,7 @@ Info 74 [00:02:47.000] response: }, "responseRequired": true } -Info 75 [00:02:48.000] request: +Info 72 [00:02:45.000] request: { "command": "change", "arguments": { @@ -889,11 +886,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:49.000] response: +Info 73 [00:02:46.000] response: { "responseRequired": false } -Info 77 [00:02:50.000] request: +Info 74 [00:02:47.000] request: { "command": "change", "arguments": { @@ -979,11 +976,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [00:02:51.000] response: +Info 75 [00:02:48.000] response: { "responseRequired": false } -Info 79 [00:02:52.000] request: +Info 76 [00:02:49.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1030,9 +1027,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:02:53.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 81 [00:02:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 82 [00:02:55.000] Different program with same set of files +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:: @@ -1069,7 +1066,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [00:02:56.000] response: +Info 80 [00:02:53.000] response: { "response": { "definitions": [ @@ -1106,7 +1103,7 @@ Info 83 [00:02:56.000] response: }, "responseRequired": true } -Info 84 [00:02:57.000] request: +Info 81 [00:02:54.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1189,7 +1186,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [00:02:58.000] response: +Info 82 [00:02:55.000] response: { "response": { "definitions": [ @@ -1226,7 +1223,7 @@ Info 85 [00:02:58.000] response: }, "responseRequired": true } -Info 86 [00:02:59.000] request: +Info 83 [00:02:56.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1309,7 +1306,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [00:03:00.000] response: +Info 84 [00:02:57.000] response: { "response": { "definitions": [ @@ -1346,7 +1343,7 @@ Info 87 [00:03:00.000] response: }, "responseRequired": true } -Info 88 [00:03:01.000] request: +Info 85 [00:02:58.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1429,7 +1426,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:02.000] response: +Info 86 [00:02:59.000] response: { "response": { "definitions": [ @@ -1466,7 +1463,7 @@ Info 89 [00:03:02.000] response: }, "responseRequired": true } -Info 90 [00:03:03.000] request: +Info 87 [00:03:00.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1549,7 +1546,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [00:03:04.000] response: +Info 88 [00:03:01.000] response: { "response": { "definitions": [ @@ -1586,7 +1583,7 @@ Info 91 [00:03:04.000] response: }, "responseRequired": true } -Info 92 [00:03:05.000] request: +Info 89 [00:03:02.000] request: { "command": "rename", "arguments": { @@ -1633,11 +1630,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [00:03:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 94 [00:03:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 95 [00:03:08.000] Different program with same set of files -Info 96 [00:03:09.000] Search path: /user/username/projects/myproject/dependency -Info 97 [00:03:10.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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 +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:: @@ -1674,7 +1671,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:11.000] response: +Info 95 [00:03:08.000] response: { "response": { "info": { @@ -1755,7 +1752,7 @@ Info 98 [00:03:11.000] response: }, "responseRequired": true } -Info 99 [00:03:12.000] request: +Info 96 [00:03:09.000] request: { "command": "rename", "arguments": { @@ -1802,8 +1799,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:13.000] Search path: /user/username/projects/myproject/dependency -Info 101 [00:03:14.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1840,7 +1837,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:15.000] response: +Info 99 [00:03:12.000] response: { "response": { "info": { @@ -1921,7 +1918,7 @@ Info 102 [00:03:15.000] response: }, "responseRequired": true } -Info 103 [00:03:16.000] request: +Info 100 [00:03:13.000] request: { "command": "rename", "arguments": { @@ -1968,8 +1965,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:17.000] Search path: /user/username/projects/myproject/dependency -Info 105 [00:03:18.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2006,7 +2003,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:19.000] response: +Info 103 [00:03:16.000] response: { "response": { "info": { @@ -2087,7 +2084,7 @@ Info 106 [00:03:19.000] response: }, "responseRequired": true } -Info 107 [00:03:20.000] request: +Info 104 [00:03:17.000] request: { "command": "rename", "arguments": { @@ -2134,8 +2131,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:21.000] Search path: /user/username/projects/myproject/dependency -Info 109 [00:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2172,7 +2169,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:23.000] response: +Info 107 [00:03:20.000] response: { "response": { "info": { @@ -2253,7 +2250,7 @@ Info 110 [00:03:23.000] response: }, "responseRequired": true } -Info 111 [00:03:24.000] request: +Info 108 [00:03:21.000] request: { "command": "rename", "arguments": { @@ -2300,8 +2297,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:03:25.000] Search path: /user/username/projects/myproject/dependency -Info 113 [00:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2338,7 +2335,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [00:03:27.000] response: +Info 111 [00:03:24.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/when-projects-are-not-built.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/configWithReference/when-projects-are-not-built.js index 6577ad9d0086f..0f3c49467977a 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 @@ -87,9 +87,8 @@ Info 6 [00:00:41.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:00:46.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:00:45.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -100,20 +99,20 @@ Info 11 [00:00:46.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:53.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:00:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:00.000] Files (3) +Info 11 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:52.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:00:57.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:00:59.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -126,16 +125,16 @@ Info 25 [00:01:00.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:01.000] ----------------------------------------------- -Info 27 [00:01:02.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:03.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:04.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:05.000] Files (3) +Info 25 [00:01:00.000] ----------------------------------------------- +Info 26 [00:01:01.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:02.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:04.000] Files (3) -Info 29 [00:01:06.000] ----------------------------------------------- -Info 29 [00:01:07.000] Open files: -Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:05.000] ----------------------------------------------- +Info 28 [00:01:06.000] Open files: +Info 28 [00:01:07.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:08.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -162,11 +161,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:10.000] response: +Info 28 [00:01:09.000] response: { "responseRequired": false } -Info 30 [00:01:11.000] request: +Info 29 [00:01:10.000] request: { "seq": 0, "type": "request", @@ -201,19 +200,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 32 [00:01:13.000] Search path: /user/username/projects/myproject/dependency -Info 33 [00:01:14.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:15.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 37 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 41 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 42 [00:01:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 43 [00:01:24.000] Files (2) +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 +Info 33 [00:01:14.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:15.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 35 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 39 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 40 [00:01:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 41 [00:01:22.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -223,22 +221,22 @@ Info 43 [00:01:24.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 44 [00:01:25.000] ----------------------------------------------- -Info 45 [00:01:26.000] Search path: /user/username/projects/myproject/dependency -Info 46 [00:01:27.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 47 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [00:01:29.000] Files (3) - -Info 47 [00:01:30.000] ----------------------------------------------- -Info 47 [00:01:31.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 47 [00:01:32.000] Files (2) - -Info 47 [00:01:33.000] ----------------------------------------------- -Info 47 [00:01:34.000] Open files: -Info 47 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [00:01:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 47 [00:01:38.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 42 [00:01:23.000] ----------------------------------------------- +Info 43 [00:01:24.000] Search path: /user/username/projects/myproject/dependency +Info 44 [00:01:25.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 45 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:27.000] Files (3) + +Info 45 [00:01:28.000] ----------------------------------------------- +Info 45 [00:01:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 45 [00:01:30.000] Files (2) + +Info 45 [00:01:31.000] ----------------------------------------------- +Info 45 [00:01:32.000] Open files: +Info 45 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:01:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 45 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -265,11 +263,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 47 [00:01:39.000] response: +Info 45 [00:01:37.000] response: { "responseRequired": false } -Info 48 [00:01:40.000] request: +Info 46 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -304,11 +302,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 49 [00:01:41.000] Search path: /user/username/projects/myproject/random -Info 50 [00:01:42.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:01:43.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 52 [00:01:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 53 [00:01:45.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 50 [00:01:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 51 [00:01:43.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -316,17 +314,16 @@ Info 53 [00:01:45.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 54 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 56 [00:01:48.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [00:01:49.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 58 [00:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:01:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 62 [00:01:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 63 [00:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:01:56.000] Files (2) +Info 52 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 54 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 55 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 59 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:01:53.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -336,26 +333,26 @@ Info 64 [00:01:56.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 65 [00:01:57.000] ----------------------------------------------- -Info 66 [00:01:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:01:59.000] Files (3) - -Info 66 [00:02:00.000] ----------------------------------------------- -Info 66 [00:02:01.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 66 [00:02:02.000] Files (2) - -Info 66 [00:02:03.000] ----------------------------------------------- -Info 66 [00:02:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:05.000] Files (2) - -Info 66 [00:02:06.000] ----------------------------------------------- -Info 66 [00:02:07.000] Open files: -Info 66 [00:02:08.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:09.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [00:02:10.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 66 [00:02:11.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 66 [00:02:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [00:02:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:01:54.000] ----------------------------------------------- +Info 63 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:01:56.000] Files (3) + +Info 63 [00:01:57.000] ----------------------------------------------- +Info 63 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 63 [00:01:59.000] Files (2) + +Info 63 [00:02:00.000] ----------------------------------------------- +Info 63 [00:02:01.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:02.000] Files (2) + +Info 63 [00:02:03.000] ----------------------------------------------- +Info 63 [00:02:04.000] Open files: +Info 63 [00:02:05.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:06.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:07.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 63 [00:02:08.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 63 [00:02:09.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:10.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -388,11 +385,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:14.000] response: +Info 63 [00:02:11.000] response: { "responseRequired": false } -Info 67 [00:02:15.000] request: +Info 64 [00:02:12.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -467,7 +464,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:16.000] response: +Info 65 [00:02:13.000] response: { "response": { "definitions": [ @@ -504,7 +501,7 @@ Info 68 [00:02:16.000] response: }, "responseRequired": true } -Info 69 [00:02:17.000] request: +Info 66 [00:02:14.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -579,7 +576,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:18.000] response: +Info 67 [00:02:15.000] response: { "response": { "definitions": [ @@ -616,7 +613,7 @@ Info 70 [00:02:18.000] response: }, "responseRequired": true } -Info 71 [00:02:19.000] request: +Info 68 [00:02:16.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -691,7 +688,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:20.000] response: +Info 69 [00:02:17.000] response: { "response": { "definitions": [ @@ -728,7 +725,7 @@ Info 72 [00:02:20.000] response: }, "responseRequired": true } -Info 73 [00:02:21.000] request: +Info 70 [00:02:18.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -803,7 +800,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:22.000] response: +Info 71 [00:02:19.000] response: { "response": { "definitions": [ @@ -840,7 +837,7 @@ Info 74 [00:02:22.000] response: }, "responseRequired": true } -Info 75 [00:02:23.000] request: +Info 72 [00:02:20.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -915,7 +912,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:24.000] response: +Info 73 [00:02:21.000] response: { "response": { "definitions": [ @@ -952,7 +949,7 @@ Info 76 [00:02:24.000] response: }, "responseRequired": true } -Info 77 [00:02:25.000] request: +Info 74 [00:02:22.000] request: { "command": "rename", "arguments": { @@ -995,9 +992,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [00:02:26.000] Search path: /user/username/projects/myproject/dependency -Info 79 [00:02:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 80 [00:02:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +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 After request PolledWatches:: @@ -1032,7 +1029,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [00:02:29.000] response: +Info 78 [00:02:26.000] response: { "response": { "info": { @@ -1113,7 +1110,7 @@ Info 81 [00:02:29.000] response: }, "responseRequired": true } -Info 82 [00:02:30.000] request: +Info 79 [00:02:27.000] request: { "command": "rename", "arguments": { @@ -1158,8 +1155,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [00:02:31.000] Search path: /user/username/projects/myproject/dependency -Info 84 [00:02:32.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1194,7 +1191,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [00:02:33.000] response: +Info 82 [00:02:30.000] response: { "response": { "info": { @@ -1275,7 +1272,7 @@ Info 85 [00:02:33.000] response: }, "responseRequired": true } -Info 86 [00:02:34.000] request: +Info 83 [00:02:31.000] request: { "command": "rename", "arguments": { @@ -1320,8 +1317,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [00:02:35.000] Search path: /user/username/projects/myproject/dependency -Info 88 [00:02:36.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1356,7 +1353,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:02:37.000] response: +Info 86 [00:02:34.000] response: { "response": { "info": { @@ -1437,7 +1434,7 @@ Info 89 [00:02:37.000] response: }, "responseRequired": true } -Info 90 [00:02:38.000] request: +Info 87 [00:02:35.000] request: { "command": "rename", "arguments": { @@ -1482,8 +1479,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [00:02:39.000] Search path: /user/username/projects/myproject/dependency -Info 92 [00:02:40.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1518,7 +1515,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [00:02:41.000] response: +Info 90 [00:02:38.000] response: { "response": { "info": { @@ -1599,7 +1596,7 @@ Info 93 [00:02:41.000] response: }, "responseRequired": true } -Info 94 [00:02:42.000] request: +Info 91 [00:02:39.000] request: { "command": "rename", "arguments": { @@ -1644,8 +1641,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [00:02:43.000] Search path: /user/username/projects/myproject/dependency -Info 96 [00:02:44.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1680,7 +1677,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [00:02:45.000] response: +Info 94 [00:02:42.000] response: { "response": { "info": { @@ -1761,7 +1758,7 @@ Info 97 [00:02:45.000] response: }, "responseRequired": true } -Info 98 [00:02:46.000] request: +Info 95 [00:02:43.000] request: { "seq": 0, "type": "request", @@ -1804,24 +1801,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [00:02:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 100 [00:02:48.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 100 [00:02:49.000] Files (3) +Info 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) -Info 100 [00:02:50.000] ----------------------------------------------- -Info 100 [00:02:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 100 [00:02:52.000] Files (2) +Info 97 [00:02:47.000] ----------------------------------------------- +Info 97 [00:02:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 97 [00:02:49.000] Files (2) -Info 100 [00:02:53.000] ----------------------------------------------- -Info 100 [00:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 100 [00:02:55.000] Files (2) +Info 97 [00:02:50.000] ----------------------------------------------- +Info 97 [00:02:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 97 [00:02:52.000] Files (2) -Info 100 [00:02:56.000] ----------------------------------------------- -Info 100 [00:02:57.000] Open files: -Info 100 [00:02:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 100 [00:02:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 100 [00:03:00.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 100 [00:03:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 97 [00:02:53.000] ----------------------------------------------- +Info 97 [00:02:54.000] Open files: +Info 97 [00:02:55.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 97 [00:02:56.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 97 [00:02:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 97 [00:02:58.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1858,11 +1855,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:02.000] response: +Info 97 [00:02:59.000] response: { "responseRequired": false } -Info 101 [00:03:03.000] request: +Info 98 [00:03:00.000] request: { "seq": 0, "type": "request", @@ -1907,28 +1904,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 103 [00:03:05.000] Search path: /user/username/projects/myproject/random -Info 104 [00:03:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 105 [00:03:07.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 105 [00:03:08.000] Files (3) - -Info 105 [00:03:09.000] ----------------------------------------------- -Info 105 [00:03:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 105 [00:03:11.000] Files (2) - -Info 105 [00:03:12.000] ----------------------------------------------- -Info 105 [00:03:13.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 105 [00:03:14.000] Files (2) - -Info 105 [00:03:15.000] ----------------------------------------------- -Info 105 [00:03:16.000] Open files: -Info 105 [00:03:17.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 105 [00:03:18.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 105 [00:03:19.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 105 [00:03:20.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 105 [00:03:21.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 105 [00:03:22.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 102 [00:03:04.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 102 [00:03:05.000] Files (3) + +Info 102 [00:03:06.000] ----------------------------------------------- +Info 102 [00:03:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 102 [00:03:08.000] Files (2) + +Info 102 [00:03:09.000] ----------------------------------------------- +Info 102 [00:03:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 102 [00:03:11.000] Files (2) + +Info 102 [00:03:12.000] ----------------------------------------------- +Info 102 [00:03:13.000] Open files: +Info 102 [00:03:14.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 102 [00:03:15.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 102 [00:03:16.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 102 [00:03:17.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 102 [00:03:18.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 102 [00:03:19.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1963,11 +1960,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 105 [00:03:23.000] response: +Info 102 [00:03:20.000] response: { "responseRequired": false } -Info 106 [00:03:24.000] request: +Info 103 [00:03:21.000] request: { "seq": 0, "type": "request", @@ -2010,24 +2007,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 107 [00:03:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 108 [00:03:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 108 [00:03:27.000] Files (3) +Info 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) -Info 108 [00:03:28.000] ----------------------------------------------- -Info 108 [00:03:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 108 [00:03:30.000] Files (2) +Info 105 [00:03:25.000] ----------------------------------------------- +Info 105 [00:03:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 105 [00:03:27.000] Files (2) -Info 108 [00:03:31.000] ----------------------------------------------- -Info 108 [00:03:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 108 [00:03:33.000] Files (2) +Info 105 [00:03:28.000] ----------------------------------------------- +Info 105 [00:03:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 105 [00:03:30.000] Files (2) -Info 108 [00:03:34.000] ----------------------------------------------- -Info 108 [00:03:35.000] Open files: -Info 108 [00:03:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 108 [00:03:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json -Info 108 [00:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 108 [00:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 105 [00:03:31.000] ----------------------------------------------- +Info 105 [00:03:32.000] Open files: +Info 105 [00:03:33.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 105 [00:03:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json,/user/username/projects/myproject/dependency/tsconfig.json +Info 105 [00:03:35.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 105 [00:03:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2064,11 +2061,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:40.000] response: +Info 105 [00:03:37.000] response: { "responseRequired": false } -Info 109 [00:03:41.000] request: +Info 106 [00:03:38.000] request: { "seq": 0, "type": "request", @@ -2113,22 +2110,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 111 [00:03:43.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 111 [00:03:44.000] Files (3) +Info 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) -Info 111 [00:03:45.000] ----------------------------------------------- -Info 111 [00:03:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 111 [00:03:47.000] Files (2) +Info 108 [00:03:42.000] ----------------------------------------------- +Info 108 [00:03:43.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 108 [00:03:44.000] Files (2) -Info 111 [00:03:48.000] ----------------------------------------------- -Info 111 [00:03:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 111 [00:03:50.000] Files (2) +Info 108 [00:03:45.000] ----------------------------------------------- +Info 108 [00:03:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 108 [00:03:47.000] Files (2) -Info 111 [00:03:51.000] ----------------------------------------------- -Info 111 [00:03:52.000] Open files: -Info 111 [00:03:53.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 111 [00:03:54.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 108 [00:03:48.000] ----------------------------------------------- +Info 108 [00:03:49.000] Open files: +Info 108 [00:03:50.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 108 [00:03:51.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2167,11 +2164,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [00:03:55.000] response: +Info 108 [00:03:52.000] response: { "responseRequired": false } -Info 112 [00:03:56.000] request: +Info 109 [00:03:53.000] request: { "seq": 0, "type": "request", @@ -2218,20 +2215,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [00:03:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 114 [00:03:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 114 [00:03:59.000] Files (3) +Info 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) -Info 114 [00:04:00.000] ----------------------------------------------- -Info 114 [00:04:01.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 114 [00:04:02.000] Files (2) +Info 111 [00:03:57.000] ----------------------------------------------- +Info 111 [00:03:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 111 [00:03:59.000] Files (2) -Info 114 [00:04:03.000] ----------------------------------------------- -Info 114 [00:04:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 114 [00:04:05.000] Files (2) +Info 111 [00:04:00.000] ----------------------------------------------- +Info 111 [00:04:01.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 111 [00:04:02.000] Files (2) -Info 114 [00:04:06.000] ----------------------------------------------- -Info 114 [00:04:07.000] Open files: +Info 111 [00:04:03.000] ----------------------------------------------- +Info 111 [00:04:04.000] Open files: After request PolledWatches:: @@ -2272,11 +2269,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [00:04:08.000] response: +Info 111 [00:04:05.000] response: { "responseRequired": false } -Info 115 [00:04:09.000] request: +Info 112 [00:04:06.000] request: { "seq": 0, "type": "request", @@ -2325,12 +2322,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [00:04:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 117 [00:04:11.000] Search path: /user/username/projects/myproject/random -Info 118 [00:04:12.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 119 [00:04:13.000] `remove Project:: -Info 120 [00:04:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 121 [00:04:15.000] Files (3) +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 +Info 116 [00:04:10.000] `remove Project:: +Info 117 [00:04:11.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 118 [00:04:12.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -2343,19 +2340,19 @@ Info 121 [00:04:15.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 122 [00:04:16.000] ----------------------------------------------- -Info 123 [00:04:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 124 [00:04:18.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 125 [00:04:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 126 [00:04:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 127 [00:04:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 128 [00:04:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 129 [00:04:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 130 [00:04:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 131 [00:04:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 132 [00:04:26.000] `remove Project:: -Info 133 [00:04:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 134 [00:04:28.000] Files (2) +Info 119 [00:04:13.000] ----------------------------------------------- +Info 120 [00:04:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 121 [00:04:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 122 [00:04:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 123 [00:04:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 124 [00:04:18.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 125 [00:04:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 126 [00:04:20.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 127 [00:04:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 128 [00:04:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 129 [00:04:23.000] `remove Project:: +Info 130 [00:04:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 131 [00:04:25.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2365,24 +2362,24 @@ Info 134 [00:04:28.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 135 [00:04:29.000] ----------------------------------------------- -Info 136 [00:04:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 137 [00:04:31.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 138 [00:04:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 139 [00:04:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 140 [00:04:34.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 141 [00:04:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 142 [00:04:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 143 [00:04:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 144 [00:04:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 145 [00:04:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 146 [00:04:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 146 [00:04:41.000] Files (2) - -Info 146 [00:04:42.000] ----------------------------------------------- -Info 146 [00:04:43.000] Open files: -Info 146 [00:04:44.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 146 [00:04:45.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 132 [00:04:26.000] ----------------------------------------------- +Info 133 [00:04:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 134 [00:04:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 135 [00:04:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 136 [00:04:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 137 [00:04:31.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 138 [00:04:32.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 139 [00:04:33.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 140 [00:04:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 141 [00:04:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 142 [00:04:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 143 [00:04:37.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 143 [00:04:38.000] Files (2) + +Info 143 [00:04:39.000] ----------------------------------------------- +Info 143 [00:04:40.000] Open files: +Info 143 [00:04:41.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 143 [00:04:42.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2401,7 +2398,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 146 [00:04:46.000] response: +Info 143 [00:04:43.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js index e969bbace417a..ec204feb5efc5 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 @@ -223,9 +223,8 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +235,20 @@ Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:28.000] Files (3) +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +261,16 @@ Info 25 [00:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:29.000] ----------------------------------------------- -Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:33.000] Files (3) +Info 25 [00:01:28.000] ----------------------------------------------- +Info 26 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:32.000] Files (3) -Info 29 [00:01:34.000] ----------------------------------------------- -Info 29 [00:01:35.000] Open files: -Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:33.000] ----------------------------------------------- +Info 28 [00:01:34.000] Open files: +Info 28 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:38.000] response: +Info 28 [00:01:37.000] response: { "responseRequired": false } -Info 30 [00:01:39.000] request: +Info 29 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -337,18 +336,17 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/dependency -Info 32 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +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 +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +356,22 @@ Info 42 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:56.000] Files (3) - -Info 46 [00:01:57.000] ----------------------------------------------- -Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:01:59.000] Files (2) - -Info 46 [00:02:00.000] ----------------------------------------------- -Info 46 [00:02:01.000] Open files: -Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) + +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) + +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -402,11 +400,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [00:02:06.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 47 [00:02:07.000] request: +Info 45 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -443,11 +441,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -455,17 +453,16 @@ Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:23.000] Files (2) +Info 51 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -475,26 +472,26 @@ Info 63 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:24.000] ----------------------------------------------- -Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:26.000] Files (3) - -Info 65 [00:02:27.000] ----------------------------------------------- -Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:29.000] Files (2) - -Info 65 [00:02:30.000] ----------------------------------------------- -Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:32.000] Files (2) - -Info 65 [00:02:33.000] ----------------------------------------------- -Info 65 [00:02:34.000] Open files: -Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:21.000] ----------------------------------------------- +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (3) + +Info 62 [00:02:24.000] ----------------------------------------------- +Info 62 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:26.000] Files (2) + +Info 62 [00:02:27.000] ----------------------------------------------- +Info 62 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:29.000] Files (2) + +Info 62 [00:02:30.000] ----------------------------------------------- +Info 62 [00:02:31.000] Open files: +Info 62 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -529,11 +526,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:41.000] response: +Info 62 [00:02:38.000] response: { "responseRequired": false } -Info 66 [00:02:42.000] request: +Info 63 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -578,7 +575,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -615,7 +612,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:44.000] response: +Info 65 [00:02:41.000] response: { "response": { "definitions": [ @@ -652,7 +649,7 @@ Info 68 [00:02:44.000] response: }, "responseRequired": true } -Info 69 [00:02:45.000] request: +Info 66 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -699,8 +696,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -737,7 +734,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:48.000] response: +Info 69 [00:02:45.000] response: { "response": { "info": { @@ -818,12 +815,12 @@ Info 72 [00:02:48.000] response: }, "responseRequired": true } -Info 73 [00:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 74 [00:02:53.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 75 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 76 [00:02:55.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 77 [00:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 78 [00:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 70 [00:02:49.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 71 [00:02:50.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 72 [00:02:51.000] Scheduled: *ensureProjectForOpenFiles* +Info 73 [00:02:52.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 74 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 75 [00:02:54.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts] export declare function fn1(): void; @@ -869,54 +866,54 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [00:02:58.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 80 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 81 [00:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 82 [00:03:01.000] Different program with same set of files -Info 83 [00:03:02.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 84 [00:03:03.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 85 [00:03:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 86 [00:03:05.000] Running: *ensureProjectForOpenFiles* -Info 87 [00:03:06.000] Before ensureProjectForOpenFiles: -Info 88 [00:03:07.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 88 [00:03:08.000] Files (3) - -Info 88 [00:03:09.000] ----------------------------------------------- -Info 88 [00:03:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 88 [00:03:11.000] Files (2) - -Info 88 [00:03:12.000] ----------------------------------------------- -Info 88 [00:03:13.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 88 [00:03:14.000] Files (2) - -Info 88 [00:03:15.000] ----------------------------------------------- -Info 88 [00:03:16.000] Open files: -Info 88 [00:03:17.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 88 [00:03:18.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 88 [00:03:19.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 88 [00:03:20.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 88 [00:03:21.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 88 [00:03:22.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 88 [00:03:23.000] After ensureProjectForOpenFiles: -Info 89 [00:03:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 89 [00:03:25.000] Files (3) - -Info 89 [00:03:26.000] ----------------------------------------------- -Info 89 [00:03:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 89 [00:03:28.000] Files (2) - -Info 89 [00:03:29.000] ----------------------------------------------- -Info 89 [00:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 89 [00:03:31.000] Files (2) - -Info 89 [00:03:32.000] ----------------------------------------------- -Info 89 [00:03:33.000] Open files: -Info 89 [00:03:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 89 [00:03:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 89 [00:03:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 89 [00:03:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 89 [00:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 89 [00:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 79 [00:02:58.000] Different program with same set of files +Info 80 [00:02:59.000] Running: /user/username/projects/myproject/dependency/tsconfig.json +Info 81 [00:03:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 82 [00:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 83 [00:03:02.000] Running: *ensureProjectForOpenFiles* +Info 84 [00:03:03.000] Before ensureProjectForOpenFiles: +Info 85 [00:03:04.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 85 [00:03:05.000] Files (3) + +Info 85 [00:03:06.000] ----------------------------------------------- +Info 85 [00:03:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 85 [00:03:08.000] Files (2) + +Info 85 [00:03:09.000] ----------------------------------------------- +Info 85 [00:03:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 85 [00:03:11.000] Files (2) + +Info 85 [00:03:12.000] ----------------------------------------------- +Info 85 [00:03:13.000] Open files: +Info 85 [00:03:14.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 85 [00:03:15.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 85 [00:03:16.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 85 [00:03:17.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 85 [00:03:18.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 85 [00:03:19.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 85 [00:03:20.000] After ensureProjectForOpenFiles: +Info 86 [00:03:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 86 [00:03:22.000] Files (3) + +Info 86 [00:03:23.000] ----------------------------------------------- +Info 86 [00:03:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 86 [00:03:25.000] Files (2) + +Info 86 [00:03:26.000] ----------------------------------------------- +Info 86 [00:03:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 86 [00:03:28.000] Files (2) + +Info 86 [00:03:29.000] ----------------------------------------------- +Info 86 [00:03:30.000] Open files: +Info 86 [00:03:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 86 [00:03:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 86 [00:03:33.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 86 [00:03:34.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 86 [00:03:35.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 86 [00:03:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -953,7 +950,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:40.000] request: +Info 86 [00:03:37.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1036,7 +1033,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:41.000] response: +Info 87 [00:03:38.000] response: { "response": { "definitions": [ @@ -1073,7 +1070,7 @@ Info 90 [00:03:41.000] response: }, "responseRequired": true } -Info 91 [00:03:42.000] request: +Info 88 [00:03:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1156,7 +1153,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [00:03:43.000] response: +Info 89 [00:03:40.000] response: { "response": { "definitions": [ @@ -1193,7 +1190,7 @@ Info 92 [00:03:43.000] response: }, "responseRequired": true } -Info 93 [00:03:44.000] request: +Info 90 [00:03:41.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1276,7 +1273,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [00:03:45.000] response: +Info 91 [00:03:42.000] response: { "response": { "definitions": [ @@ -1313,7 +1310,7 @@ Info 94 [00:03:45.000] response: }, "responseRequired": true } -Info 95 [00:03:46.000] request: +Info 92 [00:03:43.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1396,7 +1393,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:47.000] response: +Info 93 [00:03:44.000] response: { "response": { "definitions": [ @@ -1433,7 +1430,7 @@ Info 96 [00:03:47.000] response: }, "responseRequired": true } -Info 97 [00:03:48.000] request: +Info 94 [00:03:45.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1516,7 +1513,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:49.000] response: +Info 95 [00:03:46.000] response: { "response": { "definitions": [ @@ -1553,7 +1550,7 @@ Info 98 [00:03:49.000] response: }, "responseRequired": true } -Info 99 [00:03:50.000] request: +Info 96 [00:03:47.000] request: { "command": "rename", "arguments": { @@ -1600,8 +1597,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -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 +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:: @@ -1638,7 +1635,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:53.000] response: +Info 99 [00:03:50.000] response: { "response": { "info": { @@ -1719,7 +1716,7 @@ Info 102 [00:03:53.000] response: }, "responseRequired": true } -Info 103 [00:03:54.000] request: +Info 100 [00:03:51.000] request: { "command": "rename", "arguments": { @@ -1766,8 +1763,8 @@ FsWatchesRecursive:: /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 +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:: @@ -1804,7 +1801,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:57.000] response: +Info 103 [00:03:54.000] response: { "response": { "info": { @@ -1885,7 +1882,7 @@ Info 106 [00:03:57.000] response: }, "responseRequired": true } -Info 107 [00:03:58.000] request: +Info 104 [00:03:55.000] request: { "command": "rename", "arguments": { @@ -1932,8 +1929,8 @@ FsWatchesRecursive:: /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 +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:: @@ -1970,7 +1967,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:04:01.000] response: +Info 107 [00:03:58.000] response: { "response": { "info": { @@ -2051,7 +2048,7 @@ Info 110 [00:04:01.000] response: }, "responseRequired": true } -Info 111 [00:04:02.000] request: +Info 108 [00:03:59.000] request: { "command": "rename", "arguments": { @@ -2098,8 +2095,8 @@ FsWatchesRecursive:: /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 +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:: @@ -2136,7 +2133,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [00:04:05.000] response: +Info 111 [00:04:02.000] response: { "response": { "info": { @@ -2217,7 +2214,7 @@ Info 114 [00:04:05.000] response: }, "responseRequired": true } -Info 115 [00:04:06.000] request: +Info 112 [00:04:03.000] request: { "command": "rename", "arguments": { @@ -2264,8 +2261,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [00:04:07.000] Search path: /user/username/projects/myproject/dependency -Info 117 [00:04:08.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2302,7 +2299,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 118 [00:04:09.000] response: +Info 115 [00:04:06.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-changes.js index d4d5a3447f365..3f70a86eb9f55 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 @@ -223,9 +223,8 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +235,20 @@ Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:28.000] Files (3) +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +261,16 @@ Info 25 [00:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:29.000] ----------------------------------------------- -Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:33.000] Files (3) +Info 25 [00:01:28.000] ----------------------------------------------- +Info 26 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:32.000] Files (3) -Info 29 [00:01:34.000] ----------------------------------------------- -Info 29 [00:01:35.000] Open files: -Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:33.000] ----------------------------------------------- +Info 28 [00:01:34.000] Open files: +Info 28 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:38.000] response: +Info 28 [00:01:37.000] response: { "responseRequired": false } -Info 30 [00:01:39.000] request: +Info 29 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -337,18 +336,17 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/dependency -Info 32 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +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 +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +356,22 @@ Info 42 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:56.000] Files (3) - -Info 46 [00:01:57.000] ----------------------------------------------- -Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:01:59.000] Files (2) - -Info 46 [00:02:00.000] ----------------------------------------------- -Info 46 [00:02:01.000] Open files: -Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) + +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) + +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -402,11 +400,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [00:02:06.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 47 [00:02:07.000] request: +Info 45 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -443,11 +441,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -455,17 +453,16 @@ Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:23.000] Files (2) +Info 51 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -475,26 +472,26 @@ Info 63 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:24.000] ----------------------------------------------- -Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:26.000] Files (3) - -Info 65 [00:02:27.000] ----------------------------------------------- -Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:29.000] Files (2) - -Info 65 [00:02:30.000] ----------------------------------------------- -Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:32.000] Files (2) - -Info 65 [00:02:33.000] ----------------------------------------------- -Info 65 [00:02:34.000] Open files: -Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:21.000] ----------------------------------------------- +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (3) + +Info 62 [00:02:24.000] ----------------------------------------------- +Info 62 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:26.000] Files (2) + +Info 62 [00:02:27.000] ----------------------------------------------- +Info 62 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:29.000] Files (2) + +Info 62 [00:02:30.000] ----------------------------------------------- +Info 62 [00:02:31.000] Open files: +Info 62 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -529,11 +526,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:41.000] response: +Info 62 [00:02:38.000] response: { "responseRequired": false } -Info 66 [00:02:42.000] request: +Info 63 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -578,7 +575,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -615,7 +612,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:44.000] response: +Info 65 [00:02:41.000] response: { "response": { "definitions": [ @@ -652,7 +649,7 @@ Info 68 [00:02:44.000] response: }, "responseRequired": true } -Info 69 [00:02:45.000] request: +Info 66 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -699,8 +696,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -737,7 +734,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:48.000] response: +Info 69 [00:02:45.000] response: { "response": { "info": { @@ -818,13 +815,13 @@ Info 72 [00:02:48.000] response: }, "responseRequired": true } -Info 73 [00:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 74 [00:02:53.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 75 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 76 [00:02:55.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 77 [00:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 78 [00:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 79 [00:02:58.000] request: +Info 70 [00:02:49.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 71 [00:02:50.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 72 [00:02:51.000] Scheduled: *ensureProjectForOpenFiles* +Info 73 [00:02:52.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 74 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 75 [00:02:54.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 76 [00:02:55.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -880,9 +877,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 81 [00:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 82 [00:03:01.000] Different program with same set of files +Info 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:: @@ -919,7 +916,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [00:03:02.000] response: +Info 80 [00:02:59.000] response: { "response": { "definitions": [ @@ -956,7 +953,7 @@ Info 83 [00:03:02.000] response: }, "responseRequired": true } -Info 84 [00:03:03.000] request: +Info 81 [00:03:00.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1039,7 +1036,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [00:03:04.000] response: +Info 82 [00:03:01.000] response: { "response": { "definitions": [ @@ -1076,7 +1073,7 @@ Info 85 [00:03:04.000] response: }, "responseRequired": true } -Info 86 [00:03:05.000] request: +Info 83 [00:03:02.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1159,7 +1156,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [00:03:06.000] response: +Info 84 [00:03:03.000] response: { "response": { "definitions": [ @@ -1196,7 +1193,7 @@ Info 87 [00:03:06.000] response: }, "responseRequired": true } -Info 88 [00:03:07.000] request: +Info 85 [00:03:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1279,7 +1276,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:08.000] response: +Info 86 [00:03:05.000] response: { "response": { "definitions": [ @@ -1316,7 +1313,7 @@ Info 89 [00:03:08.000] response: }, "responseRequired": true } -Info 90 [00:03:09.000] request: +Info 87 [00:03:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1399,7 +1396,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [00:03:10.000] response: +Info 88 [00:03:07.000] response: { "response": { "definitions": [ @@ -1436,7 +1433,7 @@ Info 91 [00:03:10.000] response: }, "responseRequired": true } -Info 92 [00:03:11.000] request: +Info 89 [00:03:08.000] request: { "command": "rename", "arguments": { @@ -1483,10 +1480,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [00:03:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 94 [00:03:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 95 [00:03:14.000] Search path: /user/username/projects/myproject/dependency -Info 96 [00:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1523,7 +1520,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [00:03:16.000] response: +Info 94 [00:03:13.000] response: { "response": { "info": { @@ -1604,7 +1601,7 @@ Info 97 [00:03:16.000] response: }, "responseRequired": true } -Info 98 [00:03:17.000] request: +Info 95 [00:03:14.000] request: { "command": "rename", "arguments": { @@ -1651,8 +1648,8 @@ FsWatchesRecursive:: /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 +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:: @@ -1689,7 +1686,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [00:03:20.000] response: +Info 98 [00:03:17.000] response: { "response": { "info": { @@ -1770,7 +1767,7 @@ Info 101 [00:03:20.000] response: }, "responseRequired": true } -Info 102 [00:03:21.000] request: +Info 99 [00:03:18.000] request: { "command": "rename", "arguments": { @@ -1817,8 +1814,8 @@ FsWatchesRecursive:: /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 +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:: @@ -1855,7 +1852,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 105 [00:03:24.000] response: +Info 102 [00:03:21.000] response: { "response": { "info": { @@ -1936,7 +1933,7 @@ Info 105 [00:03:24.000] response: }, "responseRequired": true } -Info 106 [00:03:25.000] request: +Info 103 [00:03:22.000] request: { "command": "rename", "arguments": { @@ -1983,8 +1980,8 @@ FsWatchesRecursive:: /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 +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:: @@ -2021,7 +2018,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [00:03:28.000] response: +Info 106 [00:03:25.000] response: { "response": { "info": { @@ -2102,7 +2099,7 @@ Info 109 [00:03:28.000] response: }, "responseRequired": true } -Info 110 [00:03:29.000] request: +Info 107 [00:03:26.000] request: { "command": "rename", "arguments": { @@ -2149,8 +2146,8 @@ FsWatchesRecursive:: /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 +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:: @@ -2187,7 +2184,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [00:03:32.000] response: +Info 110 [00:03:29.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-created.js index 65f2e4fc2ca62..044887d0f92a6 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 @@ -215,9 +215,8 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -228,19 +227,19 @@ Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 23 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 24 [00:01:28.000] Files (2) +Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 22 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 23 [00:01:27.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -250,16 +249,16 @@ Info 24 [00:01:28.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 25 [00:01:29.000] ----------------------------------------------- -Info 26 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 27 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 28 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 28 [00:01:33.000] Files (2) +Info 24 [00:01:28.000] ----------------------------------------------- +Info 25 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 26 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 27 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 27 [00:01:32.000] Files (2) -Info 28 [00:01:34.000] ----------------------------------------------- -Info 28 [00:01:35.000] Open files: -Info 28 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 28 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 27 [00:01:33.000] ----------------------------------------------- +Info 27 [00:01:34.000] Open files: +Info 27 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 27 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -284,11 +283,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 28 [00:01:38.000] response: +Info 27 [00:01:37.000] response: { "responseRequired": false } -Info 29 [00:01:39.000] request: +Info 28 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -321,18 +320,17 @@ FsWatchesRecursive:: /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 -Info 33 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +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 +Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -342,22 +340,22 @@ Info 41 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 42 [00:01:52.000] ----------------------------------------------- -Info 43 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 45 [00:01:56.000] Files (2) - -Info 45 [00:01:57.000] ----------------------------------------------- -Info 45 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:59.000] Files (2) - -Info 45 [00:02:00.000] ----------------------------------------------- -Info 45 [00:02:01.000] Open files: -Info 45 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 45 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 45 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 45 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:50.000] ----------------------------------------------- +Info 41 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 43 [00:01:54.000] Files (2) + +Info 43 [00:01:55.000] ----------------------------------------------- +Info 43 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:57.000] Files (2) + +Info 43 [00:01:58.000] ----------------------------------------------- +Info 43 [00:01:59.000] Open files: +Info 43 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 43 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 43 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 43 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -384,11 +382,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 45 [00:02:06.000] response: +Info 43 [00:02:04.000] response: { "responseRequired": false } -Info 46 [00:02:07.000] request: +Info 44 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 48 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 49 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 51 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 48 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 49 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -435,17 +433,16 @@ Info 51 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 52 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 53 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 55 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 56 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 57 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 61 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 62 [00:02:23.000] Files (2) +Info 50 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 51 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 53 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 54 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 58 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 59 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -455,26 +452,26 @@ Info 62 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 63 [00:02:24.000] ----------------------------------------------- -Info 64 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 64 [00:02:26.000] Files (2) - -Info 64 [00:02:27.000] ----------------------------------------------- -Info 64 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 64 [00:02:29.000] Files (2) - -Info 64 [00:02:30.000] ----------------------------------------------- -Info 64 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:32.000] Files (2) - -Info 64 [00:02:33.000] ----------------------------------------------- -Info 64 [00:02:34.000] Open files: -Info 64 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 64 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 64 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 64 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 64 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 60 [00:02:21.000] ----------------------------------------------- +Info 61 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 61 [00:02:23.000] Files (2) + +Info 61 [00:02:24.000] ----------------------------------------------- +Info 61 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 61 [00:02:26.000] Files (2) + +Info 61 [00:02:27.000] ----------------------------------------------- +Info 61 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:29.000] Files (2) + +Info 61 [00:02:30.000] ----------------------------------------------- +Info 61 [00:02:31.000] Open files: +Info 61 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 61 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 61 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 61 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 61 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 61 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -507,11 +504,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:41.000] response: +Info 61 [00:02:38.000] response: { "responseRequired": false } -Info 65 [00:02:42.000] request: +Info 62 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -586,7 +583,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:43.000] response: +Info 63 [00:02:40.000] response: { "response": { "definitions": [ @@ -623,7 +620,7 @@ Info 66 [00:02:43.000] response: }, "responseRequired": true } -Info 67 [00:02:44.000] request: +Info 64 [00:02:41.000] request: { "command": "rename", "arguments": { @@ -666,7 +663,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +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 PolledWatches:: @@ -701,7 +698,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:02:46.000] response: +Info 66 [00:02:43.000] response: { "response": { "info": { @@ -749,18 +746,18 @@ Info 69 [00:02:46.000] response: }, "responseRequired": true } -Info 70 [00:02:49.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 71 [00:02:50.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 72 [00:02:51.000] Scheduled: *ensureProjectForOpenFiles* -Info 73 [00:02:52.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 74 [00:02:53.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 75 [00:02:54.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one -Info 76 [00:02:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 77 [00:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 78 [00:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 79 [00:02:58.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 80 [00:02:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [00:03:00.000] request: +Info 67 [00:02:46.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 68 [00:02:47.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 69 [00:02:48.000] Scheduled: *ensureProjectForOpenFiles* +Info 70 [00:02:49.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 71 [00:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 72 [00:02:51.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json, Cancelled earlier one +Info 73 [00:02:52.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 74 [00:02:53.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 75 [00:02:54.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 76 [00:02:55.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 77 [00:02:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 78 [00:02:57.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -813,12 +810,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [00:03:01.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 83 [00:03:02.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 84 [00:03:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 85 [00:03:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 86 [00:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 87 [00:03:06.000] Files (3) +Info 79 [00:02:58.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 80 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 81 [00:03:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 82 [00:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 83 [00:03:02.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 84 [00:03:03.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -831,8 +828,8 @@ Info 87 [00:03:06.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 88 [00:03:07.000] ----------------------------------------------- -Info 89 [00:03:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 85 [00:03:04.000] ----------------------------------------------- +Info 86 [00:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -869,7 +866,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:09.000] response: +Info 87 [00:03:06.000] response: { "response": { "definitions": [ @@ -906,7 +903,7 @@ Info 90 [00:03:09.000] response: }, "responseRequired": true } -Info 91 [00:03:10.000] request: +Info 88 [00:03:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -989,7 +986,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [00:03:11.000] response: +Info 89 [00:03:08.000] response: { "response": { "definitions": [ @@ -1026,7 +1023,7 @@ Info 92 [00:03:11.000] response: }, "responseRequired": true } -Info 93 [00:03:12.000] request: +Info 90 [00:03:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1109,7 +1106,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [00:03:13.000] response: +Info 91 [00:03:10.000] response: { "response": { "definitions": [ @@ -1146,7 +1143,7 @@ Info 94 [00:03:13.000] response: }, "responseRequired": true } -Info 95 [00:03:14.000] request: +Info 92 [00:03:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1229,7 +1226,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:15.000] response: +Info 93 [00:03:12.000] response: { "response": { "definitions": [ @@ -1266,7 +1263,7 @@ Info 96 [00:03:15.000] response: }, "responseRequired": true } -Info 97 [00:03:16.000] request: +Info 94 [00:03:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1349,7 +1346,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:17.000] response: +Info 95 [00:03:14.000] response: { "response": { "definitions": [ @@ -1386,7 +1383,7 @@ Info 98 [00:03:17.000] response: }, "responseRequired": true } -Info 99 [00:03:18.000] request: +Info 96 [00:03:15.000] request: { "command": "rename", "arguments": { @@ -1433,10 +1430,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 101 [00:03:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 102 [00:03:21.000] Search path: /user/username/projects/myproject/dependency -Info 103 [00:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1473,7 +1470,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:23.000] response: +Info 101 [00:03:20.000] response: { "response": { "info": { @@ -1554,7 +1551,7 @@ Info 104 [00:03:23.000] response: }, "responseRequired": true } -Info 105 [00:03:24.000] request: +Info 102 [00:03:21.000] request: { "command": "rename", "arguments": { @@ -1601,8 +1598,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:25.000] Search path: /user/username/projects/myproject/dependency -Info 107 [00:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1639,7 +1636,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:27.000] response: +Info 105 [00:03:24.000] response: { "response": { "info": { @@ -1720,7 +1717,7 @@ Info 108 [00:03:27.000] response: }, "responseRequired": true } -Info 109 [00:03:28.000] request: +Info 106 [00:03:25.000] request: { "command": "rename", "arguments": { @@ -1767,8 +1764,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:29.000] Search path: /user/username/projects/myproject/dependency -Info 111 [00:03:30.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1805,7 +1802,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:03:31.000] response: +Info 109 [00:03:28.000] response: { "response": { "info": { @@ -1886,7 +1883,7 @@ Info 112 [00:03:31.000] response: }, "responseRequired": true } -Info 113 [00:03:32.000] request: +Info 110 [00:03:29.000] request: { "command": "rename", "arguments": { @@ -1933,8 +1930,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [00:03:33.000] Search path: /user/username/projects/myproject/dependency -Info 115 [00:03:34.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1971,7 +1968,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [00:03:35.000] response: +Info 113 [00:03:32.000] response: { "response": { "info": { @@ -2052,7 +2049,7 @@ Info 116 [00:03:35.000] response: }, "responseRequired": true } -Info 117 [00:03:36.000] request: +Info 114 [00:03:33.000] request: { "command": "rename", "arguments": { @@ -2099,8 +2096,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 118 [00:03:37.000] Search path: /user/username/projects/myproject/dependency -Info 119 [00:03:38.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2137,7 +2134,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 120 [00:03:39.000] response: +Info 117 [00:03:36.000] response: { "response": { "info": { @@ -2218,7 +2215,7 @@ Info 120 [00:03:39.000] response: }, "responseRequired": true } -Info 121 [00:03:40.000] request: +Info 118 [00:03:37.000] request: { "seq": 0, "type": "request", @@ -2263,24 +2260,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 122 [00:03:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 123 [00:03:42.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 123 [00:03:43.000] Files (3) +Info 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) -Info 123 [00:03:44.000] ----------------------------------------------- -Info 123 [00:03:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 123 [00:03:46.000] Files (2) +Info 120 [00:03:41.000] ----------------------------------------------- +Info 120 [00:03:42.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 120 [00:03:43.000] Files (2) -Info 123 [00:03:47.000] ----------------------------------------------- -Info 123 [00:03:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 123 [00:03:49.000] Files (2) +Info 120 [00:03:44.000] ----------------------------------------------- +Info 120 [00:03:45.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 120 [00:03:46.000] Files (2) -Info 123 [00:03:50.000] ----------------------------------------------- -Info 123 [00:03:51.000] Open files: -Info 123 [00:03:52.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 123 [00:03:53.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 123 [00:03:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 123 [00:03:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 120 [00:03:47.000] ----------------------------------------------- +Info 120 [00:03:48.000] Open files: +Info 120 [00:03:49.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 120 [00:03:50.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 120 [00:03:51.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 120 [00:03:52.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2319,11 +2316,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 123 [00:03:56.000] response: +Info 120 [00:03:53.000] response: { "responseRequired": false } -Info 124 [00:03:57.000] request: +Info 121 [00:03:54.000] request: { "seq": 0, "type": "request", @@ -2370,28 +2367,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 125 [00:03:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 126 [00:03:59.000] Search path: /user/username/projects/myproject/random -Info 127 [00:04:00.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 128 [00:04:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 128 [00:04:02.000] Files (3) - -Info 128 [00:04:03.000] ----------------------------------------------- -Info 128 [00:04:04.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 128 [00:04:05.000] Files (2) - -Info 128 [00:04:06.000] ----------------------------------------------- -Info 128 [00:04:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 128 [00:04:08.000] Files (2) - -Info 128 [00:04:09.000] ----------------------------------------------- -Info 128 [00:04:10.000] Open files: -Info 128 [00:04:11.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 128 [00:04:12.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 128 [00:04:13.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 128 [00:04:14.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 128 [00:04:15.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 128 [00:04:16.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 125 [00:03:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 125 [00:03:59.000] Files (3) + +Info 125 [00:04:00.000] ----------------------------------------------- +Info 125 [00:04:01.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 125 [00:04:02.000] Files (2) + +Info 125 [00:04:03.000] ----------------------------------------------- +Info 125 [00:04:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 125 [00:04:05.000] Files (2) + +Info 125 [00:04:06.000] ----------------------------------------------- +Info 125 [00:04:07.000] Open files: +Info 125 [00:04:08.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 125 [00:04:09.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 125 [00:04:10.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 125 [00:04:11.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 125 [00:04:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 125 [00:04:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2428,11 +2425,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 128 [00:04:17.000] response: +Info 125 [00:04:14.000] response: { "responseRequired": false } -Info 129 [00:04:18.000] request: +Info 126 [00:04:15.000] request: { "seq": 0, "type": "request", @@ -2477,24 +2474,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 130 [00:04:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 131 [00:04:20.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 131 [00:04:21.000] Files (3) +Info 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) -Info 131 [00:04:22.000] ----------------------------------------------- -Info 131 [00:04:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 131 [00:04:24.000] Files (2) +Info 128 [00:04:19.000] ----------------------------------------------- +Info 128 [00:04:20.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 128 [00:04:21.000] Files (2) -Info 131 [00:04:25.000] ----------------------------------------------- -Info 131 [00:04:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 131 [00:04:27.000] Files (2) +Info 128 [00:04:22.000] ----------------------------------------------- +Info 128 [00:04:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 128 [00:04:24.000] Files (2) -Info 131 [00:04:28.000] ----------------------------------------------- -Info 131 [00:04:29.000] Open files: -Info 131 [00:04:30.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 131 [00:04:31.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 131 [00:04:32.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 131 [00:04:33.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 128 [00:04:25.000] ----------------------------------------------- +Info 128 [00:04:26.000] Open files: +Info 128 [00:04:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 128 [00:04:28.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 128 [00:04:29.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 128 [00:04:30.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2533,11 +2530,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 131 [00:04:34.000] response: +Info 128 [00:04:31.000] response: { "responseRequired": false } -Info 132 [00:04:35.000] request: +Info 129 [00:04:32.000] request: { "seq": 0, "type": "request", @@ -2584,22 +2581,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 133 [00:04:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 134 [00:04:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 134 [00:04:38.000] Files (3) +Info 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) -Info 134 [00:04:39.000] ----------------------------------------------- -Info 134 [00:04:40.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 134 [00:04:41.000] Files (2) +Info 131 [00:04:36.000] ----------------------------------------------- +Info 131 [00:04:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 131 [00:04:38.000] Files (2) -Info 134 [00:04:42.000] ----------------------------------------------- -Info 134 [00:04:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 134 [00:04:44.000] Files (2) +Info 131 [00:04:39.000] ----------------------------------------------- +Info 131 [00:04:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 131 [00:04:41.000] Files (2) -Info 134 [00:04:45.000] ----------------------------------------------- -Info 134 [00:04:46.000] Open files: -Info 134 [00:04:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 134 [00:04:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 131 [00:04:42.000] ----------------------------------------------- +Info 131 [00:04:43.000] Open files: +Info 131 [00:04:44.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 131 [00:04:45.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2640,11 +2637,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 134 [00:04:49.000] response: +Info 131 [00:04:46.000] response: { "responseRequired": false } -Info 135 [00:04:50.000] request: +Info 132 [00:04:47.000] request: { "seq": 0, "type": "request", @@ -2693,20 +2690,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 136 [00:04:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 137 [00:04:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 137 [00:04:53.000] Files (3) +Info 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) -Info 137 [00:04:54.000] ----------------------------------------------- -Info 137 [00:04:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 137 [00:04:56.000] Files (2) +Info 134 [00:04:51.000] ----------------------------------------------- +Info 134 [00:04:52.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 134 [00:04:53.000] Files (2) -Info 137 [00:04:57.000] ----------------------------------------------- -Info 137 [00:04:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 137 [00:04:59.000] Files (2) +Info 134 [00:04:54.000] ----------------------------------------------- +Info 134 [00:04:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 134 [00:04:56.000] Files (2) -Info 137 [00:05:00.000] ----------------------------------------------- -Info 137 [00:05:01.000] Open files: +Info 134 [00:04:57.000] ----------------------------------------------- +Info 134 [00:04:58.000] Open files: After request PolledWatches:: @@ -2749,11 +2746,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 137 [00:05:02.000] response: +Info 134 [00:04:59.000] response: { "responseRequired": false } -Info 138 [00:05:03.000] request: +Info 135 [00:05:00.000] request: { "seq": 0, "type": "request", @@ -2804,12 +2801,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 139 [00:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 140 [00:05:05.000] Search path: /user/username/projects/myproject/random -Info 141 [00:05:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 142 [00:05:07.000] `remove Project:: -Info 143 [00:05:08.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 144 [00:05:09.000] Files (3) +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 +Info 139 [00:05:04.000] `remove Project:: +Info 140 [00:05:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 141 [00:05:06.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -2822,19 +2819,19 @@ Info 144 [00:05:09.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 145 [00:05:10.000] ----------------------------------------------- -Info 146 [00:05:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 147 [00:05:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 148 [00:05:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 149 [00:05:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 150 [00:05:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 151 [00:05:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 152 [00:05:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 153 [00:05:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 154 [00:05:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 155 [00:05:20.000] `remove Project:: -Info 156 [00:05:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 157 [00:05:22.000] Files (2) +Info 142 [00:05:07.000] ----------------------------------------------- +Info 143 [00:05:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 144 [00:05:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 145 [00:05:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 146 [00:05:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 147 [00:05:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 148 [00:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 149 [00:05:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 150 [00:05:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 151 [00:05:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 152 [00:05:17.000] `remove Project:: +Info 153 [00:05:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 154 [00:05:19.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2844,26 +2841,26 @@ Info 157 [00:05:22.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 158 [00:05:23.000] ----------------------------------------------- -Info 159 [00:05:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 160 [00:05:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 161 [00:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 162 [00:05:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 163 [00:05:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 164 [00:05:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 165 [00:05:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 166 [00:05:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 167 [00:05:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 168 [00:05:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 169 [00:05:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 170 [00:05:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 171 [00:05:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 171 [00:05:37.000] Files (2) - -Info 171 [00:05:38.000] ----------------------------------------------- -Info 171 [00:05:39.000] Open files: -Info 171 [00:05:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 171 [00:05:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 155 [00:05:20.000] ----------------------------------------------- +Info 156 [00:05:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 157 [00:05:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 158 [00:05:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 159 [00:05:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 160 [00:05:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 161 [00:05:26.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 162 [00:05:27.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 163 [00:05:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 164 [00:05:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 165 [00:05:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 166 [00:05:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 167 [00:05:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 168 [00:05:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 168 [00:05:34.000] Files (2) + +Info 168 [00:05:35.000] ----------------------------------------------- +Info 168 [00:05:36.000] Open files: +Info 168 [00:05:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 168 [00:05:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2882,7 +2879,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 171 [00:05:42.000] response: +Info 168 [00:05:39.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-deleted.js index 67b6f85f8d937..54c586f4d647b 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 @@ -223,9 +223,8 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +235,20 @@ Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:28.000] Files (3) +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +261,16 @@ Info 25 [00:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:29.000] ----------------------------------------------- -Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:33.000] Files (3) +Info 25 [00:01:28.000] ----------------------------------------------- +Info 26 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:32.000] Files (3) -Info 29 [00:01:34.000] ----------------------------------------------- -Info 29 [00:01:35.000] Open files: -Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:33.000] ----------------------------------------------- +Info 28 [00:01:34.000] Open files: +Info 28 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:38.000] response: +Info 28 [00:01:37.000] response: { "responseRequired": false } -Info 30 [00:01:39.000] request: +Info 29 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -337,18 +336,17 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/dependency -Info 32 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +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 +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +356,22 @@ Info 42 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:56.000] Files (3) - -Info 46 [00:01:57.000] ----------------------------------------------- -Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:01:59.000] Files (2) - -Info 46 [00:02:00.000] ----------------------------------------------- -Info 46 [00:02:01.000] Open files: -Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) + +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) + +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -402,11 +400,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [00:02:06.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 47 [00:02:07.000] request: +Info 45 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -443,11 +441,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -455,17 +453,16 @@ Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:23.000] Files (2) +Info 51 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -475,26 +472,26 @@ Info 63 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:24.000] ----------------------------------------------- -Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:26.000] Files (3) - -Info 65 [00:02:27.000] ----------------------------------------------- -Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:29.000] Files (2) - -Info 65 [00:02:30.000] ----------------------------------------------- -Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:32.000] Files (2) - -Info 65 [00:02:33.000] ----------------------------------------------- -Info 65 [00:02:34.000] Open files: -Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:21.000] ----------------------------------------------- +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (3) + +Info 62 [00:02:24.000] ----------------------------------------------- +Info 62 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:26.000] Files (2) + +Info 62 [00:02:27.000] ----------------------------------------------- +Info 62 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:29.000] Files (2) + +Info 62 [00:02:30.000] ----------------------------------------------- +Info 62 [00:02:31.000] Open files: +Info 62 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -529,11 +526,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:41.000] response: +Info 62 [00:02:38.000] response: { "responseRequired": false } -Info 66 [00:02:42.000] request: +Info 63 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -578,7 +575,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -615,7 +612,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:44.000] response: +Info 65 [00:02:41.000] response: { "response": { "definitions": [ @@ -652,7 +649,7 @@ Info 68 [00:02:44.000] response: }, "responseRequired": true } -Info 69 [00:02:45.000] request: +Info 66 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -699,8 +696,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -737,7 +734,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:48.000] response: +Info 69 [00:02:45.000] response: { "response": { "info": { @@ -818,17 +815,17 @@ Info 72 [00:02:48.000] response: }, "responseRequired": true } -Info 73 [00:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 74 [00:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 75 [00:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 76 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles* -Info 77 [00:02:54.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 78 [00:02:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 79 [00:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 80 [00:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [00:02:58.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 82 [00:02:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 83 [00:03:00.000] request: +Info 70 [00:02:47.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 71 [00:02:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 72 [00:02:49.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 73 [00:02:50.000] Scheduled: *ensureProjectForOpenFiles* +Info 74 [00:02:51.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 75 [00:02:52.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 76 [00:02:53.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 77 [00:02:54.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 78 [00:02:55.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 79 [00:02:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 80 [00:02:57.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -874,10 +871,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:03:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 85 [00:03:02.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 86 [00:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 87 [00:03:04.000] Files (2) +Info 81 [00:02:58.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 82 [00:02:59.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 83 [00:03:00.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 84 [00:03:01.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -887,7 +884,7 @@ Info 87 [00:03:04.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 88 [00:03:05.000] ----------------------------------------------- +Info 85 [00:03:02.000] ----------------------------------------------- After request PolledWatches:: @@ -922,7 +919,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:06.000] response: +Info 86 [00:03:03.000] response: { "response": { "definitions": [ @@ -959,7 +956,7 @@ Info 89 [00:03:06.000] response: }, "responseRequired": true } -Info 90 [00:03:07.000] request: +Info 87 [00:03:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1038,7 +1035,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [00:03:08.000] response: +Info 88 [00:03:05.000] response: { "response": { "definitions": [ @@ -1075,7 +1072,7 @@ Info 91 [00:03:08.000] response: }, "responseRequired": true } -Info 92 [00:03:09.000] request: +Info 89 [00:03:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1154,7 +1151,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [00:03:10.000] response: +Info 90 [00:03:07.000] response: { "response": { "definitions": [ @@ -1191,7 +1188,7 @@ Info 93 [00:03:10.000] response: }, "responseRequired": true } -Info 94 [00:03:11.000] request: +Info 91 [00:03:08.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1270,7 +1267,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [00:03:12.000] response: +Info 92 [00:03:09.000] response: { "response": { "definitions": [ @@ -1307,7 +1304,7 @@ Info 95 [00:03:12.000] response: }, "responseRequired": true } -Info 96 [00:03:13.000] request: +Info 93 [00:03:10.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1386,7 +1383,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [00:03:14.000] response: +Info 94 [00:03:11.000] response: { "response": { "definitions": [ @@ -1423,7 +1420,7 @@ Info 97 [00:03:14.000] response: }, "responseRequired": true } -Info 98 [00:03:15.000] request: +Info 95 [00:03:12.000] request: { "command": "rename", "arguments": { @@ -1468,9 +1465,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [00:03:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 100 [00:03:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 101 [00:03:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +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 After request PolledWatches:: @@ -1507,7 +1504,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:19.000] response: +Info 99 [00:03:16.000] response: { "response": { "info": { @@ -1555,7 +1552,7 @@ Info 102 [00:03:19.000] response: }, "responseRequired": true } -Info 103 [00:03:20.000] request: +Info 100 [00:03:17.000] request: { "command": "rename", "arguments": { @@ -1638,7 +1635,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:21.000] response: +Info 101 [00:03:18.000] response: { "response": { "info": { @@ -1686,7 +1683,7 @@ Info 104 [00:03:21.000] response: }, "responseRequired": true } -Info 105 [00:03:22.000] request: +Info 102 [00:03:19.000] request: { "command": "rename", "arguments": { @@ -1769,7 +1766,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:23.000] response: +Info 103 [00:03:20.000] response: { "response": { "info": { @@ -1817,7 +1814,7 @@ Info 106 [00:03:23.000] response: }, "responseRequired": true } -Info 107 [00:03:24.000] request: +Info 104 [00:03:21.000] request: { "command": "rename", "arguments": { @@ -1900,7 +1897,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:25.000] response: +Info 105 [00:03:22.000] response: { "response": { "info": { @@ -1948,7 +1945,7 @@ Info 108 [00:03:25.000] response: }, "responseRequired": true } -Info 109 [00:03:26.000] request: +Info 106 [00:03:23.000] request: { "command": "rename", "arguments": { @@ -2031,7 +2028,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:27.000] response: +Info 107 [00:03:24.000] response: { "response": { "info": { @@ -2079,7 +2076,7 @@ Info 110 [00:03:27.000] response: }, "responseRequired": true } -Info 111 [00:03:28.000] request: +Info 108 [00:03:25.000] request: { "seq": 0, "type": "request", @@ -2124,24 +2121,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:03:29.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 113 [00:03:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 113 [00:03:31.000] Files (2) +Info 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) -Info 113 [00:03:32.000] ----------------------------------------------- -Info 113 [00:03:33.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 113 [00:03:34.000] Files (2) +Info 110 [00:03:29.000] ----------------------------------------------- +Info 110 [00:03:30.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 110 [00:03:31.000] Files (2) -Info 113 [00:03:35.000] ----------------------------------------------- -Info 113 [00:03:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 113 [00:03:37.000] Files (2) +Info 110 [00:03:32.000] ----------------------------------------------- +Info 110 [00:03:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 110 [00:03:34.000] Files (2) -Info 113 [00:03:38.000] ----------------------------------------------- -Info 113 [00:03:39.000] Open files: -Info 113 [00:03:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 113 [00:03:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 113 [00:03:42.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 113 [00:03:43.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 110 [00:03:35.000] ----------------------------------------------- +Info 110 [00:03:36.000] Open files: +Info 110 [00:03:37.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 110 [00:03:38.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 110 [00:03:39.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 110 [00:03:40.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2180,11 +2177,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [00:03:44.000] response: +Info 110 [00:03:41.000] response: { "responseRequired": false } -Info 114 [00:03:45.000] request: +Info 111 [00:03:42.000] request: { "seq": 0, "type": "request", @@ -2231,29 +2228,29 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [00:03:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 116 [00:03:47.000] Search path: /user/username/projects/myproject/random -Info 117 [00:03:48.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 118 [00:03:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 119 [00:03:50.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 119 [00:03:51.000] Files (2) - -Info 119 [00:03:52.000] ----------------------------------------------- -Info 119 [00:03:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 119 [00:03:54.000] Files (2) - -Info 119 [00:03:55.000] ----------------------------------------------- -Info 119 [00:03:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 119 [00:03:57.000] Files (2) - -Info 119 [00:03:58.000] ----------------------------------------------- -Info 119 [00:03:59.000] Open files: -Info 119 [00:04:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 119 [00:04:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 119 [00:04:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 119 [00:04:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 119 [00:04:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 119 [00:04:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 115 [00:03:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 116 [00:03:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 116 [00:03:48.000] Files (2) + +Info 116 [00:03:49.000] ----------------------------------------------- +Info 116 [00:03:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 116 [00:03:51.000] Files (2) + +Info 116 [00:03:52.000] ----------------------------------------------- +Info 116 [00:03:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 116 [00:03:54.000] Files (2) + +Info 116 [00:03:55.000] ----------------------------------------------- +Info 116 [00:03:56.000] Open files: +Info 116 [00:03:57.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 116 [00:03:58.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 116 [00:03:59.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 116 [00:04:00.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 116 [00:04:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 116 [00:04:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2288,11 +2285,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 119 [00:04:06.000] response: +Info 116 [00:04:03.000] response: { "responseRequired": false } -Info 120 [00:04:07.000] request: +Info 117 [00:04:04.000] request: { "seq": 0, "type": "request", @@ -2335,24 +2332,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 121 [00:04:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 122 [00:04:09.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 122 [00:04:10.000] Files (2) +Info 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) -Info 122 [00:04:11.000] ----------------------------------------------- -Info 122 [00:04:12.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 122 [00:04:13.000] Files (2) +Info 119 [00:04:08.000] ----------------------------------------------- +Info 119 [00:04:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 119 [00:04:10.000] Files (2) -Info 122 [00:04:14.000] ----------------------------------------------- -Info 122 [00:04:15.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 122 [00:04:16.000] Files (2) +Info 119 [00:04:11.000] ----------------------------------------------- +Info 119 [00:04:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 119 [00:04:13.000] Files (2) -Info 122 [00:04:17.000] ----------------------------------------------- -Info 122 [00:04:18.000] Open files: -Info 122 [00:04:19.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 122 [00:04:20.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 122 [00:04:21.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 122 [00:04:22.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 119 [00:04:14.000] ----------------------------------------------- +Info 119 [00:04:15.000] Open files: +Info 119 [00:04:16.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 119 [00:04:17.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 119 [00:04:18.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 119 [00:04:19.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2389,11 +2386,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 122 [00:04:23.000] response: +Info 119 [00:04:20.000] response: { "responseRequired": false } -Info 123 [00:04:24.000] request: +Info 120 [00:04:21.000] request: { "seq": 0, "type": "request", @@ -2438,22 +2435,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 124 [00:04:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 125 [00:04:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 125 [00:04:27.000] Files (2) +Info 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) -Info 125 [00:04:28.000] ----------------------------------------------- -Info 125 [00:04:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 125 [00:04:30.000] Files (2) +Info 122 [00:04:25.000] ----------------------------------------------- +Info 122 [00:04:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 122 [00:04:27.000] Files (2) -Info 125 [00:04:31.000] ----------------------------------------------- -Info 125 [00:04:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 125 [00:04:33.000] Files (2) +Info 122 [00:04:28.000] ----------------------------------------------- +Info 122 [00:04:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 122 [00:04:30.000] Files (2) -Info 125 [00:04:34.000] ----------------------------------------------- -Info 125 [00:04:35.000] Open files: -Info 125 [00:04:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 125 [00:04:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 122 [00:04:31.000] ----------------------------------------------- +Info 122 [00:04:32.000] Open files: +Info 122 [00:04:33.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 122 [00:04:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2492,11 +2489,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 125 [00:04:38.000] response: +Info 122 [00:04:35.000] response: { "responseRequired": false } -Info 126 [00:04:39.000] request: +Info 123 [00:04:36.000] request: { "seq": 0, "type": "request", @@ -2543,20 +2540,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 127 [00:04:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 128 [00:04:41.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 128 [00:04:42.000] Files (2) +Info 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) -Info 128 [00:04:43.000] ----------------------------------------------- -Info 128 [00:04:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 128 [00:04:45.000] Files (2) +Info 125 [00:04:40.000] ----------------------------------------------- +Info 125 [00:04:41.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 125 [00:04:42.000] Files (2) -Info 128 [00:04:46.000] ----------------------------------------------- -Info 128 [00:04:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 128 [00:04:48.000] Files (2) +Info 125 [00:04:43.000] ----------------------------------------------- +Info 125 [00:04:44.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 125 [00:04:45.000] Files (2) -Info 128 [00:04:49.000] ----------------------------------------------- -Info 128 [00:04:50.000] Open files: +Info 125 [00:04:46.000] ----------------------------------------------- +Info 125 [00:04:47.000] Open files: After request PolledWatches:: @@ -2597,11 +2594,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 128 [00:04:51.000] response: +Info 125 [00:04:48.000] response: { "responseRequired": false } -Info 129 [00:04:52.000] request: +Info 126 [00:04:49.000] request: { "seq": 0, "type": "request", @@ -2650,12 +2647,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 130 [00:04:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 131 [00:04:54.000] Search path: /user/username/projects/myproject/random -Info 132 [00:04:55.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 133 [00:04:56.000] `remove Project:: -Info 134 [00:04:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 135 [00:04:58.000] Files (2) +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 +Info 130 [00:04:53.000] `remove Project:: +Info 131 [00:04:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 132 [00:04:55.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -2665,19 +2662,19 @@ Info 135 [00:04:58.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 136 [00:04:59.000] ----------------------------------------------- -Info 137 [00:05:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 138 [00:05:01.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 139 [00:05:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 140 [00:05:03.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 141 [00:05:04.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 142 [00:05:05.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 143 [00:05:06.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 144 [00:05:07.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 145 [00:05:08.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 146 [00:05:09.000] `remove Project:: -Info 147 [00:05:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 148 [00:05:11.000] Files (2) +Info 133 [00:04:56.000] ----------------------------------------------- +Info 134 [00:04:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 135 [00:04:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 136 [00:04:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 137 [00:05:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 138 [00:05:01.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 139 [00:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 140 [00:05:03.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 141 [00:05:04.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 142 [00:05:05.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 143 [00:05:06.000] `remove Project:: +Info 144 [00:05:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 145 [00:05:08.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2687,24 +2684,24 @@ Info 148 [00:05:11.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 149 [00:05:12.000] ----------------------------------------------- -Info 150 [00:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 151 [00:05:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 152 [00:05:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 153 [00:05:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 154 [00:05:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 155 [00:05:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 156 [00:05:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 157 [00:05:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 158 [00:05:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 159 [00:05:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 160 [00:05:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 160 [00:05:24.000] Files (2) - -Info 160 [00:05:25.000] ----------------------------------------------- -Info 160 [00:05:26.000] Open files: -Info 160 [00:05:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 160 [00:05:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 146 [00:05:09.000] ----------------------------------------------- +Info 147 [00:05:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 148 [00:05:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 149 [00:05:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 150 [00:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 151 [00:05:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 152 [00:05:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 153 [00:05:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 154 [00:05:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 155 [00:05:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 156 [00:05:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 157 [00:05:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 157 [00:05:21.000] Files (2) + +Info 157 [00:05:22.000] ----------------------------------------------- +Info 157 [00:05:23.000] Open files: +Info 157 [00:05:24.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 157 [00:05:25.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2723,7 +2720,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 160 [00:05:29.000] response: +Info 157 [00:05:26.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dts-not-present.js index ebb9acaf12911..2782f90163510 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 @@ -215,9 +215,8 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -228,19 +227,19 @@ Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 23 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 24 [00:01:28.000] Files (2) +Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 22 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 23 [00:01:27.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -250,16 +249,16 @@ Info 24 [00:01:28.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 25 [00:01:29.000] ----------------------------------------------- -Info 26 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 27 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 28 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 28 [00:01:33.000] Files (2) +Info 24 [00:01:28.000] ----------------------------------------------- +Info 25 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 26 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 27 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 27 [00:01:32.000] Files (2) -Info 28 [00:01:34.000] ----------------------------------------------- -Info 28 [00:01:35.000] Open files: -Info 28 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 28 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 27 [00:01:33.000] ----------------------------------------------- +Info 27 [00:01:34.000] Open files: +Info 27 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 27 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -284,11 +283,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 28 [00:01:38.000] response: +Info 27 [00:01:37.000] response: { "responseRequired": false } -Info 29 [00:01:39.000] request: +Info 28 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -321,18 +320,17 @@ FsWatchesRecursive:: /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 -Info 33 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +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 +Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -342,22 +340,22 @@ Info 41 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 42 [00:01:52.000] ----------------------------------------------- -Info 43 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 44 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 45 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 45 [00:01:56.000] Files (2) - -Info 45 [00:01:57.000] ----------------------------------------------- -Info 45 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 45 [00:01:59.000] Files (2) - -Info 45 [00:02:00.000] ----------------------------------------------- -Info 45 [00:02:01.000] Open files: -Info 45 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 45 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 45 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 45 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 40 [00:01:50.000] ----------------------------------------------- +Info 41 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 42 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 43 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 43 [00:01:54.000] Files (2) + +Info 43 [00:01:55.000] ----------------------------------------------- +Info 43 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 43 [00:01:57.000] Files (2) + +Info 43 [00:01:58.000] ----------------------------------------------- +Info 43 [00:01:59.000] Open files: +Info 43 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 43 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 43 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 43 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -384,11 +382,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 45 [00:02:06.000] response: +Info 43 [00:02:04.000] response: { "responseRequired": false } -Info 46 [00:02:07.000] request: +Info 44 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -423,11 +421,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 47 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 48 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 49 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 51 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 48 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 49 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -435,17 +433,16 @@ Info 51 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 52 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 53 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 55 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 56 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 57 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 61 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 62 [00:02:23.000] Files (2) +Info 50 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 51 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 53 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 54 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 58 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 59 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -455,26 +452,26 @@ Info 62 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 63 [00:02:24.000] ----------------------------------------------- -Info 64 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 64 [00:02:26.000] Files (2) - -Info 64 [00:02:27.000] ----------------------------------------------- -Info 64 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 64 [00:02:29.000] Files (2) - -Info 64 [00:02:30.000] ----------------------------------------------- -Info 64 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:32.000] Files (2) - -Info 64 [00:02:33.000] ----------------------------------------------- -Info 64 [00:02:34.000] Open files: -Info 64 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 64 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 64 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 64 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 64 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 60 [00:02:21.000] ----------------------------------------------- +Info 61 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 61 [00:02:23.000] Files (2) + +Info 61 [00:02:24.000] ----------------------------------------------- +Info 61 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 61 [00:02:26.000] Files (2) + +Info 61 [00:02:27.000] ----------------------------------------------- +Info 61 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:29.000] Files (2) + +Info 61 [00:02:30.000] ----------------------------------------------- +Info 61 [00:02:31.000] Open files: +Info 61 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 61 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 61 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 61 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 61 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 61 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -507,11 +504,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:41.000] response: +Info 61 [00:02:38.000] response: { "responseRequired": false } -Info 65 [00:02:42.000] request: +Info 62 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -586,7 +583,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:43.000] response: +Info 63 [00:02:40.000] response: { "response": { "definitions": [ @@ -623,7 +620,7 @@ Info 66 [00:02:43.000] response: }, "responseRequired": true } -Info 67 [00:02:44.000] request: +Info 64 [00:02:41.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -698,7 +695,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:45.000] response: +Info 65 [00:02:42.000] response: { "response": { "definitions": [ @@ -735,7 +732,7 @@ Info 68 [00:02:45.000] response: }, "responseRequired": true } -Info 69 [00:02:46.000] request: +Info 66 [00:02:43.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -810,7 +807,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:47.000] response: +Info 67 [00:02:44.000] response: { "response": { "definitions": [ @@ -847,7 +844,7 @@ Info 70 [00:02:47.000] response: }, "responseRequired": true } -Info 71 [00:02:48.000] request: +Info 68 [00:02:45.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -922,7 +919,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:49.000] response: +Info 69 [00:02:46.000] response: { "response": { "definitions": [ @@ -959,7 +956,7 @@ Info 72 [00:02:49.000] response: }, "responseRequired": true } -Info 73 [00:02:50.000] request: +Info 70 [00:02:47.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1034,7 +1031,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:51.000] response: +Info 71 [00:02:48.000] response: { "response": { "definitions": [ @@ -1071,7 +1068,7 @@ Info 74 [00:02:51.000] response: }, "responseRequired": true } -Info 75 [00:02:52.000] request: +Info 72 [00:02:49.000] request: { "command": "rename", "arguments": { @@ -1114,7 +1111,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +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 PolledWatches:: @@ -1149,7 +1146,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:02:54.000] response: +Info 74 [00:02:51.000] response: { "response": { "info": { @@ -1197,7 +1194,7 @@ Info 77 [00:02:54.000] response: }, "responseRequired": true } -Info 78 [00:02:55.000] request: +Info 75 [00:02:52.000] request: { "command": "rename", "arguments": { @@ -1276,7 +1273,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [00:02:56.000] response: +Info 76 [00:02:53.000] response: { "response": { "info": { @@ -1324,7 +1321,7 @@ Info 79 [00:02:56.000] response: }, "responseRequired": true } -Info 80 [00:02:57.000] request: +Info 77 [00:02:54.000] request: { "command": "rename", "arguments": { @@ -1403,7 +1400,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [00:02:58.000] response: +Info 78 [00:02:55.000] response: { "response": { "info": { @@ -1451,7 +1448,7 @@ Info 81 [00:02:58.000] response: }, "responseRequired": true } -Info 82 [00:02:59.000] request: +Info 79 [00:02:56.000] request: { "command": "rename", "arguments": { @@ -1530,7 +1527,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [00:03:00.000] response: +Info 80 [00:02:57.000] response: { "response": { "info": { @@ -1578,7 +1575,7 @@ Info 83 [00:03:00.000] response: }, "responseRequired": true } -Info 84 [00:03:01.000] request: +Info 81 [00:02:58.000] request: { "command": "rename", "arguments": { @@ -1657,7 +1654,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [00:03:02.000] response: +Info 82 [00:02:59.000] response: { "response": { "info": { @@ -1705,7 +1702,7 @@ Info 85 [00:03:02.000] response: }, "responseRequired": true } -Info 86 [00:03:03.000] request: +Info 83 [00:03:00.000] request: { "seq": 0, "type": "request", @@ -1748,24 +1745,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [00:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 88 [00:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 88 [00:03:06.000] Files (2) +Info 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) -Info 88 [00:03:07.000] ----------------------------------------------- -Info 88 [00:03:08.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 88 [00:03:09.000] Files (2) +Info 85 [00:03:04.000] ----------------------------------------------- +Info 85 [00:03:05.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 85 [00:03:06.000] Files (2) -Info 88 [00:03:10.000] ----------------------------------------------- -Info 88 [00:03:11.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 88 [00:03:12.000] Files (2) +Info 85 [00:03:07.000] ----------------------------------------------- +Info 85 [00:03:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 85 [00:03:09.000] Files (2) -Info 88 [00:03:13.000] ----------------------------------------------- -Info 88 [00:03:14.000] Open files: -Info 88 [00:03:15.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 88 [00:03:16.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 88 [00:03:17.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 88 [00:03:18.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 85 [00:03:10.000] ----------------------------------------------- +Info 85 [00:03:11.000] Open files: +Info 85 [00:03:12.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 85 [00:03:13.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 85 [00:03:14.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 85 [00:03:15.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1802,11 +1799,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [00:03:19.000] response: +Info 85 [00:03:16.000] response: { "responseRequired": false } -Info 89 [00:03:20.000] request: +Info 86 [00:03:17.000] request: { "seq": 0, "type": "request", @@ -1851,28 +1848,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 91 [00:03:22.000] Search path: /user/username/projects/myproject/random -Info 92 [00:03:23.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 93 [00:03:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 93 [00:03:25.000] Files (2) - -Info 93 [00:03:26.000] ----------------------------------------------- -Info 93 [00:03:27.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 93 [00:03:28.000] Files (2) - -Info 93 [00:03:29.000] ----------------------------------------------- -Info 93 [00:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 93 [00:03:31.000] Files (2) - -Info 93 [00:03:32.000] ----------------------------------------------- -Info 93 [00:03:33.000] Open files: -Info 93 [00:03:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 93 [00:03:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 93 [00:03:36.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 93 [00:03:37.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 93 [00:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 93 [00:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 90 [00:03:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 90 [00:03:22.000] Files (2) + +Info 90 [00:03:23.000] ----------------------------------------------- +Info 90 [00:03:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 90 [00:03:25.000] Files (2) + +Info 90 [00:03:26.000] ----------------------------------------------- +Info 90 [00:03:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 90 [00:03:28.000] Files (2) + +Info 90 [00:03:29.000] ----------------------------------------------- +Info 90 [00:03:30.000] Open files: +Info 90 [00:03:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 90 [00:03:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 90 [00:03:33.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 90 [00:03:34.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 90 [00:03:35.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 90 [00:03:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1907,11 +1904,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [00:03:40.000] response: +Info 90 [00:03:37.000] response: { "responseRequired": false } -Info 94 [00:03:41.000] request: +Info 91 [00:03:38.000] request: { "seq": 0, "type": "request", @@ -1954,24 +1951,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [00:03:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 96 [00:03:43.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 96 [00:03:44.000] Files (2) +Info 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) -Info 96 [00:03:45.000] ----------------------------------------------- -Info 96 [00:03:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 96 [00:03:47.000] Files (2) +Info 93 [00:03:42.000] ----------------------------------------------- +Info 93 [00:03:43.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 93 [00:03:44.000] Files (2) -Info 96 [00:03:48.000] ----------------------------------------------- -Info 96 [00:03:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 96 [00:03:50.000] Files (2) +Info 93 [00:03:45.000] ----------------------------------------------- +Info 93 [00:03:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 93 [00:03:47.000] Files (2) -Info 96 [00:03:51.000] ----------------------------------------------- -Info 96 [00:03:52.000] Open files: -Info 96 [00:03:53.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 96 [00:03:54.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 96 [00:03:55.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 96 [00:03:56.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 93 [00:03:48.000] ----------------------------------------------- +Info 93 [00:03:49.000] Open files: +Info 93 [00:03:50.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 93 [00:03:51.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 93 [00:03:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 93 [00:03:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2008,11 +2005,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:57.000] response: +Info 93 [00:03:54.000] response: { "responseRequired": false } -Info 97 [00:03:58.000] request: +Info 94 [00:03:55.000] request: { "seq": 0, "type": "request", @@ -2057,22 +2054,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 99 [00:04:00.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 99 [00:04:01.000] Files (2) +Info 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) -Info 99 [00:04:02.000] ----------------------------------------------- -Info 99 [00:04:03.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 99 [00:04:04.000] Files (2) +Info 96 [00:03:59.000] ----------------------------------------------- +Info 96 [00:04:00.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 96 [00:04:01.000] Files (2) -Info 99 [00:04:05.000] ----------------------------------------------- -Info 99 [00:04:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 99 [00:04:07.000] Files (2) +Info 96 [00:04:02.000] ----------------------------------------------- +Info 96 [00:04:03.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 96 [00:04:04.000] Files (2) -Info 99 [00:04:08.000] ----------------------------------------------- -Info 99 [00:04:09.000] Open files: -Info 99 [00:04:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 99 [00:04:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 96 [00:04:05.000] ----------------------------------------------- +Info 96 [00:04:06.000] Open files: +Info 96 [00:04:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 96 [00:04:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2111,11 +2108,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [00:04:12.000] response: +Info 96 [00:04:09.000] response: { "responseRequired": false } -Info 100 [00:04:13.000] request: +Info 97 [00:04:10.000] request: { "seq": 0, "type": "request", @@ -2162,20 +2159,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [00:04:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 102 [00:04:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 102 [00:04:16.000] Files (2) +Info 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) -Info 102 [00:04:17.000] ----------------------------------------------- -Info 102 [00:04:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 102 [00:04:19.000] Files (2) +Info 99 [00:04:14.000] ----------------------------------------------- +Info 99 [00:04:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 99 [00:04:16.000] Files (2) -Info 102 [00:04:20.000] ----------------------------------------------- -Info 102 [00:04:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 102 [00:04:22.000] Files (2) +Info 99 [00:04:17.000] ----------------------------------------------- +Info 99 [00:04:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 99 [00:04:19.000] Files (2) -Info 102 [00:04:23.000] ----------------------------------------------- -Info 102 [00:04:24.000] Open files: +Info 99 [00:04:20.000] ----------------------------------------------- +Info 99 [00:04:21.000] Open files: After request PolledWatches:: @@ -2216,11 +2213,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:04:25.000] response: +Info 99 [00:04:22.000] response: { "responseRequired": false } -Info 103 [00:04:26.000] request: +Info 100 [00:04:23.000] request: { "seq": 0, "type": "request", @@ -2269,12 +2266,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:04:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 105 [00:04:28.000] Search path: /user/username/projects/myproject/random -Info 106 [00:04:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 107 [00:04:30.000] `remove Project:: -Info 108 [00:04:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 109 [00:04:32.000] Files (2) +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 +Info 104 [00:04:27.000] `remove Project:: +Info 105 [00:04:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 106 [00:04:29.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -2284,19 +2281,19 @@ Info 109 [00:04:32.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 110 [00:04:33.000] ----------------------------------------------- -Info 111 [00:04:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 112 [00:04:35.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 113 [00:04:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 114 [00:04:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 115 [00:04:38.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 116 [00:04:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 117 [00:04:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 118 [00:04:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 119 [00:04:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 120 [00:04:43.000] `remove Project:: -Info 121 [00:04:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 122 [00:04:45.000] Files (2) +Info 107 [00:04:30.000] ----------------------------------------------- +Info 108 [00:04:31.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 109 [00:04:32.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 110 [00:04:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 111 [00:04:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 112 [00:04:35.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 113 [00:04:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 114 [00:04:37.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 115 [00:04:38.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 116 [00:04:39.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 117 [00:04:40.000] `remove Project:: +Info 118 [00:04:41.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 119 [00:04:42.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2306,24 +2303,24 @@ Info 122 [00:04:45.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 123 [00:04:46.000] ----------------------------------------------- -Info 124 [00:04:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 125 [00:04:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 126 [00:04:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 127 [00:04:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 128 [00:04:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 129 [00:04:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 130 [00:04:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 131 [00:04:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file -Info 132 [00:04:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 133 [00:04:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 134 [00:04:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 134 [00:04:58.000] Files (2) - -Info 134 [00:04:59.000] ----------------------------------------------- -Info 134 [00:05:00.000] Open files: -Info 134 [00:05:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 134 [00:05:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 120 [00:04:43.000] ----------------------------------------------- +Info 121 [00:04:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 122 [00:04:45.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 123 [00:04:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 124 [00:04:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 125 [00:04:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 126 [00:04:49.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 127 [00:04:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 128 [00:04:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts 2000 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Missing generated file +Info 129 [00:04:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 130 [00:04:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 131 [00:04:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 131 [00:04:55.000] Files (2) + +Info 131 [00:04:56.000] ----------------------------------------------- +Info 131 [00:04:57.000] Open files: +Info 131 [00:04:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 131 [00:04:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2342,7 +2339,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 134 [00:05:03.000] response: +Info 131 [00:05:00.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js index 0c4d9cc1c14d6..2b4142d75ee59 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 @@ -223,9 +223,8 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +235,20 @@ Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:28.000] Files (3) +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +261,16 @@ Info 25 [00:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:29.000] ----------------------------------------------- -Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:33.000] Files (3) +Info 25 [00:01:28.000] ----------------------------------------------- +Info 26 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:32.000] Files (3) -Info 29 [00:01:34.000] ----------------------------------------------- -Info 29 [00:01:35.000] Open files: -Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:33.000] ----------------------------------------------- +Info 28 [00:01:34.000] Open files: +Info 28 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:38.000] response: +Info 28 [00:01:37.000] response: { "responseRequired": false } -Info 30 [00:01:39.000] request: +Info 29 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -337,18 +336,17 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/dependency -Info 32 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +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 +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +356,22 @@ Info 42 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:56.000] Files (3) - -Info 46 [00:01:57.000] ----------------------------------------------- -Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:01:59.000] Files (2) - -Info 46 [00:02:00.000] ----------------------------------------------- -Info 46 [00:02:01.000] Open files: -Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) + +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) + +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -402,11 +400,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [00:02:06.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 47 [00:02:07.000] request: +Info 45 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -443,11 +441,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -455,17 +453,16 @@ Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:23.000] Files (2) +Info 51 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -475,26 +472,26 @@ Info 63 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:24.000] ----------------------------------------------- -Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:26.000] Files (3) - -Info 65 [00:02:27.000] ----------------------------------------------- -Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:29.000] Files (2) - -Info 65 [00:02:30.000] ----------------------------------------------- -Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:32.000] Files (2) - -Info 65 [00:02:33.000] ----------------------------------------------- -Info 65 [00:02:34.000] Open files: -Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:21.000] ----------------------------------------------- +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (3) + +Info 62 [00:02:24.000] ----------------------------------------------- +Info 62 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:26.000] Files (2) + +Info 62 [00:02:27.000] ----------------------------------------------- +Info 62 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:29.000] Files (2) + +Info 62 [00:02:30.000] ----------------------------------------------- +Info 62 [00:02:31.000] Open files: +Info 62 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -529,11 +526,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:41.000] response: +Info 62 [00:02:38.000] response: { "responseRequired": false } -Info 66 [00:02:42.000] request: +Info 63 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -578,7 +575,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -615,7 +612,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:44.000] response: +Info 65 [00:02:41.000] response: { "response": { "definitions": [ @@ -652,7 +649,7 @@ Info 68 [00:02:44.000] response: }, "responseRequired": true } -Info 69 [00:02:45.000] request: +Info 66 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -699,8 +696,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -737,7 +734,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:48.000] response: +Info 69 [00:02:45.000] response: { "response": { "info": { @@ -818,12 +815,12 @@ Info 72 [00:02:48.000] response: }, "responseRequired": true } -Info 73 [00:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 74 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 75 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 76 [00:02:55.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 77 [00:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 78 [00:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 70 [00:02:49.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 71 [00:02:50.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:51.000] Scheduled: *ensureProjectForOpenFiles* +Info 73 [00:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 74 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 75 [00:02:54.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts.map] {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} @@ -863,53 +860,53 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [00:02:58.000] Running: /user/username/projects/myproject/dependency/tsconfig.json -Info 80 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 81 [00:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 82 [00:03:01.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 83 [00:03:02.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 84 [00:03:03.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 85 [00:03:04.000] Running: *ensureProjectForOpenFiles* -Info 86 [00:03:05.000] Before ensureProjectForOpenFiles: -Info 87 [00:03:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 87 [00:03:07.000] Files (3) - -Info 87 [00:03:08.000] ----------------------------------------------- -Info 87 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 87 [00:03:10.000] Files (2) - -Info 87 [00:03:11.000] ----------------------------------------------- -Info 87 [00:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 87 [00:03:13.000] Files (2) - -Info 87 [00:03:14.000] ----------------------------------------------- -Info 87 [00:03:15.000] Open files: -Info 87 [00:03:16.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 87 [00:03:17.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 87 [00:03:18.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 87 [00:03:19.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 87 [00:03:20.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 87 [00:03:21.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 87 [00:03:22.000] After ensureProjectForOpenFiles: -Info 88 [00:03:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 88 [00:03:24.000] Files (3) - -Info 88 [00:03:25.000] ----------------------------------------------- -Info 88 [00:03:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 88 [00:03:27.000] Files (2) - -Info 88 [00:03:28.000] ----------------------------------------------- -Info 88 [00:03:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 88 [00:03:30.000] Files (2) - -Info 88 [00:03:31.000] ----------------------------------------------- -Info 88 [00:03:32.000] Open files: -Info 88 [00:03:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 88 [00:03:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 88 [00:03:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 88 [00:03:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 88 [00:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 88 [00:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 79 [00:02:58.000] Running: /user/username/projects/myproject/main/tsconfig.json +Info 80 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 81 [00:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 82 [00:03:01.000] Running: *ensureProjectForOpenFiles* +Info 83 [00:03:02.000] Before ensureProjectForOpenFiles: +Info 84 [00:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 84 [00:03:04.000] Files (3) + +Info 84 [00:03:05.000] ----------------------------------------------- +Info 84 [00:03:06.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 84 [00:03:07.000] Files (2) + +Info 84 [00:03:08.000] ----------------------------------------------- +Info 84 [00:03:09.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 84 [00:03:10.000] Files (2) + +Info 84 [00:03:11.000] ----------------------------------------------- +Info 84 [00:03:12.000] Open files: +Info 84 [00:03:13.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 84 [00:03:14.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 84 [00:03:15.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 84 [00:03:16.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 84 [00:03:17.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 84 [00:03:18.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 84 [00:03:19.000] After ensureProjectForOpenFiles: +Info 85 [00:03:20.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 85 [00:03:21.000] Files (3) + +Info 85 [00:03:22.000] ----------------------------------------------- +Info 85 [00:03:23.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 85 [00:03:24.000] Files (2) + +Info 85 [00:03:25.000] ----------------------------------------------- +Info 85 [00:03:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 85 [00:03:27.000] Files (2) + +Info 85 [00:03:28.000] ----------------------------------------------- +Info 85 [00:03:29.000] Open files: +Info 85 [00:03:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 85 [00:03:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 85 [00:03:32.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 85 [00:03:33.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 85 [00:03:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 85 [00:03:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -946,7 +943,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [00:03:39.000] request: +Info 85 [00:03:36.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1029,7 +1026,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:40.000] response: +Info 86 [00:03:37.000] response: { "response": { "definitions": [ @@ -1066,7 +1063,7 @@ Info 89 [00:03:40.000] response: }, "responseRequired": true } -Info 90 [00:03:41.000] request: +Info 87 [00:03:38.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1149,7 +1146,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [00:03:42.000] response: +Info 88 [00:03:39.000] response: { "response": { "definitions": [ @@ -1186,7 +1183,7 @@ Info 91 [00:03:42.000] response: }, "responseRequired": true } -Info 92 [00:03:43.000] request: +Info 89 [00:03:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1269,7 +1266,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [00:03:44.000] response: +Info 90 [00:03:41.000] response: { "response": { "definitions": [ @@ -1306,7 +1303,7 @@ Info 93 [00:03:44.000] response: }, "responseRequired": true } -Info 94 [00:03:45.000] request: +Info 91 [00:03:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1389,7 +1386,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [00:03:46.000] response: +Info 92 [00:03:43.000] response: { "response": { "definitions": [ @@ -1426,7 +1423,7 @@ Info 95 [00:03:46.000] response: }, "responseRequired": true } -Info 96 [00:03:47.000] request: +Info 93 [00:03:44.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1509,7 +1506,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [00:03:48.000] response: +Info 94 [00:03:45.000] response: { "response": { "definitions": [ @@ -1546,7 +1543,7 @@ Info 97 [00:03:48.000] response: }, "responseRequired": true } -Info 98 [00:03:49.000] request: +Info 95 [00:03:46.000] request: { "command": "rename", "arguments": { @@ -1593,8 +1590,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [00:03:50.000] Search path: /user/username/projects/myproject/dependency -Info 100 [00:03:51.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1631,7 +1628,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [00:03:52.000] response: +Info 98 [00:03:49.000] response: { "response": { "info": { @@ -1712,7 +1709,7 @@ Info 101 [00:03:52.000] response: }, "responseRequired": true } -Info 102 [00:03:53.000] request: +Info 99 [00:03:50.000] request: { "command": "rename", "arguments": { @@ -1759,8 +1756,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [00:03:54.000] Search path: /user/username/projects/myproject/dependency -Info 104 [00:03:55.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1797,7 +1794,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 105 [00:03:56.000] response: +Info 102 [00:03:53.000] response: { "response": { "info": { @@ -1878,7 +1875,7 @@ Info 105 [00:03:56.000] response: }, "responseRequired": true } -Info 106 [00:03:57.000] request: +Info 103 [00:03:54.000] request: { "command": "rename", "arguments": { @@ -1925,8 +1922,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 107 [00:03:58.000] Search path: /user/username/projects/myproject/dependency -Info 108 [00:03:59.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1963,7 +1960,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [00:04:00.000] response: +Info 106 [00:03:57.000] response: { "response": { "info": { @@ -2044,7 +2041,7 @@ Info 109 [00:04:00.000] response: }, "responseRequired": true } -Info 110 [00:04:01.000] request: +Info 107 [00:03:58.000] request: { "command": "rename", "arguments": { @@ -2091,8 +2088,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [00:04:02.000] Search path: /user/username/projects/myproject/dependency -Info 112 [00:04:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2129,7 +2126,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [00:04:04.000] response: +Info 110 [00:04:01.000] response: { "response": { "info": { @@ -2210,7 +2207,7 @@ Info 113 [00:04:04.000] response: }, "responseRequired": true } -Info 114 [00:04:05.000] request: +Info 111 [00:04:02.000] request: { "command": "rename", "arguments": { @@ -2257,8 +2254,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [00:04:06.000] Search path: /user/username/projects/myproject/dependency -Info 116 [00:04:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2295,7 +2292,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [00:04:08.000] response: +Info 114 [00:04:05.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-changes.js index ae8c98ac30251..1b9bc69c92127 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 @@ -223,9 +223,8 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +235,20 @@ Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:28.000] Files (3) +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +261,16 @@ Info 25 [00:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:29.000] ----------------------------------------------- -Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:33.000] Files (3) +Info 25 [00:01:28.000] ----------------------------------------------- +Info 26 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:32.000] Files (3) -Info 29 [00:01:34.000] ----------------------------------------------- -Info 29 [00:01:35.000] Open files: -Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:33.000] ----------------------------------------------- +Info 28 [00:01:34.000] Open files: +Info 28 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:38.000] response: +Info 28 [00:01:37.000] response: { "responseRequired": false } -Info 30 [00:01:39.000] request: +Info 29 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -337,18 +336,17 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/dependency -Info 32 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +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 +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +356,22 @@ Info 42 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:56.000] Files (3) - -Info 46 [00:01:57.000] ----------------------------------------------- -Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:01:59.000] Files (2) - -Info 46 [00:02:00.000] ----------------------------------------------- -Info 46 [00:02:01.000] Open files: -Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) + +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) + +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -402,11 +400,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [00:02:06.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 47 [00:02:07.000] request: +Info 45 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -443,11 +441,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -455,17 +453,16 @@ Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:23.000] Files (2) +Info 51 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -475,26 +472,26 @@ Info 63 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:24.000] ----------------------------------------------- -Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:26.000] Files (3) - -Info 65 [00:02:27.000] ----------------------------------------------- -Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:29.000] Files (2) - -Info 65 [00:02:30.000] ----------------------------------------------- -Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:32.000] Files (2) - -Info 65 [00:02:33.000] ----------------------------------------------- -Info 65 [00:02:34.000] Open files: -Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:21.000] ----------------------------------------------- +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (3) + +Info 62 [00:02:24.000] ----------------------------------------------- +Info 62 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:26.000] Files (2) + +Info 62 [00:02:27.000] ----------------------------------------------- +Info 62 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:29.000] Files (2) + +Info 62 [00:02:30.000] ----------------------------------------------- +Info 62 [00:02:31.000] Open files: +Info 62 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -529,11 +526,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:41.000] response: +Info 62 [00:02:38.000] response: { "responseRequired": false } -Info 66 [00:02:42.000] request: +Info 63 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -578,7 +575,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -615,7 +612,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:44.000] response: +Info 65 [00:02:41.000] response: { "response": { "definitions": [ @@ -652,7 +649,7 @@ Info 68 [00:02:44.000] response: }, "responseRequired": true } -Info 69 [00:02:45.000] request: +Info 66 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -699,8 +696,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -737,7 +734,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:48.000] response: +Info 69 [00:02:45.000] response: { "response": { "info": { @@ -818,13 +815,13 @@ Info 72 [00:02:48.000] response: }, "responseRequired": true } -Info 73 [00:02:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 74 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 75 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 76 [00:02:55.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 77 [00:02:56.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 78 [00:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 79 [00:02:58.000] request: +Info 70 [00:02:49.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 71 [00:02:50.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:51.000] Scheduled: *ensureProjectForOpenFiles* +Info 73 [00:02:52.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 74 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 75 [00:02:54.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 76 [00:02:55.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -874,8 +871,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:02:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 81 [00:03:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +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:: @@ -912,7 +909,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [00:03:01.000] response: +Info 79 [00:02:58.000] response: { "response": { "definitions": [ @@ -949,7 +946,7 @@ Info 82 [00:03:01.000] response: }, "responseRequired": true } -Info 83 [00:03:02.000] request: +Info 80 [00:02:59.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1032,7 +1029,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:03:03.000] response: +Info 81 [00:03:00.000] response: { "response": { "definitions": [ @@ -1069,7 +1066,7 @@ Info 84 [00:03:03.000] response: }, "responseRequired": true } -Info 85 [00:03:04.000] request: +Info 82 [00:03:01.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1152,7 +1149,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:05.000] response: +Info 83 [00:03:02.000] response: { "response": { "definitions": [ @@ -1189,7 +1186,7 @@ Info 86 [00:03:05.000] response: }, "responseRequired": true } -Info 87 [00:03:06.000] request: +Info 84 [00:03:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1272,7 +1269,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [00:03:07.000] response: +Info 85 [00:03:04.000] response: { "response": { "definitions": [ @@ -1309,7 +1306,7 @@ Info 88 [00:03:07.000] response: }, "responseRequired": true } -Info 89 [00:03:08.000] request: +Info 86 [00:03:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1392,7 +1389,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:09.000] response: +Info 87 [00:03:06.000] response: { "response": { "definitions": [ @@ -1429,7 +1426,7 @@ Info 90 [00:03:09.000] response: }, "responseRequired": true } -Info 91 [00:03:10.000] request: +Info 88 [00:03:07.000] request: { "command": "rename", "arguments": { @@ -1476,10 +1473,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [00:03:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 93 [00:03:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 94 [00:03:13.000] Search path: /user/username/projects/myproject/dependency -Info 95 [00:03:14.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1516,7 +1513,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:15.000] response: +Info 93 [00:03:12.000] response: { "response": { "info": { @@ -1597,7 +1594,7 @@ Info 96 [00:03:15.000] response: }, "responseRequired": true } -Info 97 [00:03:16.000] request: +Info 94 [00:03:13.000] request: { "command": "rename", "arguments": { @@ -1644,8 +1641,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:17.000] Search path: /user/username/projects/myproject/dependency -Info 99 [00:03:18.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1682,7 +1679,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:19.000] response: +Info 97 [00:03:16.000] response: { "response": { "info": { @@ -1763,7 +1760,7 @@ Info 100 [00:03:19.000] response: }, "responseRequired": true } -Info 101 [00:03:20.000] request: +Info 98 [00:03:17.000] request: { "command": "rename", "arguments": { @@ -1810,8 +1807,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:21.000] Search path: /user/username/projects/myproject/dependency -Info 103 [00:03:22.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1848,7 +1845,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:23.000] response: +Info 101 [00:03:20.000] response: { "response": { "info": { @@ -1929,7 +1926,7 @@ Info 104 [00:03:23.000] response: }, "responseRequired": true } -Info 105 [00:03:24.000] request: +Info 102 [00:03:21.000] request: { "command": "rename", "arguments": { @@ -1976,8 +1973,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:25.000] Search path: /user/username/projects/myproject/dependency -Info 107 [00:03:26.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2014,7 +2011,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:27.000] response: +Info 105 [00:03:24.000] response: { "response": { "info": { @@ -2095,7 +2092,7 @@ Info 108 [00:03:27.000] response: }, "responseRequired": true } -Info 109 [00:03:28.000] request: +Info 106 [00:03:25.000] request: { "command": "rename", "arguments": { @@ -2142,8 +2139,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:29.000] Search path: /user/username/projects/myproject/dependency -Info 111 [00:03:30.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2180,7 +2177,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:03:31.000] response: +Info 109 [00:03:28.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-created.js index adf6e151fb037..2bdd86fde2350 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 @@ -220,9 +220,8 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -233,20 +232,20 @@ Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:22.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -259,16 +258,16 @@ Info 25 [00:01:29.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:30.000] ----------------------------------------------- -Info 27 [00:01:31.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:32.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:34.000] Files (3) +Info 25 [00:01:29.000] ----------------------------------------------- +Info 26 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:33.000] Files (3) -Info 29 [00:01:35.000] ----------------------------------------------- -Info 29 [00:01:36.000] Open files: -Info 29 [00:01:37.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:38.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:34.000] ----------------------------------------------- +Info 28 [00:01:35.000] Open files: +Info 28 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:39.000] response: +Info 28 [00:01:38.000] response: { "responseRequired": false } -Info 30 [00:01:40.000] request: +Info 29 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -334,18 +333,17 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:41.000] Search path: /user/username/projects/myproject/dependency -Info 32 [00:01:42.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:43.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:52.000] Files (2) +Info 30 [00:01:40.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -355,22 +353,22 @@ Info 42 [00:01:52.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:53.000] ----------------------------------------------- -Info 44 [00:01:54.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:55.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:57.000] Files (3) - -Info 46 [00:01:58.000] ----------------------------------------------- -Info 46 [00:01:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:02:00.000] Files (2) - -Info 46 [00:02:01.000] ----------------------------------------------- -Info 46 [00:02:02.000] Open files: -Info 46 [00:02:03.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:05.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:06.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:51.000] ----------------------------------------------- +Info 42 [00:01:52.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:53.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:55.000] Files (3) + +Info 44 [00:01:56.000] ----------------------------------------------- +Info 44 [00:01:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:58.000] Files (2) + +Info 44 [00:01:59.000] ----------------------------------------------- +Info 44 [00:02:00.000] Open files: +Info 44 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:04.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -399,11 +397,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [00:02:07.000] response: +Info 44 [00:02:05.000] response: { "responseRequired": false } -Info 47 [00:02:08.000] request: +Info 45 [00:02:06.000] request: { "seq": 0, "type": "request", @@ -440,11 +438,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [00:02:09.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:11.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:13.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:11.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -452,17 +450,16 @@ Info 52 [00:02:13.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:24.000] Files (2) +Info 51 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -472,26 +469,26 @@ Info 63 [00:02:24.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:25.000] ----------------------------------------------- -Info 65 [00:02:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:27.000] Files (3) - -Info 65 [00:02:28.000] ----------------------------------------------- -Info 65 [00:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:30.000] Files (2) - -Info 65 [00:02:31.000] ----------------------------------------------- -Info 65 [00:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:33.000] Files (2) - -Info 65 [00:02:34.000] ----------------------------------------------- -Info 65 [00:02:35.000] Open files: -Info 65 [00:02:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:22.000] ----------------------------------------------- +Info 62 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:24.000] Files (3) + +Info 62 [00:02:25.000] ----------------------------------------------- +Info 62 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:27.000] Files (2) + +Info 62 [00:02:28.000] ----------------------------------------------- +Info 62 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:30.000] Files (2) + +Info 62 [00:02:31.000] ----------------------------------------------- +Info 62 [00:02:32.000] Open files: +Info 62 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -526,11 +523,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:42.000] response: +Info 62 [00:02:39.000] response: { "responseRequired": false } -Info 66 [00:02:43.000] request: +Info 63 [00:02:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -575,7 +572,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +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 PolledWatches:: @@ -612,7 +609,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:45.000] response: +Info 65 [00:02:42.000] response: { "response": { "definitions": [ @@ -649,7 +646,7 @@ Info 68 [00:02:45.000] response: }, "responseRequired": true } -Info 69 [00:02:46.000] request: +Info 66 [00:02:43.000] request: { "command": "rename", "arguments": { @@ -732,7 +729,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:47.000] response: +Info 67 [00:02:44.000] response: { "response": { "info": { @@ -780,16 +777,16 @@ Info 70 [00:02:47.000] response: }, "responseRequired": true } -Info 71 [00:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 72 [00:02:51.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 73 [00:02:52.000] Scheduled: *ensureProjectForOpenFiles* -Info 74 [00:02:53.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 75 [00:02:54.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 76 [00:02:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 77 [00:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 78 [00:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 79 [00:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 80 [00:02:59.000] request: +Info 68 [00:02:47.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 69 [00:02:48.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 70 [00:02:49.000] Scheduled: *ensureProjectForOpenFiles* +Info 71 [00:02:50.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 72 [00:02:51.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 73 [00:02:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 74 [00:02:53.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 75 [00:02:54.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 76 [00:02:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 77 [00:02:56.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -837,9 +834,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [00:03:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 82 [00:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 83 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 78 [00:02:57.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 79 [00:02:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 80 [00:02:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -876,7 +873,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:03:03.000] response: +Info 81 [00:03:00.000] response: { "response": { "definitions": [ @@ -913,7 +910,7 @@ Info 84 [00:03:03.000] response: }, "responseRequired": true } -Info 85 [00:03:04.000] request: +Info 82 [00:03:01.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -996,7 +993,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:05.000] response: +Info 83 [00:03:02.000] response: { "response": { "definitions": [ @@ -1033,7 +1030,7 @@ Info 86 [00:03:05.000] response: }, "responseRequired": true } -Info 87 [00:03:06.000] request: +Info 84 [00:03:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1116,7 +1113,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [00:03:07.000] response: +Info 85 [00:03:04.000] response: { "response": { "definitions": [ @@ -1153,7 +1150,7 @@ Info 88 [00:03:07.000] response: }, "responseRequired": true } -Info 89 [00:03:08.000] request: +Info 86 [00:03:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1236,7 +1233,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:09.000] response: +Info 87 [00:03:06.000] response: { "response": { "definitions": [ @@ -1273,7 +1270,7 @@ Info 90 [00:03:09.000] response: }, "responseRequired": true } -Info 91 [00:03:10.000] request: +Info 88 [00:03:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1356,7 +1353,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [00:03:11.000] response: +Info 89 [00:03:08.000] response: { "response": { "definitions": [ @@ -1393,7 +1390,7 @@ Info 92 [00:03:11.000] response: }, "responseRequired": true } -Info 93 [00:03:12.000] request: +Info 90 [00:03:09.000] request: { "command": "rename", "arguments": { @@ -1440,10 +1437,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [00:03:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 95 [00:03:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 96 [00:03:15.000] Search path: /user/username/projects/myproject/dependency -Info 97 [00:03:16.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1480,7 +1477,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:17.000] response: +Info 95 [00:03:14.000] response: { "response": { "info": { @@ -1561,7 +1558,7 @@ Info 98 [00:03:17.000] response: }, "responseRequired": true } -Info 99 [00:03:18.000] request: +Info 96 [00:03:15.000] request: { "command": "rename", "arguments": { @@ -1608,8 +1605,8 @@ FsWatchesRecursive:: /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 +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:: @@ -1646,7 +1643,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:21.000] response: +Info 99 [00:03:18.000] response: { "response": { "info": { @@ -1727,7 +1724,7 @@ Info 102 [00:03:21.000] response: }, "responseRequired": true } -Info 103 [00:03:22.000] request: +Info 100 [00:03:19.000] request: { "command": "rename", "arguments": { @@ -1774,8 +1771,8 @@ FsWatchesRecursive:: /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 +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:: @@ -1812,7 +1809,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:25.000] response: +Info 103 [00:03:22.000] response: { "response": { "info": { @@ -1893,7 +1890,7 @@ Info 106 [00:03:25.000] response: }, "responseRequired": true } -Info 107 [00:03:26.000] request: +Info 104 [00:03:23.000] request: { "command": "rename", "arguments": { @@ -1940,8 +1937,8 @@ FsWatchesRecursive:: /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 +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:: @@ -1978,7 +1975,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:29.000] response: +Info 107 [00:03:26.000] response: { "response": { "info": { @@ -2059,7 +2056,7 @@ Info 110 [00:03:29.000] response: }, "responseRequired": true } -Info 111 [00:03:30.000] request: +Info 108 [00:03:27.000] request: { "command": "rename", "arguments": { @@ -2106,8 +2103,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:03:31.000] Search path: /user/username/projects/myproject/dependency -Info 113 [00:03:32.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2144,7 +2141,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [00:03:33.000] response: +Info 111 [00:03:30.000] response: { "response": { "info": { @@ -2225,7 +2222,7 @@ Info 114 [00:03:33.000] response: }, "responseRequired": true } -Info 115 [00:03:34.000] request: +Info 112 [00:03:31.000] request: { "seq": 0, "type": "request", @@ -2270,24 +2267,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [00:03:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 117 [00:03:36.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 117 [00:03:37.000] Files (3) +Info 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) -Info 117 [00:03:38.000] ----------------------------------------------- -Info 117 [00:03:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 117 [00:03:40.000] Files (2) +Info 114 [00:03:35.000] ----------------------------------------------- +Info 114 [00:03:36.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 114 [00:03:37.000] Files (2) -Info 117 [00:03:41.000] ----------------------------------------------- -Info 117 [00:03:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 117 [00:03:43.000] Files (2) +Info 114 [00:03:38.000] ----------------------------------------------- +Info 114 [00:03:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 114 [00:03:40.000] Files (2) -Info 117 [00:03:44.000] ----------------------------------------------- -Info 117 [00:03:45.000] Open files: -Info 117 [00:03:46.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 117 [00:03:47.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 117 [00:03:48.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 117 [00:03:49.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 114 [00:03:41.000] ----------------------------------------------- +Info 114 [00:03:42.000] Open files: +Info 114 [00:03:43.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 114 [00:03:44.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 114 [00:03:45.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 114 [00:03:46.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2326,11 +2323,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [00:03:50.000] response: +Info 114 [00:03:47.000] response: { "responseRequired": false } -Info 118 [00:03:51.000] request: +Info 115 [00:03:48.000] request: { "seq": 0, "type": "request", @@ -2377,28 +2374,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 119 [00:03:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 120 [00:03:53.000] Search path: /user/username/projects/myproject/random -Info 121 [00:03:54.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 122 [00:03:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 122 [00:03:56.000] Files (3) - -Info 122 [00:03:57.000] ----------------------------------------------- -Info 122 [00:03:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 122 [00:03:59.000] Files (2) - -Info 122 [00:04:00.000] ----------------------------------------------- -Info 122 [00:04:01.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 122 [00:04:02.000] Files (2) - -Info 122 [00:04:03.000] ----------------------------------------------- -Info 122 [00:04:04.000] Open files: -Info 122 [00:04:05.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 122 [00:04:06.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 122 [00:04:07.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 122 [00:04:08.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 122 [00:04:09.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 122 [00:04:10.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 119 [00:03:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 119 [00:03:53.000] Files (3) + +Info 119 [00:03:54.000] ----------------------------------------------- +Info 119 [00:03:55.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 119 [00:03:56.000] Files (2) + +Info 119 [00:03:57.000] ----------------------------------------------- +Info 119 [00:03:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 119 [00:03:59.000] Files (2) + +Info 119 [00:04:00.000] ----------------------------------------------- +Info 119 [00:04:01.000] Open files: +Info 119 [00:04:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 119 [00:04:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 119 [00:04:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 119 [00:04:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 119 [00:04:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 119 [00:04:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2435,11 +2432,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 122 [00:04:11.000] response: +Info 119 [00:04:08.000] response: { "responseRequired": false } -Info 123 [00:04:12.000] request: +Info 120 [00:04:09.000] request: { "seq": 0, "type": "request", @@ -2484,24 +2481,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 124 [00:04:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 125 [00:04:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 125 [00:04:15.000] Files (3) +Info 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) -Info 125 [00:04:16.000] ----------------------------------------------- -Info 125 [00:04:17.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 125 [00:04:18.000] Files (2) +Info 122 [00:04:13.000] ----------------------------------------------- +Info 122 [00:04:14.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 122 [00:04:15.000] Files (2) -Info 125 [00:04:19.000] ----------------------------------------------- -Info 125 [00:04:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 125 [00:04:21.000] Files (2) +Info 122 [00:04:16.000] ----------------------------------------------- +Info 122 [00:04:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 122 [00:04:18.000] Files (2) -Info 125 [00:04:22.000] ----------------------------------------------- -Info 125 [00:04:23.000] Open files: -Info 125 [00:04:24.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 125 [00:04:25.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 125 [00:04:26.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 125 [00:04:27.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 122 [00:04:19.000] ----------------------------------------------- +Info 122 [00:04:20.000] Open files: +Info 122 [00:04:21.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 122 [00:04:22.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 122 [00:04:23.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 122 [00:04:24.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2540,11 +2537,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 125 [00:04:28.000] response: +Info 122 [00:04:25.000] response: { "responseRequired": false } -Info 126 [00:04:29.000] request: +Info 123 [00:04:26.000] request: { "seq": 0, "type": "request", @@ -2591,22 +2588,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 127 [00:04:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 128 [00:04:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 128 [00:04:32.000] Files (3) +Info 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) -Info 128 [00:04:33.000] ----------------------------------------------- -Info 128 [00:04:34.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 128 [00:04:35.000] Files (2) +Info 125 [00:04:30.000] ----------------------------------------------- +Info 125 [00:04:31.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 125 [00:04:32.000] Files (2) -Info 128 [00:04:36.000] ----------------------------------------------- -Info 128 [00:04:37.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 128 [00:04:38.000] Files (2) +Info 125 [00:04:33.000] ----------------------------------------------- +Info 125 [00:04:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 125 [00:04:35.000] Files (2) -Info 128 [00:04:39.000] ----------------------------------------------- -Info 128 [00:04:40.000] Open files: -Info 128 [00:04:41.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 128 [00:04:42.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 125 [00:04:36.000] ----------------------------------------------- +Info 125 [00:04:37.000] Open files: +Info 125 [00:04:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 125 [00:04:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2647,11 +2644,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 128 [00:04:43.000] response: +Info 125 [00:04:40.000] response: { "responseRequired": false } -Info 129 [00:04:44.000] request: +Info 126 [00:04:41.000] request: { "seq": 0, "type": "request", @@ -2700,20 +2697,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 130 [00:04:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 131 [00:04:46.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 131 [00:04:47.000] Files (3) +Info 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) -Info 131 [00:04:48.000] ----------------------------------------------- -Info 131 [00:04:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 131 [00:04:50.000] Files (2) +Info 128 [00:04:45.000] ----------------------------------------------- +Info 128 [00:04:46.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 128 [00:04:47.000] Files (2) -Info 131 [00:04:51.000] ----------------------------------------------- -Info 131 [00:04:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 131 [00:04:53.000] Files (2) +Info 128 [00:04:48.000] ----------------------------------------------- +Info 128 [00:04:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 128 [00:04:50.000] Files (2) -Info 131 [00:04:54.000] ----------------------------------------------- -Info 131 [00:04:55.000] Open files: +Info 128 [00:04:51.000] ----------------------------------------------- +Info 128 [00:04:52.000] Open files: After request PolledWatches:: @@ -2756,11 +2753,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 131 [00:04:56.000] response: +Info 128 [00:04:53.000] response: { "responseRequired": false } -Info 132 [00:04:57.000] request: +Info 129 [00:04:54.000] request: { "seq": 0, "type": "request", @@ -2811,12 +2808,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 133 [00:04:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 134 [00:04:59.000] Search path: /user/username/projects/myproject/random -Info 135 [00:05:00.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 136 [00:05:01.000] `remove Project:: -Info 137 [00:05:02.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 138 [00:05:03.000] Files (3) +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 +Info 133 [00:04:58.000] `remove Project:: +Info 134 [00:04:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 135 [00:05:00.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -2829,19 +2826,19 @@ Info 138 [00:05:03.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 139 [00:05:04.000] ----------------------------------------------- -Info 140 [00:05:05.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 141 [00:05:06.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 142 [00:05:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 143 [00:05:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 144 [00:05:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 145 [00:05:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 146 [00:05:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 147 [00:05:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 148 [00:05:13.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 149 [00:05:14.000] `remove Project:: -Info 150 [00:05:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 151 [00:05:16.000] Files (2) +Info 136 [00:05:01.000] ----------------------------------------------- +Info 137 [00:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 138 [00:05:03.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 139 [00:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 140 [00:05:05.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 141 [00:05:06.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 142 [00:05:07.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 143 [00:05:08.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 144 [00:05:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 145 [00:05:10.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 146 [00:05:11.000] `remove Project:: +Info 147 [00:05:12.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 148 [00:05:13.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2851,25 +2848,25 @@ Info 151 [00:05:16.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 152 [00:05:17.000] ----------------------------------------------- -Info 153 [00:05:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 154 [00:05:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 155 [00:05:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 156 [00:05:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 157 [00:05:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 158 [00:05:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 159 [00:05:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 160 [00:05:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 161 [00:05:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 162 [00:05:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 163 [00:05:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 164 [00:05:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 164 [00:05:30.000] Files (2) - -Info 164 [00:05:31.000] ----------------------------------------------- -Info 164 [00:05:32.000] Open files: -Info 164 [00:05:33.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 164 [00:05:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 149 [00:05:14.000] ----------------------------------------------- +Info 150 [00:05:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 151 [00:05:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 152 [00:05:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 153 [00:05:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 154 [00:05:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 155 [00:05:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 156 [00:05:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 157 [00:05:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 158 [00:05:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 159 [00:05:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 160 [00:05:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 161 [00:05:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 161 [00:05:27.000] Files (2) + +Info 161 [00:05:28.000] ----------------------------------------------- +Info 161 [00:05:29.000] Open files: +Info 161 [00:05:30.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 161 [00:05:31.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2888,7 +2885,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 164 [00:05:35.000] response: +Info 161 [00:05:32.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-deleted.js index 881f8085f4b88..a92eee22d1104 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 @@ -223,9 +223,8 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +235,20 @@ Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:28.000] Files (3) +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +261,16 @@ Info 25 [00:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:29.000] ----------------------------------------------- -Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:33.000] Files (3) +Info 25 [00:01:28.000] ----------------------------------------------- +Info 26 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:32.000] Files (3) -Info 29 [00:01:34.000] ----------------------------------------------- -Info 29 [00:01:35.000] Open files: -Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:33.000] ----------------------------------------------- +Info 28 [00:01:34.000] Open files: +Info 28 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:38.000] response: +Info 28 [00:01:37.000] response: { "responseRequired": false } -Info 30 [00:01:39.000] request: +Info 29 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -337,18 +336,17 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/dependency -Info 32 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +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 +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +356,22 @@ Info 42 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:56.000] Files (3) - -Info 46 [00:01:57.000] ----------------------------------------------- -Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:01:59.000] Files (2) - -Info 46 [00:02:00.000] ----------------------------------------------- -Info 46 [00:02:01.000] Open files: -Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) + +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) + +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -402,11 +400,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [00:02:06.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 47 [00:02:07.000] request: +Info 45 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -443,11 +441,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -455,17 +453,16 @@ Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:23.000] Files (2) +Info 51 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -475,26 +472,26 @@ Info 63 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:24.000] ----------------------------------------------- -Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:26.000] Files (3) - -Info 65 [00:02:27.000] ----------------------------------------------- -Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:29.000] Files (2) - -Info 65 [00:02:30.000] ----------------------------------------------- -Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:32.000] Files (2) - -Info 65 [00:02:33.000] ----------------------------------------------- -Info 65 [00:02:34.000] Open files: -Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:21.000] ----------------------------------------------- +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (3) + +Info 62 [00:02:24.000] ----------------------------------------------- +Info 62 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:26.000] Files (2) + +Info 62 [00:02:27.000] ----------------------------------------------- +Info 62 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:29.000] Files (2) + +Info 62 [00:02:30.000] ----------------------------------------------- +Info 62 [00:02:31.000] Open files: +Info 62 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -529,11 +526,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:41.000] response: +Info 62 [00:02:38.000] response: { "responseRequired": false } -Info 66 [00:02:42.000] request: +Info 63 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -578,7 +575,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -615,7 +612,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:44.000] response: +Info 65 [00:02:41.000] response: { "response": { "definitions": [ @@ -652,7 +649,7 @@ Info 68 [00:02:44.000] response: }, "responseRequired": true } -Info 69 [00:02:45.000] request: +Info 66 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -699,8 +696,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -737,7 +734,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:48.000] response: +Info 69 [00:02:45.000] response: { "response": { "info": { @@ -818,16 +815,16 @@ Info 72 [00:02:48.000] response: }, "responseRequired": true } -Info 73 [00:02:50.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 74 [00:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 75 [00:02:52.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json -Info 76 [00:02:53.000] Scheduled: *ensureProjectForOpenFiles* -Info 77 [00:02:54.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 78 [00:02:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 79 [00:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 80 [00:02:57.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [00:02:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 82 [00:02:59.000] request: +Info 70 [00:02:47.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 71 [00:02:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 72 [00:02:49.000] Scheduled: /user/username/projects/myproject/dependency/tsconfig.json +Info 73 [00:02:50.000] Scheduled: *ensureProjectForOpenFiles* +Info 74 [00:02:51.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 75 [00:02:52.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 76 [00:02:53.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 77 [00:02:54.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 78 [00:02:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 79 [00:02:56.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -873,9 +870,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [00:03:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 84 [00:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 85 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 80 [00:02:57.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 81 [00:02:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 82 [00:02:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -912,7 +909,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:03.000] response: +Info 83 [00:03:00.000] response: { "response": { "definitions": [ @@ -949,7 +946,7 @@ Info 86 [00:03:03.000] response: }, "responseRequired": true } -Info 87 [00:03:04.000] request: +Info 84 [00:03:01.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1032,7 +1029,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [00:03:05.000] response: +Info 85 [00:03:02.000] response: { "response": { "definitions": [ @@ -1069,7 +1066,7 @@ Info 88 [00:03:05.000] response: }, "responseRequired": true } -Info 89 [00:03:06.000] request: +Info 86 [00:03:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1152,7 +1149,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:07.000] response: +Info 87 [00:03:04.000] response: { "response": { "definitions": [ @@ -1189,7 +1186,7 @@ Info 90 [00:03:07.000] response: }, "responseRequired": true } -Info 91 [00:03:08.000] request: +Info 88 [00:03:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1272,7 +1269,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [00:03:09.000] response: +Info 89 [00:03:06.000] response: { "response": { "definitions": [ @@ -1309,7 +1306,7 @@ Info 92 [00:03:09.000] response: }, "responseRequired": true } -Info 93 [00:03:10.000] request: +Info 90 [00:03:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1392,7 +1389,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [00:03:11.000] response: +Info 91 [00:03:08.000] response: { "response": { "definitions": [ @@ -1429,7 +1426,7 @@ Info 94 [00:03:11.000] response: }, "responseRequired": true } -Info 95 [00:03:12.000] request: +Info 92 [00:03:09.000] request: { "command": "rename", "arguments": { @@ -1476,8 +1473,8 @@ FsWatchesRecursive:: /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 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:: @@ -1514,7 +1511,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:15.000] response: +Info 95 [00:03:12.000] response: { "response": { "info": { @@ -1562,7 +1559,7 @@ Info 98 [00:03:15.000] response: }, "responseRequired": true } -Info 99 [00:03:16.000] request: +Info 96 [00:03:13.000] request: { "command": "rename", "arguments": { @@ -1645,7 +1642,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:17.000] response: +Info 97 [00:03:14.000] response: { "response": { "info": { @@ -1693,7 +1690,7 @@ Info 100 [00:03:17.000] response: }, "responseRequired": true } -Info 101 [00:03:18.000] request: +Info 98 [00:03:15.000] request: { "command": "rename", "arguments": { @@ -1776,7 +1773,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:19.000] response: +Info 99 [00:03:16.000] response: { "response": { "info": { @@ -1824,7 +1821,7 @@ Info 102 [00:03:19.000] response: }, "responseRequired": true } -Info 103 [00:03:20.000] request: +Info 100 [00:03:17.000] request: { "command": "rename", "arguments": { @@ -1907,7 +1904,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:21.000] response: +Info 101 [00:03:18.000] response: { "response": { "info": { @@ -1955,7 +1952,7 @@ Info 104 [00:03:21.000] response: }, "responseRequired": true } -Info 105 [00:03:22.000] request: +Info 102 [00:03:19.000] request: { "command": "rename", "arguments": { @@ -2038,7 +2035,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:23.000] response: +Info 103 [00:03:20.000] response: { "response": { "info": { @@ -2086,7 +2083,7 @@ Info 106 [00:03:23.000] response: }, "responseRequired": true } -Info 107 [00:03:24.000] request: +Info 104 [00:03:21.000] request: { "seq": 0, "type": "request", @@ -2131,24 +2128,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 109 [00:03:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 109 [00:03:27.000] Files (3) +Info 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) -Info 109 [00:03:28.000] ----------------------------------------------- -Info 109 [00:03:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 109 [00:03:30.000] Files (2) +Info 106 [00:03:25.000] ----------------------------------------------- +Info 106 [00:03:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 106 [00:03:27.000] Files (2) -Info 109 [00:03:31.000] ----------------------------------------------- -Info 109 [00:03:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 109 [00:03:33.000] Files (2) +Info 106 [00:03:28.000] ----------------------------------------------- +Info 106 [00:03:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 106 [00:03:30.000] Files (2) -Info 109 [00:03:34.000] ----------------------------------------------- -Info 109 [00:03:35.000] Open files: -Info 109 [00:03:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 109 [00:03:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 109 [00:03:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 109 [00:03:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 106 [00:03:31.000] ----------------------------------------------- +Info 106 [00:03:32.000] Open files: +Info 106 [00:03:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 106 [00:03:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 106 [00:03:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 106 [00:03:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2187,11 +2184,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [00:03:40.000] response: +Info 106 [00:03:37.000] response: { "responseRequired": false } -Info 110 [00:03:41.000] request: +Info 107 [00:03:38.000] request: { "seq": 0, "type": "request", @@ -2238,28 +2235,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [00:03:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 112 [00:03:43.000] Search path: /user/username/projects/myproject/random -Info 113 [00:03:44.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 114 [00:03:45.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 114 [00:03:46.000] Files (3) - -Info 114 [00:03:47.000] ----------------------------------------------- -Info 114 [00:03:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 114 [00:03:49.000] Files (2) - -Info 114 [00:03:50.000] ----------------------------------------------- -Info 114 [00:03:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 114 [00:03:52.000] Files (2) - -Info 114 [00:03:53.000] ----------------------------------------------- -Info 114 [00:03:54.000] Open files: -Info 114 [00:03:55.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 114 [00:03:56.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 114 [00:03:57.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 114 [00:03:58.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 114 [00:03:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 114 [00:04:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 111 [00:03:42.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 111 [00:03:43.000] Files (3) + +Info 111 [00:03:44.000] ----------------------------------------------- +Info 111 [00:03:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 111 [00:03:46.000] Files (2) + +Info 111 [00:03:47.000] ----------------------------------------------- +Info 111 [00:03:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 111 [00:03:49.000] Files (2) + +Info 111 [00:03:50.000] ----------------------------------------------- +Info 111 [00:03:51.000] Open files: +Info 111 [00:03:52.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 111 [00:03:53.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 111 [00:03:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 111 [00:03:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 111 [00:03:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 111 [00:03:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2296,11 +2293,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 114 [00:04:01.000] response: +Info 111 [00:03:58.000] response: { "responseRequired": false } -Info 115 [00:04:02.000] request: +Info 112 [00:03:59.000] request: { "seq": 0, "type": "request", @@ -2345,24 +2342,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 116 [00:04:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 117 [00:04:04.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 117 [00:04:05.000] Files (3) +Info 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) -Info 117 [00:04:06.000] ----------------------------------------------- -Info 117 [00:04:07.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 117 [00:04:08.000] Files (2) +Info 114 [00:04:03.000] ----------------------------------------------- +Info 114 [00:04:04.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 114 [00:04:05.000] Files (2) -Info 117 [00:04:09.000] ----------------------------------------------- -Info 117 [00:04:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 117 [00:04:11.000] Files (2) +Info 114 [00:04:06.000] ----------------------------------------------- +Info 114 [00:04:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 114 [00:04:08.000] Files (2) -Info 117 [00:04:12.000] ----------------------------------------------- -Info 117 [00:04:13.000] Open files: -Info 117 [00:04:14.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 117 [00:04:15.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 117 [00:04:16.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 117 [00:04:17.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 114 [00:04:09.000] ----------------------------------------------- +Info 114 [00:04:10.000] Open files: +Info 114 [00:04:11.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 114 [00:04:12.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 114 [00:04:13.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 114 [00:04:14.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2401,11 +2398,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 117 [00:04:18.000] response: +Info 114 [00:04:15.000] response: { "responseRequired": false } -Info 118 [00:04:19.000] request: +Info 115 [00:04:16.000] request: { "seq": 0, "type": "request", @@ -2452,22 +2449,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 119 [00:04:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 120 [00:04:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 120 [00:04:22.000] Files (3) +Info 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) -Info 120 [00:04:23.000] ----------------------------------------------- -Info 120 [00:04:24.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 120 [00:04:25.000] Files (2) +Info 117 [00:04:20.000] ----------------------------------------------- +Info 117 [00:04:21.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 117 [00:04:22.000] Files (2) -Info 120 [00:04:26.000] ----------------------------------------------- -Info 120 [00:04:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 120 [00:04:28.000] Files (2) +Info 117 [00:04:23.000] ----------------------------------------------- +Info 117 [00:04:24.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 117 [00:04:25.000] Files (2) -Info 120 [00:04:29.000] ----------------------------------------------- -Info 120 [00:04:30.000] Open files: -Info 120 [00:04:31.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 120 [00:04:32.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 117 [00:04:26.000] ----------------------------------------------- +Info 117 [00:04:27.000] Open files: +Info 117 [00:04:28.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 117 [00:04:29.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2508,11 +2505,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 120 [00:04:33.000] response: +Info 117 [00:04:30.000] response: { "responseRequired": false } -Info 121 [00:04:34.000] request: +Info 118 [00:04:31.000] request: { "seq": 0, "type": "request", @@ -2561,20 +2558,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 122 [00:04:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 123 [00:04:36.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 123 [00:04:37.000] Files (3) +Info 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) -Info 123 [00:04:38.000] ----------------------------------------------- -Info 123 [00:04:39.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 123 [00:04:40.000] Files (2) +Info 120 [00:04:35.000] ----------------------------------------------- +Info 120 [00:04:36.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 120 [00:04:37.000] Files (2) -Info 123 [00:04:41.000] ----------------------------------------------- -Info 123 [00:04:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 123 [00:04:43.000] Files (2) +Info 120 [00:04:38.000] ----------------------------------------------- +Info 120 [00:04:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 120 [00:04:40.000] Files (2) -Info 123 [00:04:44.000] ----------------------------------------------- -Info 123 [00:04:45.000] Open files: +Info 120 [00:04:41.000] ----------------------------------------------- +Info 120 [00:04:42.000] Open files: After request PolledWatches:: @@ -2617,11 +2614,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 123 [00:04:46.000] response: +Info 120 [00:04:43.000] response: { "responseRequired": false } -Info 124 [00:04:47.000] request: +Info 121 [00:04:44.000] request: { "seq": 0, "type": "request", @@ -2672,12 +2669,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 125 [00:04:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 126 [00:04:49.000] Search path: /user/username/projects/myproject/random -Info 127 [00:04:50.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 128 [00:04:51.000] `remove Project:: -Info 129 [00:04:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 130 [00:04:53.000] Files (3) +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 +Info 125 [00:04:48.000] `remove Project:: +Info 126 [00:04:49.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 127 [00:04:50.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -2690,19 +2687,19 @@ Info 130 [00:04:53.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 131 [00:04:54.000] ----------------------------------------------- -Info 132 [00:04:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 133 [00:04:56.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 134 [00:04:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 135 [00:04:58.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 136 [00:04:59.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 137 [00:05:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 138 [00:05:01.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 139 [00:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 140 [00:05:03.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 141 [00:05:04.000] `remove Project:: -Info 142 [00:05:05.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 143 [00:05:06.000] Files (2) +Info 128 [00:04:51.000] ----------------------------------------------- +Info 129 [00:04:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 130 [00:04:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 131 [00:04:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 132 [00:04:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 133 [00:04:56.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 134 [00:04:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 135 [00:04:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 136 [00:04:59.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 137 [00:05:00.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 138 [00:05:01.000] `remove Project:: +Info 139 [00:05:02.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 140 [00:05:03.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2712,25 +2709,25 @@ Info 143 [00:05:06.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 144 [00:05:07.000] ----------------------------------------------- -Info 145 [00:05:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 146 [00:05:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 147 [00:05:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 148 [00:05:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 149 [00:05:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 150 [00:05:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 151 [00:05:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 152 [00:05:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 153 [00:05:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 154 [00:05:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 155 [00:05:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 156 [00:05:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 156 [00:05:20.000] Files (2) - -Info 156 [00:05:21.000] ----------------------------------------------- -Info 156 [00:05:22.000] Open files: -Info 156 [00:05:23.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 156 [00:05:24.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 141 [00:05:04.000] ----------------------------------------------- +Info 142 [00:05:05.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 143 [00:05:06.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 144 [00:05:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 145 [00:05:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 146 [00:05:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 147 [00:05:10.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 148 [00:05:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 149 [00:05:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 150 [00:05:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 151 [00:05:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 152 [00:05:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 153 [00:05:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 153 [00:05:17.000] Files (2) + +Info 153 [00:05:18.000] ----------------------------------------------- +Info 153 [00:05:19.000] Open files: +Info 153 [00:05:20.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 153 [00:05:21.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2749,7 +2746,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 156 [00:05:25.000] response: +Info 153 [00:05:22.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/dependency-dtsMap-not-present.js index d9b35adf70ec7..4b428699b88e7 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 @@ -220,9 +220,8 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -233,20 +232,20 @@ Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:22.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -259,16 +258,16 @@ Info 25 [00:01:29.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:30.000] ----------------------------------------------- -Info 27 [00:01:31.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:32.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:34.000] Files (3) +Info 25 [00:01:29.000] ----------------------------------------------- +Info 26 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:33.000] Files (3) -Info 29 [00:01:35.000] ----------------------------------------------- -Info 29 [00:01:36.000] Open files: -Info 29 [00:01:37.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:38.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:34.000] ----------------------------------------------- +Info 28 [00:01:35.000] Open files: +Info 28 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:39.000] response: +Info 28 [00:01:38.000] response: { "responseRequired": false } -Info 30 [00:01:40.000] request: +Info 29 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -334,18 +333,17 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:41.000] Search path: /user/username/projects/myproject/dependency -Info 32 [00:01:42.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:43.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:52.000] Files (2) +Info 30 [00:01:40.000] Search path: /user/username/projects/myproject/dependency +Info 31 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 32 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json +Info 33 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:49.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -355,22 +353,22 @@ Info 42 [00:01:52.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:53.000] ----------------------------------------------- -Info 44 [00:01:54.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:55.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:57.000] Files (3) - -Info 46 [00:01:58.000] ----------------------------------------------- -Info 46 [00:01:59.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:02:00.000] Files (2) - -Info 46 [00:02:01.000] ----------------------------------------------- -Info 46 [00:02:02.000] Open files: -Info 46 [00:02:03.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:05.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:06.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:51.000] ----------------------------------------------- +Info 42 [00:01:52.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:53.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:55.000] Files (3) + +Info 44 [00:01:56.000] ----------------------------------------------- +Info 44 [00:01:57.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:58.000] Files (2) + +Info 44 [00:01:59.000] ----------------------------------------------- +Info 44 [00:02:00.000] Open files: +Info 44 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:04.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -399,11 +397,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [00:02:07.000] response: +Info 44 [00:02:05.000] response: { "responseRequired": false } -Info 47 [00:02:08.000] request: +Info 45 [00:02:06.000] request: { "seq": 0, "type": "request", @@ -440,11 +438,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [00:02:09.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:11.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:13.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:11.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -452,17 +450,16 @@ Info 52 [00:02:13.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:24.000] Files (2) +Info 51 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:21.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -472,26 +469,26 @@ Info 63 [00:02:24.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:25.000] ----------------------------------------------- -Info 65 [00:02:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:27.000] Files (3) - -Info 65 [00:02:28.000] ----------------------------------------------- -Info 65 [00:02:29.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:30.000] Files (2) - -Info 65 [00:02:31.000] ----------------------------------------------- -Info 65 [00:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:33.000] Files (2) - -Info 65 [00:02:34.000] ----------------------------------------------- -Info 65 [00:02:35.000] Open files: -Info 65 [00:02:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:38.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:39.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:22.000] ----------------------------------------------- +Info 62 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:24.000] Files (3) + +Info 62 [00:02:25.000] ----------------------------------------------- +Info 62 [00:02:26.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:27.000] Files (2) + +Info 62 [00:02:28.000] ----------------------------------------------- +Info 62 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:30.000] Files (2) + +Info 62 [00:02:31.000] ----------------------------------------------- +Info 62 [00:02:32.000] Open files: +Info 62 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:35.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:36.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -526,11 +523,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:42.000] response: +Info 62 [00:02:39.000] response: { "responseRequired": false } -Info 66 [00:02:43.000] request: +Info 63 [00:02:40.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -575,7 +572,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +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 PolledWatches:: @@ -612,7 +609,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:45.000] response: +Info 65 [00:02:42.000] response: { "response": { "definitions": [ @@ -649,7 +646,7 @@ Info 68 [00:02:45.000] response: }, "responseRequired": true } -Info 69 [00:02:46.000] request: +Info 66 [00:02:43.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -732,7 +729,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:47.000] response: +Info 67 [00:02:44.000] response: { "response": { "definitions": [ @@ -769,7 +766,7 @@ Info 70 [00:02:47.000] response: }, "responseRequired": true } -Info 71 [00:02:48.000] request: +Info 68 [00:02:45.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -852,7 +849,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:49.000] response: +Info 69 [00:02:46.000] response: { "response": { "definitions": [ @@ -889,7 +886,7 @@ Info 72 [00:02:49.000] response: }, "responseRequired": true } -Info 73 [00:02:50.000] request: +Info 70 [00:02:47.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -972,7 +969,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:51.000] response: +Info 71 [00:02:48.000] response: { "response": { "definitions": [ @@ -1009,7 +1006,7 @@ Info 74 [00:02:51.000] response: }, "responseRequired": true } -Info 75 [00:02:52.000] request: +Info 72 [00:02:49.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1092,7 +1089,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:53.000] response: +Info 73 [00:02:50.000] response: { "response": { "definitions": [ @@ -1129,7 +1126,7 @@ Info 76 [00:02:53.000] response: }, "responseRequired": true } -Info 77 [00:02:54.000] request: +Info 74 [00:02:51.000] request: { "command": "rename", "arguments": { @@ -1212,7 +1209,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [00:02:55.000] response: +Info 75 [00:02:52.000] response: { "response": { "info": { @@ -1260,7 +1257,7 @@ Info 78 [00:02:55.000] response: }, "responseRequired": true } -Info 79 [00:02:56.000] request: +Info 76 [00:02:53.000] request: { "command": "rename", "arguments": { @@ -1343,7 +1340,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:02:57.000] response: +Info 77 [00:02:54.000] response: { "response": { "info": { @@ -1391,7 +1388,7 @@ Info 80 [00:02:57.000] response: }, "responseRequired": true } -Info 81 [00:02:58.000] request: +Info 78 [00:02:55.000] request: { "command": "rename", "arguments": { @@ -1474,7 +1471,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [00:02:59.000] response: +Info 79 [00:02:56.000] response: { "response": { "info": { @@ -1522,7 +1519,7 @@ Info 82 [00:02:59.000] response: }, "responseRequired": true } -Info 83 [00:03:00.000] request: +Info 80 [00:02:57.000] request: { "command": "rename", "arguments": { @@ -1605,7 +1602,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:03:01.000] response: +Info 81 [00:02:58.000] response: { "response": { "info": { @@ -1653,7 +1650,7 @@ Info 84 [00:03:01.000] response: }, "responseRequired": true } -Info 85 [00:03:02.000] request: +Info 82 [00:02:59.000] request: { "command": "rename", "arguments": { @@ -1736,7 +1733,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:03.000] response: +Info 83 [00:03:00.000] response: { "response": { "info": { @@ -1784,7 +1781,7 @@ Info 86 [00:03:03.000] response: }, "responseRequired": true } -Info 87 [00:03:04.000] request: +Info 84 [00:03:01.000] request: { "seq": 0, "type": "request", @@ -1829,24 +1826,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [00:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 89 [00:03:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 89 [00:03:07.000] Files (3) +Info 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) -Info 89 [00:03:08.000] ----------------------------------------------- -Info 89 [00:03:09.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 89 [00:03:10.000] Files (2) +Info 86 [00:03:05.000] ----------------------------------------------- +Info 86 [00:03:06.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 86 [00:03:07.000] Files (2) -Info 89 [00:03:11.000] ----------------------------------------------- -Info 89 [00:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 89 [00:03:13.000] Files (2) +Info 86 [00:03:08.000] ----------------------------------------------- +Info 86 [00:03:09.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 86 [00:03:10.000] Files (2) -Info 89 [00:03:14.000] ----------------------------------------------- -Info 89 [00:03:15.000] Open files: -Info 89 [00:03:16.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 89 [00:03:17.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 89 [00:03:18.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 89 [00:03:19.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 86 [00:03:11.000] ----------------------------------------------- +Info 86 [00:03:12.000] Open files: +Info 86 [00:03:13.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 86 [00:03:14.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 86 [00:03:15.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 86 [00:03:16.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -1885,11 +1882,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:20.000] response: +Info 86 [00:03:17.000] response: { "responseRequired": false } -Info 90 [00:03:21.000] request: +Info 87 [00:03:18.000] request: { "seq": 0, "type": "request", @@ -1936,28 +1933,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 92 [00:03:23.000] Search path: /user/username/projects/myproject/random -Info 93 [00:03:24.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 94 [00:03:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 94 [00:03:26.000] Files (3) - -Info 94 [00:03:27.000] ----------------------------------------------- -Info 94 [00:03:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 94 [00:03:29.000] Files (2) - -Info 94 [00:03:30.000] ----------------------------------------------- -Info 94 [00:03:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 94 [00:03:32.000] Files (2) - -Info 94 [00:03:33.000] ----------------------------------------------- -Info 94 [00:03:34.000] Open files: -Info 94 [00:03:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 94 [00:03:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 94 [00:03:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 94 [00:03:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 94 [00:03:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 94 [00:03:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 91 [00:03:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 91 [00:03:23.000] Files (3) + +Info 91 [00:03:24.000] ----------------------------------------------- +Info 91 [00:03:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 91 [00:03:26.000] Files (2) + +Info 91 [00:03:27.000] ----------------------------------------------- +Info 91 [00:03:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 91 [00:03:29.000] Files (2) + +Info 91 [00:03:30.000] ----------------------------------------------- +Info 91 [00:03:31.000] Open files: +Info 91 [00:03:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 91 [00:03:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 91 [00:03:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 91 [00:03:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 91 [00:03:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 91 [00:03:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1994,11 +1991,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [00:03:41.000] response: +Info 91 [00:03:38.000] response: { "responseRequired": false } -Info 95 [00:03:42.000] request: +Info 92 [00:03:39.000] request: { "seq": 0, "type": "request", @@ -2043,24 +2040,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 97 [00:03:44.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 97 [00:03:45.000] Files (3) +Info 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) -Info 97 [00:03:46.000] ----------------------------------------------- -Info 97 [00:03:47.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 97 [00:03:48.000] Files (2) +Info 94 [00:03:43.000] ----------------------------------------------- +Info 94 [00:03:44.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 94 [00:03:45.000] Files (2) -Info 97 [00:03:49.000] ----------------------------------------------- -Info 97 [00:03:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 97 [00:03:51.000] Files (2) +Info 94 [00:03:46.000] ----------------------------------------------- +Info 94 [00:03:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 94 [00:03:48.000] Files (2) -Info 97 [00:03:52.000] ----------------------------------------------- -Info 97 [00:03:53.000] Open files: -Info 97 [00:03:54.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 97 [00:03:55.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 97 [00:03:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 97 [00:03:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 94 [00:03:49.000] ----------------------------------------------- +Info 94 [00:03:50.000] Open files: +Info 94 [00:03:51.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 94 [00:03:52.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 94 [00:03:53.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 94 [00:03:54.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2099,11 +2096,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [00:03:58.000] response: +Info 94 [00:03:55.000] response: { "responseRequired": false } -Info 98 [00:03:59.000] request: +Info 95 [00:03:56.000] request: { "seq": 0, "type": "request", @@ -2150,22 +2147,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [00:04:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 100 [00:04:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 100 [00:04:02.000] Files (3) +Info 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) -Info 100 [00:04:03.000] ----------------------------------------------- -Info 100 [00:04:04.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 100 [00:04:05.000] Files (2) +Info 97 [00:04:00.000] ----------------------------------------------- +Info 97 [00:04:01.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 97 [00:04:02.000] Files (2) -Info 100 [00:04:06.000] ----------------------------------------------- -Info 100 [00:04:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 100 [00:04:08.000] Files (2) +Info 97 [00:04:03.000] ----------------------------------------------- +Info 97 [00:04:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 97 [00:04:05.000] Files (2) -Info 100 [00:04:09.000] ----------------------------------------------- -Info 100 [00:04:10.000] Open files: -Info 100 [00:04:11.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 100 [00:04:12.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 97 [00:04:06.000] ----------------------------------------------- +Info 97 [00:04:07.000] Open files: +Info 97 [00:04:08.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 97 [00:04:09.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2206,11 +2203,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:04:13.000] response: +Info 97 [00:04:10.000] response: { "responseRequired": false } -Info 101 [00:04:14.000] request: +Info 98 [00:04:11.000] request: { "seq": 0, "type": "request", @@ -2259,20 +2256,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:04:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 103 [00:04:16.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 103 [00:04:17.000] Files (3) +Info 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) -Info 103 [00:04:18.000] ----------------------------------------------- -Info 103 [00:04:19.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 103 [00:04:20.000] Files (2) +Info 100 [00:04:15.000] ----------------------------------------------- +Info 100 [00:04:16.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 100 [00:04:17.000] Files (2) -Info 103 [00:04:21.000] ----------------------------------------------- -Info 103 [00:04:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 103 [00:04:23.000] Files (2) +Info 100 [00:04:18.000] ----------------------------------------------- +Info 100 [00:04:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 100 [00:04:20.000] Files (2) -Info 103 [00:04:24.000] ----------------------------------------------- -Info 103 [00:04:25.000] Open files: +Info 100 [00:04:21.000] ----------------------------------------------- +Info 100 [00:04:22.000] Open files: After request PolledWatches:: @@ -2315,11 +2312,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [00:04:26.000] response: +Info 100 [00:04:23.000] response: { "responseRequired": false } -Info 104 [00:04:27.000] request: +Info 101 [00:04:24.000] request: { "seq": 0, "type": "request", @@ -2370,12 +2367,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 105 [00:04:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 106 [00:04:29.000] Search path: /user/username/projects/myproject/random -Info 107 [00:04:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 108 [00:04:31.000] `remove Project:: -Info 109 [00:04:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 110 [00:04:33.000] Files (3) +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 +Info 105 [00:04:28.000] `remove Project:: +Info 106 [00:04:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 107 [00:04:30.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -2388,19 +2385,19 @@ Info 110 [00:04:33.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 111 [00:04:34.000] ----------------------------------------------- -Info 112 [00:04:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 113 [00:04:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 114 [00:04:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 115 [00:04:38.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 116 [00:04:39.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 117 [00:04:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 118 [00:04:41.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 119 [00:04:42.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 120 [00:04:43.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 121 [00:04:44.000] `remove Project:: -Info 122 [00:04:45.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 123 [00:04:46.000] Files (2) +Info 108 [00:04:31.000] ----------------------------------------------- +Info 109 [00:04:32.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 110 [00:04:33.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 111 [00:04:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 112 [00:04:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 113 [00:04:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 114 [00:04:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 115 [00:04:38.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 116 [00:04:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 117 [00:04:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 118 [00:04:41.000] `remove Project:: +Info 119 [00:04:42.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 120 [00:04:43.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2410,25 +2407,25 @@ Info 123 [00:04:46.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 124 [00:04:47.000] ----------------------------------------------- -Info 125 [00:04:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 126 [00:04:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 127 [00:04:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 128 [00:04:51.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 129 [00:04:52.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 130 [00:04:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 131 [00:04:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 132 [00:04:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 133 [00:04:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 134 [00:04:57.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 135 [00:04:58.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 136 [00:04:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 136 [00:05:00.000] Files (2) - -Info 136 [00:05:01.000] ----------------------------------------------- -Info 136 [00:05:02.000] Open files: -Info 136 [00:05:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 136 [00:05:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 121 [00:04:44.000] ----------------------------------------------- +Info 122 [00:04:45.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 123 [00:04:46.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 124 [00:04:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 125 [00:04:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 126 [00:04:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 127 [00:04:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 128 [00:04:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 129 [00:04:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 130 [00:04:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 131 [00:04:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 132 [00:04:55.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 133 [00:04:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 133 [00:04:57.000] Files (2) + +Info 133 [00:04:58.000] ----------------------------------------------- +Info 133 [00:04:59.000] Open files: +Info 133 [00:05:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 133 [00:05:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2447,7 +2444,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 136 [00:05:05.000] response: +Info 133 [00:05:02.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/gotoDef-and-rename-locations.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/gotoDef-and-rename-locations.js index 5b23d62e94369..4b52e78288ee5 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 @@ -223,9 +223,8 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +235,20 @@ Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:28.000] Files (3) +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +261,16 @@ Info 25 [00:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:29.000] ----------------------------------------------- -Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:33.000] Files (3) +Info 25 [00:01:28.000] ----------------------------------------------- +Info 26 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:32.000] Files (3) -Info 29 [00:01:34.000] ----------------------------------------------- -Info 29 [00:01:35.000] Open files: -Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:33.000] ----------------------------------------------- +Info 28 [00:01:34.000] Open files: +Info 28 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:38.000] response: +Info 28 [00:01:37.000] response: { "responseRequired": false } -Info 30 [00:01:39.000] request: +Info 29 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -337,18 +336,17 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/dependency -Info 32 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +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 +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +356,22 @@ Info 42 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:56.000] Files (3) - -Info 46 [00:01:57.000] ----------------------------------------------- -Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:01:59.000] Files (2) - -Info 46 [00:02:00.000] ----------------------------------------------- -Info 46 [00:02:01.000] Open files: -Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) + +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) + +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -402,11 +400,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [00:02:06.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 47 [00:02:07.000] request: +Info 45 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -443,11 +441,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -455,17 +453,16 @@ Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:23.000] Files (2) +Info 51 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -475,26 +472,26 @@ Info 63 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:24.000] ----------------------------------------------- -Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:26.000] Files (3) - -Info 65 [00:02:27.000] ----------------------------------------------- -Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:29.000] Files (2) - -Info 65 [00:02:30.000] ----------------------------------------------- -Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:32.000] Files (2) - -Info 65 [00:02:33.000] ----------------------------------------------- -Info 65 [00:02:34.000] Open files: -Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:21.000] ----------------------------------------------- +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (3) + +Info 62 [00:02:24.000] ----------------------------------------------- +Info 62 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:26.000] Files (2) + +Info 62 [00:02:27.000] ----------------------------------------------- +Info 62 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:29.000] Files (2) + +Info 62 [00:02:30.000] ----------------------------------------------- +Info 62 [00:02:31.000] Open files: +Info 62 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -529,11 +526,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:41.000] response: +Info 62 [00:02:38.000] response: { "responseRequired": false } -Info 66 [00:02:42.000] request: +Info 63 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -578,7 +575,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -615,7 +612,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:44.000] response: +Info 65 [00:02:41.000] response: { "response": { "definitions": [ @@ -652,7 +649,7 @@ Info 68 [00:02:44.000] response: }, "responseRequired": true } -Info 69 [00:02:45.000] request: +Info 66 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -735,7 +732,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:46.000] response: +Info 67 [00:02:43.000] response: { "response": { "definitions": [ @@ -772,7 +769,7 @@ Info 70 [00:02:46.000] response: }, "responseRequired": true } -Info 71 [00:02:47.000] request: +Info 68 [00:02:44.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -855,7 +852,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:48.000] response: +Info 69 [00:02:45.000] response: { "response": { "definitions": [ @@ -892,7 +889,7 @@ Info 72 [00:02:48.000] response: }, "responseRequired": true } -Info 73 [00:02:49.000] request: +Info 70 [00:02:46.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -975,7 +972,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:50.000] response: +Info 71 [00:02:47.000] response: { "response": { "definitions": [ @@ -1012,7 +1009,7 @@ Info 74 [00:02:50.000] response: }, "responseRequired": true } -Info 75 [00:02:51.000] request: +Info 72 [00:02:48.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1095,7 +1092,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:52.000] response: +Info 73 [00:02:49.000] response: { "response": { "definitions": [ @@ -1132,7 +1129,7 @@ Info 76 [00:02:52.000] response: }, "responseRequired": true } -Info 77 [00:02:53.000] request: +Info 74 [00:02:50.000] request: { "command": "rename", "arguments": { @@ -1179,8 +1176,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [00:02:54.000] Search path: /user/username/projects/myproject/dependency -Info 79 [00:02:55.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1217,7 +1214,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:02:56.000] response: +Info 77 [00:02:53.000] response: { "response": { "info": { @@ -1298,7 +1295,7 @@ Info 80 [00:02:56.000] response: }, "responseRequired": true } -Info 81 [00:02:57.000] request: +Info 78 [00:02:54.000] request: { "command": "rename", "arguments": { @@ -1345,8 +1342,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [00:02:58.000] Search path: /user/username/projects/myproject/dependency -Info 83 [00:02:59.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1383,7 +1380,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:03:00.000] response: +Info 81 [00:02:57.000] response: { "response": { "info": { @@ -1464,7 +1461,7 @@ Info 84 [00:03:00.000] response: }, "responseRequired": true } -Info 85 [00:03:01.000] request: +Info 82 [00:02:58.000] request: { "command": "rename", "arguments": { @@ -1511,8 +1508,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:02.000] Search path: /user/username/projects/myproject/dependency -Info 87 [00:03:03.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1549,7 +1546,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [00:03:04.000] response: +Info 85 [00:03:01.000] response: { "response": { "info": { @@ -1630,7 +1627,7 @@ Info 88 [00:03:04.000] response: }, "responseRequired": true } -Info 89 [00:03:05.000] request: +Info 86 [00:03:02.000] request: { "command": "rename", "arguments": { @@ -1677,8 +1674,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:06.000] Search path: /user/username/projects/myproject/dependency -Info 91 [00:03:07.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1715,7 +1712,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [00:03:08.000] response: +Info 89 [00:03:05.000] response: { "response": { "info": { @@ -1796,7 +1793,7 @@ Info 92 [00:03:08.000] response: }, "responseRequired": true } -Info 93 [00:03:09.000] request: +Info 90 [00:03:06.000] request: { "command": "rename", "arguments": { @@ -1843,8 +1840,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 94 [00:03:10.000] Search path: /user/username/projects/myproject/dependency -Info 95 [00:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -1881,7 +1878,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:12.000] response: +Info 93 [00:03:09.000] response: { "response": { "info": { @@ -1962,7 +1959,7 @@ Info 96 [00:03:12.000] response: }, "responseRequired": true } -Info 97 [00:03:13.000] request: +Info 94 [00:03:10.000] request: { "seq": 0, "type": "request", @@ -2007,24 +2004,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 99 [00:03:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 99 [00:03:16.000] Files (3) +Info 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) -Info 99 [00:03:17.000] ----------------------------------------------- -Info 99 [00:03:18.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 99 [00:03:19.000] Files (2) +Info 96 [00:03:14.000] ----------------------------------------------- +Info 96 [00:03:15.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 96 [00:03:16.000] Files (2) -Info 99 [00:03:20.000] ----------------------------------------------- -Info 99 [00:03:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 99 [00:03:22.000] Files (2) +Info 96 [00:03:17.000] ----------------------------------------------- +Info 96 [00:03:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 96 [00:03:19.000] Files (2) -Info 99 [00:03:23.000] ----------------------------------------------- -Info 99 [00:03:24.000] Open files: -Info 99 [00:03:25.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 99 [00:03:26.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 99 [00:03:27.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 99 [00:03:28.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 96 [00:03:20.000] ----------------------------------------------- +Info 96 [00:03:21.000] Open files: +Info 96 [00:03:22.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 96 [00:03:23.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 96 [00:03:24.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 96 [00:03:25.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -2063,11 +2060,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [00:03:29.000] response: +Info 96 [00:03:26.000] response: { "responseRequired": false } -Info 100 [00:03:30.000] request: +Info 97 [00:03:27.000] request: { "seq": 0, "type": "request", @@ -2114,28 +2111,28 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 101 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 102 [00:03:32.000] Search path: /user/username/projects/myproject/random -Info 103 [00:03:33.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 104 [00:03:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 104 [00:03:35.000] Files (3) - -Info 104 [00:03:36.000] ----------------------------------------------- -Info 104 [00:03:37.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 104 [00:03:38.000] Files (2) - -Info 104 [00:03:39.000] ----------------------------------------------- -Info 104 [00:03:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 104 [00:03:41.000] Files (2) - -Info 104 [00:03:42.000] ----------------------------------------------- -Info 104 [00:03:43.000] Open files: -Info 104 [00:03:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 104 [00:03:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 104 [00:03:46.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 104 [00:03:47.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 104 [00:03:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 104 [00:03:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 101 [00:03:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 101 [00:03:32.000] Files (3) + +Info 101 [00:03:33.000] ----------------------------------------------- +Info 101 [00:03:34.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 101 [00:03:35.000] Files (2) + +Info 101 [00:03:36.000] ----------------------------------------------- +Info 101 [00:03:37.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 101 [00:03:38.000] Files (2) + +Info 101 [00:03:39.000] ----------------------------------------------- +Info 101 [00:03:40.000] Open files: +Info 101 [00:03:41.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 101 [00:03:42.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 101 [00:03:43.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 101 [00:03:44.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 101 [00:03:45.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 101 [00:03:46.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2172,11 +2169,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:50.000] response: +Info 101 [00:03:47.000] response: { "responseRequired": false } -Info 105 [00:03:51.000] request: +Info 102 [00:03:48.000] request: { "seq": 0, "type": "request", @@ -2221,24 +2218,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 107 [00:03:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 107 [00:03:54.000] Files (3) +Info 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) -Info 107 [00:03:55.000] ----------------------------------------------- -Info 107 [00:03:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 107 [00:03:57.000] Files (2) +Info 104 [00:03:52.000] ----------------------------------------------- +Info 104 [00:03:53.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 104 [00:03:54.000] Files (2) -Info 107 [00:03:58.000] ----------------------------------------------- -Info 107 [00:03:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 107 [00:04:00.000] Files (2) +Info 104 [00:03:55.000] ----------------------------------------------- +Info 104 [00:03:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 104 [00:03:57.000] Files (2) -Info 107 [00:04:01.000] ----------------------------------------------- -Info 107 [00:04:02.000] Open files: -Info 107 [00:04:03.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 107 [00:04:04.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 107 [00:04:05.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 107 [00:04:06.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 104 [00:03:58.000] ----------------------------------------------- +Info 104 [00:03:59.000] Open files: +Info 104 [00:04:00.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 104 [00:04:01.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 104 [00:04:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 104 [00:04:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2277,11 +2274,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 107 [00:04:07.000] response: +Info 104 [00:04:04.000] response: { "responseRequired": false } -Info 108 [00:04:08.000] request: +Info 105 [00:04:05.000] request: { "seq": 0, "type": "request", @@ -2328,22 +2325,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 109 [00:04:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 110 [00:04:10.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 110 [00:04:11.000] Files (3) +Info 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) -Info 110 [00:04:12.000] ----------------------------------------------- -Info 110 [00:04:13.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 110 [00:04:14.000] Files (2) +Info 107 [00:04:09.000] ----------------------------------------------- +Info 107 [00:04:10.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 107 [00:04:11.000] Files (2) -Info 110 [00:04:15.000] ----------------------------------------------- -Info 110 [00:04:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 110 [00:04:17.000] Files (2) +Info 107 [00:04:12.000] ----------------------------------------------- +Info 107 [00:04:13.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 107 [00:04:14.000] Files (2) -Info 110 [00:04:18.000] ----------------------------------------------- -Info 110 [00:04:19.000] Open files: -Info 110 [00:04:20.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 110 [00:04:21.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 107 [00:04:15.000] ----------------------------------------------- +Info 107 [00:04:16.000] Open files: +Info 107 [00:04:17.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 107 [00:04:18.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2384,11 +2381,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:04:22.000] response: +Info 107 [00:04:19.000] response: { "responseRequired": false } -Info 111 [00:04:23.000] request: +Info 108 [00:04:20.000] request: { "seq": 0, "type": "request", @@ -2437,20 +2434,20 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:04:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 113 [00:04:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 113 [00:04:26.000] Files (3) +Info 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) -Info 113 [00:04:27.000] ----------------------------------------------- -Info 113 [00:04:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 113 [00:04:29.000] Files (2) +Info 110 [00:04:24.000] ----------------------------------------------- +Info 110 [00:04:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 110 [00:04:26.000] Files (2) -Info 113 [00:04:30.000] ----------------------------------------------- -Info 113 [00:04:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 113 [00:04:32.000] Files (2) +Info 110 [00:04:27.000] ----------------------------------------------- +Info 110 [00:04:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 110 [00:04:29.000] Files (2) -Info 113 [00:04:33.000] ----------------------------------------------- -Info 113 [00:04:34.000] Open files: +Info 110 [00:04:30.000] ----------------------------------------------- +Info 110 [00:04:31.000] Open files: After request PolledWatches:: @@ -2493,11 +2490,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [00:04:35.000] response: +Info 110 [00:04:32.000] response: { "responseRequired": false } -Info 114 [00:04:36.000] request: +Info 111 [00:04:33.000] request: { "seq": 0, "type": "request", @@ -2548,12 +2545,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 115 [00:04:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 116 [00:04:38.000] Search path: /user/username/projects/myproject/random -Info 117 [00:04:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 118 [00:04:40.000] `remove Project:: -Info 119 [00:04:41.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 120 [00:04:42.000] Files (3) +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 +Info 115 [00:04:37.000] `remove Project:: +Info 116 [00:04:38.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 117 [00:04:39.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -2566,19 +2563,19 @@ Info 120 [00:04:42.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 121 [00:04:43.000] ----------------------------------------------- -Info 122 [00:04:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 123 [00:04:45.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 124 [00:04:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 125 [00:04:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 126 [00:04:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 127 [00:04:49.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 128 [00:04:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 129 [00:04:51.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 130 [00:04:52.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 131 [00:04:53.000] `remove Project:: -Info 132 [00:04:54.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 133 [00:04:55.000] Files (2) +Info 118 [00:04:40.000] ----------------------------------------------- +Info 119 [00:04:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 120 [00:04:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 121 [00:04:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 122 [00:04:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 123 [00:04:45.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 124 [00:04:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 125 [00:04:47.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 126 [00:04:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 127 [00:04:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 128 [00:04:50.000] `remove Project:: +Info 129 [00:04:51.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 130 [00:04:52.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -2588,25 +2585,25 @@ Info 133 [00:04:55.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 134 [00:04:56.000] ----------------------------------------------- -Info 135 [00:04:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 136 [00:04:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 137 [00:04:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 138 [00:05:00.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 139 [00:05:01.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 140 [00:05:02.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 141 [00:05:03.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 142 [00:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 143 [00:05:05.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 144 [00:05:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 145 [00:05:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 146 [00:05:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 146 [00:05:09.000] Files (2) - -Info 146 [00:05:10.000] ----------------------------------------------- -Info 146 [00:05:11.000] Open files: -Info 146 [00:05:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 146 [00:05:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 131 [00:04:53.000] ----------------------------------------------- +Info 132 [00:04:54.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 133 [00:04:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 134 [00:04:56.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 135 [00:04:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 136 [00:04:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 137 [00:04:59.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 138 [00:05:00.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 139 [00:05:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 140 [00:05:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 141 [00:05:03.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 142 [00:05:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 143 [00:05:05.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 143 [00:05:06.000] Files (2) + +Info 143 [00:05:07.000] ----------------------------------------------- +Info 143 [00:05:08.000] Open files: +Info 143 [00:05:09.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 143 [00:05:10.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -2625,7 +2622,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 146 [00:05:14.000] response: +Info 143 [00:05:11.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/usage-file-changes-with-timeout-before-request.js index 21e77ddfc214f..9b51a2ec37712 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 @@ -223,9 +223,8 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +235,20 @@ Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:28.000] Files (3) +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +261,16 @@ Info 25 [00:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:29.000] ----------------------------------------------- -Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:33.000] Files (3) +Info 25 [00:01:28.000] ----------------------------------------------- +Info 26 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:32.000] Files (3) -Info 29 [00:01:34.000] ----------------------------------------------- -Info 29 [00:01:35.000] Open files: -Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:33.000] ----------------------------------------------- +Info 28 [00:01:34.000] Open files: +Info 28 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:38.000] response: +Info 28 [00:01:37.000] response: { "responseRequired": false } -Info 30 [00:01:39.000] request: +Info 29 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -337,18 +336,17 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/dependency -Info 32 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +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 +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +356,22 @@ Info 42 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:56.000] Files (3) - -Info 46 [00:01:57.000] ----------------------------------------------- -Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:01:59.000] Files (2) - -Info 46 [00:02:00.000] ----------------------------------------------- -Info 46 [00:02:01.000] Open files: -Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) + +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) + +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -402,11 +400,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [00:02:06.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 47 [00:02:07.000] request: +Info 45 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -443,11 +441,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -455,17 +453,16 @@ Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:23.000] Files (2) +Info 51 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -475,26 +472,26 @@ Info 63 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:24.000] ----------------------------------------------- -Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:26.000] Files (3) - -Info 65 [00:02:27.000] ----------------------------------------------- -Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:29.000] Files (2) - -Info 65 [00:02:30.000] ----------------------------------------------- -Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:32.000] Files (2) - -Info 65 [00:02:33.000] ----------------------------------------------- -Info 65 [00:02:34.000] Open files: -Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:21.000] ----------------------------------------------- +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (3) + +Info 62 [00:02:24.000] ----------------------------------------------- +Info 62 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:26.000] Files (2) + +Info 62 [00:02:27.000] ----------------------------------------------- +Info 62 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:29.000] Files (2) + +Info 62 [00:02:30.000] ----------------------------------------------- +Info 62 [00:02:31.000] Open files: +Info 62 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -529,11 +526,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:41.000] response: +Info 62 [00:02:38.000] response: { "responseRequired": false } -Info 66 [00:02:42.000] request: +Info 63 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -578,7 +575,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -615,7 +612,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:44.000] response: +Info 65 [00:02:41.000] response: { "response": { "definitions": [ @@ -652,7 +649,7 @@ Info 68 [00:02:44.000] response: }, "responseRequired": true } -Info 69 [00:02:45.000] request: +Info 66 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -699,8 +696,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -737,7 +734,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:48.000] response: +Info 69 [00:02:45.000] response: { "response": { "info": { @@ -818,7 +815,7 @@ Info 72 [00:02:48.000] response: }, "responseRequired": true } -Info 73 [00:02:49.000] request: +Info 70 [00:02:46.000] request: { "command": "change", "arguments": { @@ -904,11 +901,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:50.000] response: +Info 71 [00:02:47.000] response: { "responseRequired": false } -Info 75 [00:02:51.000] request: +Info 72 [00:02:48.000] request: { "command": "change", "arguments": { @@ -994,7 +991,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:52.000] response: +Info 73 [00:02:49.000] response: { "responseRequired": false } @@ -1070,7 +1067,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:02:53.000] request: +Info 74 [00:02:50.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1117,9 +1114,9 @@ FsWatchesRecursive:: /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 +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:: @@ -1156,7 +1153,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [00:02:57.000] response: +Info 78 [00:02:54.000] response: { "response": { "definitions": [ @@ -1193,7 +1190,7 @@ Info 81 [00:02:57.000] response: }, "responseRequired": true } -Info 82 [00:02:58.000] request: +Info 79 [00:02:55.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1276,7 +1273,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [00:02:59.000] response: +Info 80 [00:02:56.000] response: { "response": { "definitions": [ @@ -1313,7 +1310,7 @@ Info 83 [00:02:59.000] response: }, "responseRequired": true } -Info 84 [00:03:00.000] request: +Info 81 [00:02:57.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1396,7 +1393,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [00:03:01.000] response: +Info 82 [00:02:58.000] response: { "response": { "definitions": [ @@ -1433,7 +1430,7 @@ Info 85 [00:03:01.000] response: }, "responseRequired": true } -Info 86 [00:03:02.000] request: +Info 83 [00:02:59.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1516,7 +1513,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [00:03:03.000] response: +Info 84 [00:03:00.000] response: { "response": { "definitions": [ @@ -1553,7 +1550,7 @@ Info 87 [00:03:03.000] response: }, "responseRequired": true } -Info 88 [00:03:04.000] request: +Info 85 [00:03:01.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1636,7 +1633,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:05.000] response: +Info 86 [00:03:02.000] response: { "response": { "definitions": [ @@ -1673,7 +1670,7 @@ Info 89 [00:03:05.000] response: }, "responseRequired": true } -Info 90 [00:03:06.000] request: +Info 87 [00:03:03.000] request: { "command": "rename", "arguments": { @@ -1720,11 +1717,11 @@ FsWatchesRecursive:: /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:: Completely Elapsed:: *ms -Info 93 [00:03:09.000] Different program with same set of files -Info 94 [00:03:10.000] Search path: /user/username/projects/myproject/dependency -Info 95 [00:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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 +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:: @@ -1761,7 +1758,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:12.000] response: +Info 93 [00:03:09.000] response: { "response": { "info": { @@ -1842,7 +1839,7 @@ Info 96 [00:03:12.000] response: }, "responseRequired": true } -Info 97 [00:03:13.000] request: +Info 94 [00:03:10.000] request: { "command": "rename", "arguments": { @@ -1889,8 +1886,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:14.000] Search path: /user/username/projects/myproject/dependency -Info 99 [00:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 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:: @@ -1927,7 +1924,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:16.000] response: +Info 97 [00:03:13.000] response: { "response": { "info": { @@ -2008,7 +2005,7 @@ Info 100 [00:03:16.000] response: }, "responseRequired": true } -Info 101 [00:03:17.000] request: +Info 98 [00:03:14.000] request: { "command": "rename", "arguments": { @@ -2055,8 +2052,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:18.000] Search path: /user/username/projects/myproject/dependency -Info 103 [00:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2093,7 +2090,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:20.000] response: +Info 101 [00:03:17.000] response: { "response": { "info": { @@ -2174,7 +2171,7 @@ Info 104 [00:03:20.000] response: }, "responseRequired": true } -Info 105 [00:03:21.000] request: +Info 102 [00:03:18.000] request: { "command": "rename", "arguments": { @@ -2221,8 +2218,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:22.000] Search path: /user/username/projects/myproject/dependency -Info 107 [00:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2259,7 +2256,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:24.000] response: +Info 105 [00:03:21.000] response: { "response": { "info": { @@ -2340,7 +2337,7 @@ Info 108 [00:03:24.000] response: }, "responseRequired": true } -Info 109 [00:03:25.000] request: +Info 106 [00:03:22.000] request: { "command": "rename", "arguments": { @@ -2387,8 +2384,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:26.000] Search path: /user/username/projects/myproject/dependency -Info 111 [00:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2425,7 +2422,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:03:28.000] response: +Info 109 [00:03:25.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/dependencyAndUsage/disabledSourceRef/usage-file-changes.js index 90be3449e9bb3..86aa24d70cac6 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 @@ -223,9 +223,8 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +235,20 @@ Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:28.000] Files (3) +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +261,16 @@ Info 25 [00:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:29.000] ----------------------------------------------- -Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:33.000] Files (3) +Info 25 [00:01:28.000] ----------------------------------------------- +Info 26 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:32.000] Files (3) -Info 29 [00:01:34.000] ----------------------------------------------- -Info 29 [00:01:35.000] Open files: -Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:33.000] ----------------------------------------------- +Info 28 [00:01:34.000] Open files: +Info 28 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:38.000] response: +Info 28 [00:01:37.000] response: { "responseRequired": false } -Info 30 [00:01:39.000] request: +Info 29 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -337,18 +336,17 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/dependency -Info 32 [00:01:41.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json -Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/dependency/tsconfig.json -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +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 +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/dependency/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts @@ -358,22 +356,22 @@ Info 42 [00:01:51.000] Files (2) FnS.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Search path: /user/username/projects/myproject/dependency -Info 45 [00:01:54.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. -Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 46 [00:01:56.000] Files (3) - -Info 46 [00:01:57.000] ----------------------------------------------- -Info 46 [00:01:58.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 46 [00:01:59.000] Files (2) - -Info 46 [00:02:00.000] ----------------------------------------------- -Info 46 [00:02:01.000] Open files: -Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Search path: /user/username/projects/myproject/dependency +Info 43 [00:01:52.000] For info: /user/username/projects/myproject/dependency/tsconfig.json :: No config files found. +Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (3) + +Info 44 [00:01:55.000] ----------------------------------------------- +Info 44 [00:01:56.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 44 [00:01:57.000] Files (2) + +Info 44 [00:01:58.000] ----------------------------------------------- +Info 44 [00:01:59.000] Open files: +Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json After request PolledWatches:: @@ -402,11 +400,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 46 [00:02:06.000] response: +Info 44 [00:02:04.000] response: { "responseRequired": false } -Info 47 [00:02:07.000] request: +Info 45 [00:02:05.000] request: { "seq": 0, "type": "request", @@ -443,11 +441,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 48 [00:02:08.000] Search path: /user/username/projects/myproject/random -Info 49 [00:02:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 50 [00:02:10.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 49 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 50 [00:02:10.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -455,17 +453,16 @@ Info 52 [00:02:12.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 53 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 54 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 55 [00:02:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 57 [00:02:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 58 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 59 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 60 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 61 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:23.000] Files (2) +Info 51 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 52 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 53 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 54 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 55 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 56 [00:02:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 57 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 58 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -475,26 +472,26 @@ Info 63 [00:02:23.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 64 [00:02:24.000] ----------------------------------------------- -Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:26.000] Files (3) - -Info 65 [00:02:27.000] ----------------------------------------------- -Info 65 [00:02:28.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) -Info 65 [00:02:29.000] Files (2) - -Info 65 [00:02:30.000] ----------------------------------------------- -Info 65 [00:02:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:32.000] Files (2) - -Info 65 [00:02:33.000] ----------------------------------------------- -Info 65 [00:02:34.000] Open files: -Info 65 [00:02:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:37.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined -Info 65 [00:02:38.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json -Info 65 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:21.000] ----------------------------------------------- +Info 62 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:23.000] Files (3) + +Info 62 [00:02:24.000] ----------------------------------------------- +Info 62 [00:02:25.000] Project '/user/username/projects/myproject/dependency/tsconfig.json' (Configured) +Info 62 [00:02:26.000] Files (2) + +Info 62 [00:02:27.000] ----------------------------------------------- +Info 62 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:29.000] Files (2) + +Info 62 [00:02:30.000] ----------------------------------------------- +Info 62 [00:02:31.000] Open files: +Info 62 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:34.000] FileName: /user/username/projects/myproject/dependency/FnS.ts ProjectRootPath: undefined +Info 62 [00:02:35.000] Projects: /user/username/projects/myproject/dependency/tsconfig.json +Info 62 [00:02:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -529,11 +526,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:41.000] response: +Info 62 [00:02:38.000] response: { "responseRequired": false } -Info 66 [00:02:42.000] request: +Info 63 [00:02:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -578,7 +575,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -615,7 +612,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:44.000] response: +Info 65 [00:02:41.000] response: { "response": { "definitions": [ @@ -652,7 +649,7 @@ Info 68 [00:02:44.000] response: }, "responseRequired": true } -Info 69 [00:02:45.000] request: +Info 66 [00:02:42.000] request: { "command": "rename", "arguments": { @@ -699,8 +696,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:46.000] Search path: /user/username/projects/myproject/dependency -Info 71 [00:02:47.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -737,7 +734,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:48.000] response: +Info 69 [00:02:45.000] response: { "response": { "info": { @@ -818,7 +815,7 @@ Info 72 [00:02:48.000] response: }, "responseRequired": true } -Info 73 [00:02:49.000] request: +Info 70 [00:02:46.000] request: { "command": "change", "arguments": { @@ -904,11 +901,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:50.000] response: +Info 71 [00:02:47.000] response: { "responseRequired": false } -Info 75 [00:02:51.000] request: +Info 72 [00:02:48.000] request: { "command": "change", "arguments": { @@ -994,11 +991,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:52.000] response: +Info 73 [00:02:49.000] response: { "responseRequired": false } -Info 77 [00:02:53.000] request: +Info 74 [00:02:50.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1045,9 +1042,9 @@ FsWatchesRecursive:: /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 +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:: @@ -1084,7 +1081,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [00:02:57.000] response: +Info 78 [00:02:54.000] response: { "response": { "definitions": [ @@ -1121,7 +1118,7 @@ Info 81 [00:02:57.000] response: }, "responseRequired": true } -Info 82 [00:02:58.000] request: +Info 79 [00:02:55.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1204,7 +1201,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [00:02:59.000] response: +Info 80 [00:02:56.000] response: { "response": { "definitions": [ @@ -1241,7 +1238,7 @@ Info 83 [00:02:59.000] response: }, "responseRequired": true } -Info 84 [00:03:00.000] request: +Info 81 [00:02:57.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1324,7 +1321,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [00:03:01.000] response: +Info 82 [00:02:58.000] response: { "response": { "definitions": [ @@ -1361,7 +1358,7 @@ Info 85 [00:03:01.000] response: }, "responseRequired": true } -Info 86 [00:03:02.000] request: +Info 83 [00:02:59.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1444,7 +1441,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [00:03:03.000] response: +Info 84 [00:03:00.000] response: { "response": { "definitions": [ @@ -1481,7 +1478,7 @@ Info 87 [00:03:03.000] response: }, "responseRequired": true } -Info 88 [00:03:04.000] request: +Info 85 [00:03:01.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1564,7 +1561,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:05.000] response: +Info 86 [00:03:02.000] response: { "response": { "definitions": [ @@ -1601,7 +1598,7 @@ Info 89 [00:03:05.000] response: }, "responseRequired": true } -Info 90 [00:03:06.000] request: +Info 87 [00:03:03.000] request: { "command": "rename", "arguments": { @@ -1648,11 +1645,11 @@ FsWatchesRecursive:: /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:: Completely Elapsed:: *ms -Info 93 [00:03:09.000] Different program with same set of files -Info 94 [00:03:10.000] Search path: /user/username/projects/myproject/dependency -Info 95 [00:03:11.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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 +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:: @@ -1689,7 +1686,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 96 [00:03:12.000] response: +Info 93 [00:03:09.000] response: { "response": { "info": { @@ -1770,7 +1767,7 @@ Info 96 [00:03:12.000] response: }, "responseRequired": true } -Info 97 [00:03:13.000] request: +Info 94 [00:03:10.000] request: { "command": "rename", "arguments": { @@ -1817,8 +1814,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 98 [00:03:14.000] Search path: /user/username/projects/myproject/dependency -Info 99 [00:03:15.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +Info 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:: @@ -1855,7 +1852,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:16.000] response: +Info 97 [00:03:13.000] response: { "response": { "info": { @@ -1936,7 +1933,7 @@ Info 100 [00:03:16.000] response: }, "responseRequired": true } -Info 101 [00:03:17.000] request: +Info 98 [00:03:14.000] request: { "command": "rename", "arguments": { @@ -1983,8 +1980,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 102 [00:03:18.000] Search path: /user/username/projects/myproject/dependency -Info 103 [00:03:19.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2021,7 +2018,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:20.000] response: +Info 101 [00:03:17.000] response: { "response": { "info": { @@ -2102,7 +2099,7 @@ Info 104 [00:03:20.000] response: }, "responseRequired": true } -Info 105 [00:03:21.000] request: +Info 102 [00:03:18.000] request: { "command": "rename", "arguments": { @@ -2149,8 +2146,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:22.000] Search path: /user/username/projects/myproject/dependency -Info 107 [00:03:23.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2187,7 +2184,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 108 [00:03:24.000] response: +Info 105 [00:03:21.000] response: { "response": { "info": { @@ -2268,7 +2265,7 @@ Info 108 [00:03:24.000] response: }, "responseRequired": true } -Info 109 [00:03:25.000] request: +Info 106 [00:03:22.000] request: { "command": "rename", "arguments": { @@ -2315,8 +2312,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:26.000] Search path: /user/username/projects/myproject/dependency -Info 111 [00:03:27.000] For info: /user/username/projects/myproject/dependency/FnS.ts :: Config file name: /user/username/projects/myproject/dependency/tsconfig.json +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:: @@ -2353,7 +2350,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 112 [00:03:28.000] response: +Info 109 [00:03:25.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/can-go-to-definition-correctly.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/can-go-to-definition-correctly.js index 0479a67e4e1b6..a9a71979e9dd3 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 @@ -216,19 +216,18 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:24.000] Files (3) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:23.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +240,16 @@ Info 21 [00:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:25.000] ----------------------------------------------- -Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 21 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) -Info 25 [00:01:30.000] ----------------------------------------------- -Info 25 [00:01:31.000] Open files: -Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:29.000] ----------------------------------------------- +Info 24 [00:01:30.000] Open files: +Info 24 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +272,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:34.000] response: +Info 24 [00:01:33.000] response: { "responseRequired": false } -Info 26 [00:01:35.000] request: +Info 25 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -308,11 +307,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/random -Info 28 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 29 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 30 [00:01:39.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -320,17 +319,16 @@ Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -340,20 +338,20 @@ Info 42 [00:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [00:01:54.000] Files (3) +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 42 [00:01:52.000] Files (3) -Info 44 [00:01:55.000] ----------------------------------------------- -Info 44 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [00:01:57.000] Files (2) +Info 42 [00:01:53.000] ----------------------------------------------- +Info 42 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:55.000] Files (2) -Info 44 [00:01:58.000] ----------------------------------------------- -Info 44 [00:01:59.000] Open files: -Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 42 [00:01:56.000] ----------------------------------------------- +Info 42 [00:01:57.000] Open files: +Info 42 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 42 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 42 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 42 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -382,11 +380,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [00:02:04.000] response: +Info 42 [00:02:02.000] response: { "responseRequired": false } -Info 45 [00:02:05.000] request: +Info 43 [00:02:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -425,8 +423,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -459,7 +457,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:08.000] response: +Info 46 [00:02:06.000] response: { "response": { "definitions": [ @@ -496,7 +494,7 @@ Info 48 [00:02:08.000] response: }, "responseRequired": true } -Info 49 [00:02:09.000] request: +Info 47 [00:02:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -571,7 +569,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:10.000] response: +Info 48 [00:02:08.000] response: { "response": { "definitions": [ @@ -608,7 +606,7 @@ Info 50 [00:02:10.000] response: }, "responseRequired": true } -Info 51 [00:02:11.000] request: +Info 49 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -683,7 +681,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:12.000] response: +Info 50 [00:02:10.000] response: { "response": { "definitions": [ @@ -720,7 +718,7 @@ Info 52 [00:02:12.000] response: }, "responseRequired": true } -Info 53 [00:02:13.000] request: +Info 51 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -795,7 +793,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:14.000] response: +Info 52 [00:02:12.000] response: { "response": { "definitions": [ @@ -832,7 +830,7 @@ Info 54 [00:02:14.000] response: }, "responseRequired": true } -Info 55 [00:02:15.000] request: +Info 53 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -907,7 +905,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:16.000] response: +Info 54 [00:02:14.000] response: { "response": { "definitions": [ @@ -944,7 +942,7 @@ Info 56 [00:02:16.000] response: }, "responseRequired": true } -Info 57 [00:02:17.000] request: +Info 55 [00:02:15.000] request: { "seq": 0, "type": "request", @@ -985,18 +983,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 59 [00:02:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 59 [00:02:20.000] Files (3) +Info 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) -Info 59 [00:02:21.000] ----------------------------------------------- -Info 59 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 59 [00:02:23.000] Files (2) +Info 57 [00:02:19.000] ----------------------------------------------- +Info 57 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 57 [00:02:21.000] Files (2) -Info 59 [00:02:24.000] ----------------------------------------------- -Info 59 [00:02:25.000] Open files: -Info 59 [00:02:26.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 59 [00:02:27.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 57 [00:02:22.000] ----------------------------------------------- +Info 57 [00:02:23.000] Open files: +Info 57 [00:02:24.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 57 [00:02:25.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1031,11 +1029,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:28.000] response: +Info 57 [00:02:26.000] response: { "responseRequired": false } -Info 60 [00:02:29.000] request: +Info 58 [00:02:27.000] request: { "seq": 0, "type": "request", @@ -1078,22 +1076,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 62 [00:02:31.000] Search path: /user/username/projects/myproject/random -Info 63 [00:02:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 64 [00:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 64 [00:02:34.000] Files (3) +Info 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 +Info 62 [00:02:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:32.000] Files (3) -Info 64 [00:02:35.000] ----------------------------------------------- -Info 64 [00:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:37.000] Files (2) +Info 62 [00:02:33.000] ----------------------------------------------- +Info 62 [00:02:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:35.000] Files (2) -Info 64 [00:02:38.000] ----------------------------------------------- -Info 64 [00:02:39.000] Open files: -Info 64 [00:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 64 [00:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 64 [00:02:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [00:02:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:36.000] ----------------------------------------------- +Info 62 [00:02:37.000] Open files: +Info 62 [00:02:38.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:39.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1126,11 +1124,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:44.000] response: +Info 62 [00:02:42.000] response: { "responseRequired": false } -Info 65 [00:02:45.000] request: +Info 63 [00:02:43.000] request: { "seq": 0, "type": "request", @@ -1171,18 +1169,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 67 [00:02:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 67 [00:02:48.000] Files (3) +Info 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) -Info 67 [00:02:49.000] ----------------------------------------------- -Info 67 [00:02:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 67 [00:02:51.000] Files (2) +Info 65 [00:02:47.000] ----------------------------------------------- +Info 65 [00:02:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:49.000] Files (2) -Info 67 [00:02:52.000] ----------------------------------------------- -Info 67 [00:02:53.000] Open files: -Info 67 [00:02:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 67 [00:02:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 65 [00:02:50.000] ----------------------------------------------- +Info 65 [00:02:51.000] Open files: +Info 65 [00:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1217,11 +1215,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:56.000] response: +Info 65 [00:02:54.000] response: { "responseRequired": false } -Info 68 [00:02:57.000] request: +Info 66 [00:02:55.000] request: { "seq": 0, "type": "request", @@ -1264,16 +1262,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:02:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 70 [00:02:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 70 [00:03:00.000] Files (3) +Info 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) -Info 70 [00:03:01.000] ----------------------------------------------- -Info 70 [00:03:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 70 [00:03:03.000] Files (2) +Info 68 [00:02:59.000] ----------------------------------------------- +Info 68 [00:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 68 [00:03:01.000] Files (2) -Info 70 [00:03:04.000] ----------------------------------------------- -Info 70 [00:03:05.000] Open files: +Info 68 [00:03:02.000] ----------------------------------------------- +Info 68 [00:03:03.000] Open files: After request PolledWatches:: @@ -1310,11 +1308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:03:06.000] response: +Info 68 [00:03:04.000] response: { "responseRequired": false } -Info 71 [00:03:07.000] request: +Info 69 [00:03:05.000] request: { "seq": 0, "type": "request", @@ -1359,12 +1357,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 73 [00:03:09.000] Search path: /user/username/projects/myproject/random -Info 74 [00:03:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 75 [00:03:11.000] `remove Project:: -Info 76 [00:03:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 77 [00:03:13.000] Files (3) +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 +Info 73 [00:03:09.000] `remove Project:: +Info 74 [00:03:10.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 75 [00:03:11.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -1377,27 +1375,27 @@ Info 77 [00:03:13.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 78 [00:03:14.000] ----------------------------------------------- -Info 79 [00:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 80 [00:03:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 81 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 82 [00:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 83 [00:03:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 84 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 85 [00:03:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 86 [00:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 87 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 88 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 89 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 90 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 91 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 92 [00:03:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 92 [00:03:29.000] Files (2) - -Info 92 [00:03:30.000] ----------------------------------------------- -Info 92 [00:03:31.000] Open files: -Info 92 [00:03:32.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 92 [00:03:33.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 76 [00:03:12.000] ----------------------------------------------- +Info 77 [00:03:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 78 [00:03:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 79 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 80 [00:03:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 81 [00:03:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 82 [00:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 83 [00:03:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 84 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 85 [00:03:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 86 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 87 [00:03:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 88 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 89 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 90 [00:03:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 90 [00:03:27.000] Files (2) + +Info 90 [00:03:28.000] ----------------------------------------------- +Info 90 [00:03:29.000] Open files: +Info 90 [00:03:30.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 90 [00:03:31.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1416,7 +1414,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 92 [00:03:34.000] response: +Info 90 [00:03:32.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-changes-with-timeout-before-request.js index 2798959f46a57..89e2b55935f38 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 @@ -216,19 +216,18 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:24.000] Files (3) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:23.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +240,16 @@ Info 21 [00:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:25.000] ----------------------------------------------- -Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 21 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) -Info 25 [00:01:30.000] ----------------------------------------------- -Info 25 [00:01:31.000] Open files: -Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:29.000] ----------------------------------------------- +Info 24 [00:01:30.000] Open files: +Info 24 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +272,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:34.000] response: +Info 24 [00:01:33.000] response: { "responseRequired": false } -Info 26 [00:01:35.000] request: +Info 25 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -308,11 +307,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/random -Info 28 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 29 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 30 [00:01:39.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -320,17 +319,16 @@ Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -340,20 +338,20 @@ Info 42 [00:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [00:01:54.000] Files (3) +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 42 [00:01:52.000] Files (3) -Info 44 [00:01:55.000] ----------------------------------------------- -Info 44 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [00:01:57.000] Files (2) +Info 42 [00:01:53.000] ----------------------------------------------- +Info 42 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:55.000] Files (2) -Info 44 [00:01:58.000] ----------------------------------------------- -Info 44 [00:01:59.000] Open files: -Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 42 [00:01:56.000] ----------------------------------------------- +Info 42 [00:01:57.000] Open files: +Info 42 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 42 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 42 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 42 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -382,11 +380,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [00:02:04.000] response: +Info 42 [00:02:02.000] response: { "responseRequired": false } -Info 45 [00:02:05.000] request: +Info 43 [00:02:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -425,8 +423,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -459,7 +457,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:08.000] response: +Info 46 [00:02:06.000] response: { "response": { "definitions": [ @@ -496,10 +494,10 @@ Info 48 [00:02:08.000] response: }, "responseRequired": true } -Info 49 [00:02:12.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 50 [00:02:13.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 51 [00:02:14.000] Scheduled: *ensureProjectForOpenFiles* -Info 52 [00:02:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 47 [00:02:10.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 48 [00:02:11.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 49 [00:02:12.000] Scheduled: *ensureProjectForOpenFiles* +Info 50 [00:02:13.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts] export declare function fn1(): void; @@ -541,39 +539,39 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [00:02:16.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 54 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 55 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [00:02:19.000] Different program with same set of files -Info 57 [00:02:20.000] Running: *ensureProjectForOpenFiles* -Info 58 [00:02:21.000] Before ensureProjectForOpenFiles: -Info 59 [00:02:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 59 [00:02:23.000] Files (3) - -Info 59 [00:02:24.000] ----------------------------------------------- -Info 59 [00:02:25.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 59 [00:02:26.000] Files (2) - -Info 59 [00:02:27.000] ----------------------------------------------- -Info 59 [00:02:28.000] Open files: -Info 59 [00:02:29.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 59 [00:02:30.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 59 [00:02:31.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 59 [00:02:32.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 59 [00:02:33.000] After ensureProjectForOpenFiles: -Info 60 [00:02:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 60 [00:02:35.000] Files (3) - -Info 60 [00:02:36.000] ----------------------------------------------- -Info 60 [00:02:37.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 60 [00:02:38.000] Files (2) - -Info 60 [00:02:39.000] ----------------------------------------------- -Info 60 [00:02:40.000] Open files: -Info 60 [00:02:41.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 60 [00:02:42.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 60 [00:02:43.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 60 [00:02:44.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 54 [00:02:17.000] Different program with same set of files +Info 55 [00:02:18.000] Running: *ensureProjectForOpenFiles* +Info 56 [00:02:19.000] Before ensureProjectForOpenFiles: +Info 57 [00:02:20.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 57 [00:02:21.000] Files (3) + +Info 57 [00:02:22.000] ----------------------------------------------- +Info 57 [00:02:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 57 [00:02:24.000] Files (2) + +Info 57 [00:02:25.000] ----------------------------------------------- +Info 57 [00:02:26.000] Open files: +Info 57 [00:02:27.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 57 [00:02:28.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 57 [00:02:29.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 57 [00:02:30.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 57 [00:02:31.000] After ensureProjectForOpenFiles: +Info 58 [00:02:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 58 [00:02:33.000] Files (3) + +Info 58 [00:02:34.000] ----------------------------------------------- +Info 58 [00:02:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 58 [00:02:36.000] Files (2) + +Info 58 [00:02:37.000] ----------------------------------------------- +Info 58 [00:02:38.000] Open files: +Info 58 [00:02:39.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 58 [00:02:40.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 58 [00:02:41.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 58 [00:02:42.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -606,7 +604,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:45.000] request: +Info 58 [00:02:43.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -681,7 +679,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:46.000] response: +Info 59 [00:02:44.000] response: { "response": { "definitions": [ @@ -718,7 +716,7 @@ Info 61 [00:02:46.000] response: }, "responseRequired": true } -Info 62 [00:02:47.000] request: +Info 60 [00:02:45.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -793,7 +791,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:48.000] response: +Info 61 [00:02:46.000] response: { "response": { "definitions": [ @@ -830,7 +828,7 @@ Info 63 [00:02:48.000] response: }, "responseRequired": true } -Info 64 [00:02:49.000] request: +Info 62 [00:02:47.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -905,7 +903,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:50.000] response: +Info 63 [00:02:48.000] response: { "response": { "definitions": [ @@ -942,7 +940,7 @@ Info 65 [00:02:50.000] response: }, "responseRequired": true } -Info 66 [00:02:51.000] request: +Info 64 [00:02:49.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1017,7 +1015,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:52.000] response: +Info 65 [00:02:50.000] response: { "response": { "definitions": [ @@ -1054,7 +1052,7 @@ Info 67 [00:02:52.000] response: }, "responseRequired": true } -Info 68 [00:02:53.000] request: +Info 66 [00:02:51.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1129,7 +1127,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:02:54.000] response: +Info 67 [00:02:52.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-changes.js index 38ddef7d41ed5..2975b395fd5ac 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 @@ -216,19 +216,18 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:24.000] Files (3) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:23.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +240,16 @@ Info 21 [00:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:25.000] ----------------------------------------------- -Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 21 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) -Info 25 [00:01:30.000] ----------------------------------------------- -Info 25 [00:01:31.000] Open files: -Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:29.000] ----------------------------------------------- +Info 24 [00:01:30.000] Open files: +Info 24 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +272,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:34.000] response: +Info 24 [00:01:33.000] response: { "responseRequired": false } -Info 26 [00:01:35.000] request: +Info 25 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -308,11 +307,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/random -Info 28 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 29 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 30 [00:01:39.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -320,17 +319,16 @@ Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -340,20 +338,20 @@ Info 42 [00:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [00:01:54.000] Files (3) +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 42 [00:01:52.000] Files (3) -Info 44 [00:01:55.000] ----------------------------------------------- -Info 44 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [00:01:57.000] Files (2) +Info 42 [00:01:53.000] ----------------------------------------------- +Info 42 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:55.000] Files (2) -Info 44 [00:01:58.000] ----------------------------------------------- -Info 44 [00:01:59.000] Open files: -Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 42 [00:01:56.000] ----------------------------------------------- +Info 42 [00:01:57.000] Open files: +Info 42 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 42 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 42 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 42 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -382,11 +380,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [00:02:04.000] response: +Info 42 [00:02:02.000] response: { "responseRequired": false } -Info 45 [00:02:05.000] request: +Info 43 [00:02:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -425,8 +423,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -459,7 +457,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:08.000] response: +Info 46 [00:02:06.000] response: { "response": { "definitions": [ @@ -496,11 +494,11 @@ Info 48 [00:02:08.000] response: }, "responseRequired": true } -Info 49 [00:02:12.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 50 [00:02:13.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 51 [00:02:14.000] Scheduled: *ensureProjectForOpenFiles* -Info 52 [00:02:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 53 [00:02:16.000] request: +Info 47 [00:02:10.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 48 [00:02:11.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 49 [00:02:12.000] Scheduled: *ensureProjectForOpenFiles* +Info 50 [00:02:13.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 51 [00:02:14.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -552,9 +550,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 55 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [00:02:19.000] Different program with same set of files +Info 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:: @@ -587,7 +585,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:20.000] response: +Info 55 [00:02:18.000] response: { "response": { "definitions": [ @@ -624,7 +622,7 @@ Info 57 [00:02:20.000] response: }, "responseRequired": true } -Info 58 [00:02:21.000] request: +Info 56 [00:02:19.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -699,7 +697,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:22.000] response: +Info 57 [00:02:20.000] response: { "response": { "definitions": [ @@ -736,7 +734,7 @@ Info 59 [00:02:22.000] response: }, "responseRequired": true } -Info 60 [00:02:23.000] request: +Info 58 [00:02:21.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -811,7 +809,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:24.000] response: +Info 59 [00:02:22.000] response: { "response": { "definitions": [ @@ -848,7 +846,7 @@ Info 61 [00:02:24.000] response: }, "responseRequired": true } -Info 62 [00:02:25.000] request: +Info 60 [00:02:23.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -923,7 +921,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:26.000] response: +Info 61 [00:02:24.000] response: { "response": { "definitions": [ @@ -960,7 +958,7 @@ Info 63 [00:02:26.000] response: }, "responseRequired": true } -Info 64 [00:02:27.000] request: +Info 62 [00:02:25.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1035,7 +1033,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:28.000] response: +Info 63 [00:02:26.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-created.js index 86024cc2b6b7c..af1bd53629aa5 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 @@ -208,18 +208,17 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 20 [00:01:24.000] Files (2) +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 18 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 19 [00:01:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -229,16 +228,16 @@ Info 20 [00:01:24.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 21 [00:01:25.000] ----------------------------------------------- -Info 22 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 23 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 24 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 24 [00:01:29.000] Files (2) +Info 20 [00:01:24.000] ----------------------------------------------- +Info 21 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 22 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 23 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 23 [00:01:28.000] Files (2) -Info 24 [00:01:30.000] ----------------------------------------------- -Info 24 [00:01:31.000] Open files: -Info 24 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 24 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 23 [00:01:29.000] ----------------------------------------------- +Info 23 [00:01:30.000] Open files: +Info 23 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 23 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -259,11 +258,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 24 [00:01:34.000] response: +Info 23 [00:01:33.000] response: { "responseRequired": false } -Info 25 [00:01:35.000] request: +Info 24 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -292,11 +291,11 @@ FsWatchesRecursive:: /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 -Info 29 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 30 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 28 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 29 [00:01:39.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -304,17 +303,16 @@ Info 30 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 31 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 32 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 30 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -324,20 +322,20 @@ Info 41 [00:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 42 [00:01:52.000] ----------------------------------------------- -Info 43 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 43 [00:01:54.000] Files (2) +Info 40 [00:01:50.000] ----------------------------------------------- +Info 41 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 41 [00:01:52.000] Files (2) -Info 43 [00:01:55.000] ----------------------------------------------- -Info 43 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 43 [00:01:57.000] Files (2) +Info 41 [00:01:53.000] ----------------------------------------------- +Info 41 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:55.000] Files (2) -Info 43 [00:01:58.000] ----------------------------------------------- -Info 43 [00:01:59.000] Open files: -Info 43 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 43 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 43 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 43 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:56.000] ----------------------------------------------- +Info 41 [00:01:57.000] Open files: +Info 41 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 41 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 41 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -364,11 +362,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:04.000] response: +Info 41 [00:02:02.000] response: { "responseRequired": false } -Info 44 [00:02:05.000] request: +Info 42 [00:02:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -431,7 +429,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:06.000] response: +Info 43 [00:02:04.000] response: { "response": { "definitions": [ @@ -468,10 +466,10 @@ Info 45 [00:02:06.000] response: }, "responseRequired": true } -Info 46 [00:02:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 48 [00:02:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 49 [00:02:12.000] request: +Info 44 [00:02:07.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 45 [00:02:08.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 46 [00:02:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 47 [00:02:10.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -516,12 +514,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:13.000] Scheduled: *ensureProjectForOpenFiles* -Info 51 [00:02:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 52 [00:02:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 53 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 54 [00:02:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 55 [00:02:18.000] Files (3) +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 +Info 51 [00:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 52 [00:02:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 53 [00:02:16.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -534,9 +532,9 @@ Info 55 [00:02:18.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 56 [00:02:19.000] ----------------------------------------------- -Info 57 [00:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 58 [00:02:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 54 [00:02:17.000] ----------------------------------------------- +Info 55 [00:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 56 [00:02:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -569,7 +567,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:22.000] response: +Info 57 [00:02:20.000] response: { "response": { "definitions": [ @@ -606,7 +604,7 @@ Info 59 [00:02:22.000] response: }, "responseRequired": true } -Info 60 [00:02:23.000] request: +Info 58 [00:02:21.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -681,7 +679,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:24.000] response: +Info 59 [00:02:22.000] response: { "response": { "definitions": [ @@ -718,7 +716,7 @@ Info 61 [00:02:24.000] response: }, "responseRequired": true } -Info 62 [00:02:25.000] request: +Info 60 [00:02:23.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -793,7 +791,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:26.000] response: +Info 61 [00:02:24.000] response: { "response": { "definitions": [ @@ -830,7 +828,7 @@ Info 63 [00:02:26.000] response: }, "responseRequired": true } -Info 64 [00:02:27.000] request: +Info 62 [00:02:25.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -905,7 +903,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:28.000] response: +Info 63 [00:02:26.000] response: { "response": { "definitions": [ @@ -942,7 +940,7 @@ Info 65 [00:02:28.000] response: }, "responseRequired": true } -Info 66 [00:02:29.000] request: +Info 64 [00:02:27.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1017,7 +1015,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:30.000] response: +Info 65 [00:02:28.000] response: { "response": { "definitions": [ @@ -1054,7 +1052,7 @@ Info 67 [00:02:30.000] response: }, "responseRequired": true } -Info 68 [00:02:31.000] request: +Info 66 [00:02:29.000] request: { "seq": 0, "type": "request", @@ -1095,18 +1093,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:02:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 70 [00:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 70 [00:02:34.000] Files (3) +Info 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) -Info 70 [00:02:35.000] ----------------------------------------------- -Info 70 [00:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 70 [00:02:37.000] Files (2) +Info 68 [00:02:33.000] ----------------------------------------------- +Info 68 [00:02:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 68 [00:02:35.000] Files (2) -Info 70 [00:02:38.000] ----------------------------------------------- -Info 70 [00:02:39.000] Open files: -Info 70 [00:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 70 [00:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 68 [00:02:36.000] ----------------------------------------------- +Info 68 [00:02:37.000] Open files: +Info 68 [00:02:38.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 68 [00:02:39.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1141,11 +1139,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:42.000] response: +Info 68 [00:02:40.000] response: { "responseRequired": false } -Info 71 [00:02:43.000] request: +Info 69 [00:02:41.000] request: { "seq": 0, "type": "request", @@ -1188,22 +1186,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:44.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 73 [00:02:45.000] Search path: /user/username/projects/myproject/random -Info 74 [00:02:46.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 75 [00:02:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 75 [00:02:48.000] Files (3) +Info 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 +Info 73 [00:02:45.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 73 [00:02:46.000] Files (3) -Info 75 [00:02:49.000] ----------------------------------------------- -Info 75 [00:02:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 75 [00:02:51.000] Files (2) +Info 73 [00:02:47.000] ----------------------------------------------- +Info 73 [00:02:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 73 [00:02:49.000] Files (2) -Info 75 [00:02:52.000] ----------------------------------------------- -Info 75 [00:02:53.000] Open files: -Info 75 [00:02:54.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 75 [00:02:55.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 75 [00:02:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 75 [00:02:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 73 [00:02:50.000] ----------------------------------------------- +Info 73 [00:02:51.000] Open files: +Info 73 [00:02:52.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 73 [00:02:53.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 73 [00:02:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 73 [00:02:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1236,11 +1234,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 75 [00:02:58.000] response: +Info 73 [00:02:56.000] response: { "responseRequired": false } -Info 76 [00:02:59.000] request: +Info 74 [00:02:57.000] request: { "seq": 0, "type": "request", @@ -1281,18 +1279,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:03:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 78 [00:03:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 78 [00:03:02.000] Files (3) +Info 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) -Info 78 [00:03:03.000] ----------------------------------------------- -Info 78 [00:03:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 78 [00:03:05.000] Files (2) +Info 76 [00:03:01.000] ----------------------------------------------- +Info 76 [00:03:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 76 [00:03:03.000] Files (2) -Info 78 [00:03:06.000] ----------------------------------------------- -Info 78 [00:03:07.000] Open files: -Info 78 [00:03:08.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 78 [00:03:09.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 76 [00:03:04.000] ----------------------------------------------- +Info 76 [00:03:05.000] Open files: +Info 76 [00:03:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 76 [00:03:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1327,11 +1325,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [00:03:10.000] response: +Info 76 [00:03:08.000] response: { "responseRequired": false } -Info 79 [00:03:11.000] request: +Info 77 [00:03:09.000] request: { "seq": 0, "type": "request", @@ -1374,16 +1372,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:03:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 81 [00:03:13.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 81 [00:03:14.000] Files (3) +Info 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) -Info 81 [00:03:15.000] ----------------------------------------------- -Info 81 [00:03:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 81 [00:03:17.000] Files (2) +Info 79 [00:03:13.000] ----------------------------------------------- +Info 79 [00:03:14.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 79 [00:03:15.000] Files (2) -Info 81 [00:03:18.000] ----------------------------------------------- -Info 81 [00:03:19.000] Open files: +Info 79 [00:03:16.000] ----------------------------------------------- +Info 79 [00:03:17.000] Open files: After request PolledWatches:: @@ -1420,11 +1418,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [00:03:20.000] response: +Info 79 [00:03:18.000] response: { "responseRequired": false } -Info 82 [00:03:21.000] request: +Info 80 [00:03:19.000] request: { "seq": 0, "type": "request", @@ -1469,12 +1467,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 84 [00:03:23.000] Search path: /user/username/projects/myproject/random -Info 85 [00:03:24.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 86 [00:03:25.000] `remove Project:: -Info 87 [00:03:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 88 [00:03:27.000] Files (3) +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 +Info 84 [00:03:23.000] `remove Project:: +Info 85 [00:03:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 86 [00:03:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -1487,27 +1485,27 @@ Info 88 [00:03:27.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 89 [00:03:28.000] ----------------------------------------------- -Info 90 [00:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 91 [00:03:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 92 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 93 [00:03:32.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 94 [00:03:33.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 95 [00:03:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 96 [00:03:35.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 97 [00:03:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 98 [00:03:37.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 99 [00:03:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 100 [00:03:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 101 [00:03:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 102 [00:03:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 103 [00:03:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 103 [00:03:43.000] Files (2) - -Info 103 [00:03:44.000] ----------------------------------------------- -Info 103 [00:03:45.000] Open files: -Info 103 [00:03:46.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 103 [00:03:47.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 87 [00:03:26.000] ----------------------------------------------- +Info 88 [00:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 89 [00:03:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 90 [00:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 91 [00:03:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 92 [00:03:31.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 93 [00:03:32.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 94 [00:03:33.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 95 [00:03:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 96 [00:03:35.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 97 [00:03:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 98 [00:03:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 99 [00:03:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 100 [00:03:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 101 [00:03:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 101 [00:03:41.000] Files (2) + +Info 101 [00:03:42.000] ----------------------------------------------- +Info 101 [00:03:43.000] Open files: +Info 101 [00:03:44.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 101 [00:03:45.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1526,7 +1524,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 103 [00:03:48.000] response: +Info 101 [00:03:46.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-deleted.js index f8b58b612948c..c988111714433 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 @@ -216,19 +216,18 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:24.000] Files (3) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:23.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +240,16 @@ Info 21 [00:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:25.000] ----------------------------------------------- -Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 21 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) -Info 25 [00:01:30.000] ----------------------------------------------- -Info 25 [00:01:31.000] Open files: -Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:29.000] ----------------------------------------------- +Info 24 [00:01:30.000] Open files: +Info 24 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +272,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:34.000] response: +Info 24 [00:01:33.000] response: { "responseRequired": false } -Info 26 [00:01:35.000] request: +Info 25 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -308,11 +307,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/random -Info 28 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 29 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 30 [00:01:39.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -320,17 +319,16 @@ Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -340,20 +338,20 @@ Info 42 [00:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [00:01:54.000] Files (3) +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 42 [00:01:52.000] Files (3) -Info 44 [00:01:55.000] ----------------------------------------------- -Info 44 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [00:01:57.000] Files (2) +Info 42 [00:01:53.000] ----------------------------------------------- +Info 42 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:55.000] Files (2) -Info 44 [00:01:58.000] ----------------------------------------------- -Info 44 [00:01:59.000] Open files: -Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 42 [00:01:56.000] ----------------------------------------------- +Info 42 [00:01:57.000] Open files: +Info 42 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 42 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 42 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 42 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -382,11 +380,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [00:02:04.000] response: +Info 42 [00:02:02.000] response: { "responseRequired": false } -Info 45 [00:02:05.000] request: +Info 43 [00:02:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -425,8 +423,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -459,7 +457,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:08.000] response: +Info 46 [00:02:06.000] response: { "response": { "definitions": [ @@ -496,15 +494,15 @@ Info 48 [00:02:08.000] response: }, "responseRequired": true } -Info 49 [00:02:10.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 50 [00:02:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 51 [00:02:12.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 52 [00:02:13.000] Scheduled: *ensureProjectForOpenFiles* -Info 53 [00:02:14.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 54 [00:02:15.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 55 [00:02:16.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 56 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 57 [00:02:18.000] request: +Info 47 [00:02:08.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 48 [00:02:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 49 [00:02:10.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 50 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 51 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 52 [00:02:13.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 53 [00:02:14.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 54 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 55 [00:02:16.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -546,10 +544,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 59 [00:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 60 [00:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 61 [00:02:22.000] Files (2) +Info 56 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 57 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 58 [00:02:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 59 [00:02:20.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -559,7 +557,7 @@ Info 61 [00:02:22.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 62 [00:02:23.000] ----------------------------------------------- +Info 60 [00:02:21.000] ----------------------------------------------- After request PolledWatches:: @@ -590,7 +588,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:24.000] response: +Info 61 [00:02:22.000] response: { "response": { "definitions": [ @@ -627,7 +625,7 @@ Info 63 [00:02:24.000] response: }, "responseRequired": true } -Info 64 [00:02:25.000] request: +Info 62 [00:02:23.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -698,7 +696,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:26.000] response: +Info 63 [00:02:24.000] response: { "response": { "definitions": [ @@ -735,7 +733,7 @@ Info 65 [00:02:26.000] response: }, "responseRequired": true } -Info 66 [00:02:27.000] request: +Info 64 [00:02:25.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -806,7 +804,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:28.000] response: +Info 65 [00:02:26.000] response: { "response": { "definitions": [ @@ -843,7 +841,7 @@ Info 67 [00:02:28.000] response: }, "responseRequired": true } -Info 68 [00:02:29.000] request: +Info 66 [00:02:27.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -914,7 +912,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:02:30.000] response: +Info 67 [00:02:28.000] response: { "response": { "definitions": [ @@ -951,7 +949,7 @@ Info 69 [00:02:30.000] response: }, "responseRequired": true } -Info 70 [00:02:31.000] request: +Info 68 [00:02:29.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1022,7 +1020,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [00:02:32.000] response: +Info 69 [00:02:30.000] response: { "response": { "definitions": [ @@ -1059,7 +1057,7 @@ Info 71 [00:02:32.000] response: }, "responseRequired": true } -Info 72 [00:02:33.000] request: +Info 70 [00:02:31.000] request: { "seq": 0, "type": "request", @@ -1098,18 +1096,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [00:02:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 74 [00:02:35.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 74 [00:02:36.000] Files (2) +Info 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) -Info 74 [00:02:37.000] ----------------------------------------------- -Info 74 [00:02:38.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [00:02:39.000] Files (2) +Info 72 [00:02:35.000] ----------------------------------------------- +Info 72 [00:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 72 [00:02:37.000] Files (2) -Info 74 [00:02:40.000] ----------------------------------------------- -Info 74 [00:02:41.000] Open files: -Info 74 [00:02:42.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 74 [00:02:43.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 72 [00:02:38.000] ----------------------------------------------- +Info 72 [00:02:39.000] Open files: +Info 72 [00:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 72 [00:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1142,11 +1140,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:44.000] response: +Info 72 [00:02:42.000] response: { "responseRequired": false } -Info 75 [00:02:45.000] request: +Info 73 [00:02:43.000] request: { "seq": 0, "type": "request", @@ -1187,24 +1185,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 77 [00:02:47.000] Search path: /user/username/projects/myproject/random -Info 78 [00:02:48.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 79 [00:02:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 80 [00:02:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 81 [00:02:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 81 [00:02:52.000] Files (2) - -Info 81 [00:02:53.000] ----------------------------------------------- -Info 81 [00:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 81 [00:02:55.000] Files (2) - -Info 81 [00:02:56.000] ----------------------------------------------- -Info 81 [00:02:57.000] Open files: -Info 81 [00:02:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 81 [00:02:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 81 [00:03:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 81 [00:03:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 77 [00:02:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 78 [00:02:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 79 [00:02:49.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 79 [00:02:50.000] Files (2) + +Info 79 [00:02:51.000] ----------------------------------------------- +Info 79 [00:02:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 79 [00:02:53.000] Files (2) + +Info 79 [00:02:54.000] ----------------------------------------------- +Info 79 [00:02:55.000] Open files: +Info 79 [00:02:56.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 79 [00:02:57.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 79 [00:02:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 79 [00:02:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1231,11 +1229,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [00:03:02.000] response: +Info 79 [00:03:00.000] response: { "responseRequired": false } -Info 82 [00:03:03.000] request: +Info 80 [00:03:01.000] request: { "seq": 0, "type": "request", @@ -1270,18 +1268,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [00:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 84 [00:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 84 [00:03:06.000] Files (2) +Info 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) -Info 84 [00:03:07.000] ----------------------------------------------- -Info 84 [00:03:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 84 [00:03:09.000] Files (2) +Info 82 [00:03:05.000] ----------------------------------------------- +Info 82 [00:03:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 82 [00:03:07.000] Files (2) -Info 84 [00:03:10.000] ----------------------------------------------- -Info 84 [00:03:11.000] Open files: -Info 84 [00:03:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 84 [00:03:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 82 [00:03:08.000] ----------------------------------------------- +Info 82 [00:03:09.000] Open files: +Info 82 [00:03:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 82 [00:03:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1310,11 +1308,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:03:14.000] response: +Info 82 [00:03:12.000] response: { "responseRequired": false } -Info 85 [00:03:15.000] request: +Info 83 [00:03:13.000] request: { "seq": 0, "type": "request", @@ -1351,16 +1349,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 87 [00:03:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 87 [00:03:18.000] Files (2) +Info 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) -Info 87 [00:03:19.000] ----------------------------------------------- -Info 87 [00:03:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 87 [00:03:21.000] Files (2) +Info 85 [00:03:17.000] ----------------------------------------------- +Info 85 [00:03:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 85 [00:03:19.000] Files (2) -Info 87 [00:03:22.000] ----------------------------------------------- -Info 87 [00:03:23.000] Open files: +Info 85 [00:03:20.000] ----------------------------------------------- +Info 85 [00:03:21.000] Open files: After request PolledWatches:: @@ -1391,11 +1389,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [00:03:24.000] response: +Info 85 [00:03:22.000] response: { "responseRequired": false } -Info 88 [00:03:25.000] request: +Info 86 [00:03:23.000] request: { "seq": 0, "type": "request", @@ -1434,12 +1432,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 90 [00:03:27.000] Search path: /user/username/projects/myproject/random -Info 91 [00:03:28.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 92 [00:03:29.000] `remove Project:: -Info 93 [00:03:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 94 [00:03:31.000] Files (2) +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 +Info 90 [00:03:27.000] `remove Project:: +Info 91 [00:03:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 92 [00:03:29.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -1449,24 +1447,24 @@ Info 94 [00:03:31.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 95 [00:03:32.000] ----------------------------------------------- -Info 96 [00:03:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 97 [00:03:34.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 98 [00:03:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 99 [00:03:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 100 [00:03:37.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 101 [00:03:38.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 102 [00:03:39.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 103 [00:03:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 104 [00:03:41.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 105 [00:03:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 106 [00:03:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 106 [00:03:44.000] Files (2) - -Info 106 [00:03:45.000] ----------------------------------------------- -Info 106 [00:03:46.000] Open files: -Info 106 [00:03:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 106 [00:03:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 93 [00:03:30.000] ----------------------------------------------- +Info 94 [00:03:31.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 95 [00:03:32.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 96 [00:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 97 [00:03:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 98 [00:03:35.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 99 [00:03:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 100 [00:03:37.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 101 [00:03:38.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 102 [00:03:39.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 103 [00:03:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 104 [00:03:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 104 [00:03:42.000] Files (2) + +Info 104 [00:03:43.000] ----------------------------------------------- +Info 104 [00:03:44.000] Open files: +Info 104 [00:03:45.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 104 [00:03:46.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1485,7 +1483,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 106 [00:03:49.000] response: +Info 104 [00:03:47.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dts-not-present.js index b08f6c59b03c3..e797ff8409515 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 @@ -208,18 +208,17 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 20 [00:01:24.000] Files (2) +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 18 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 19 [00:01:23.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -229,16 +228,16 @@ Info 20 [00:01:24.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 21 [00:01:25.000] ----------------------------------------------- -Info 22 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 23 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 24 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 24 [00:01:29.000] Files (2) +Info 20 [00:01:24.000] ----------------------------------------------- +Info 21 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 22 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 23 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 23 [00:01:28.000] Files (2) -Info 24 [00:01:30.000] ----------------------------------------------- -Info 24 [00:01:31.000] Open files: -Info 24 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 24 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 23 [00:01:29.000] ----------------------------------------------- +Info 23 [00:01:30.000] Open files: +Info 23 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 23 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -259,11 +258,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 24 [00:01:34.000] response: +Info 23 [00:01:33.000] response: { "responseRequired": false } -Info 25 [00:01:35.000] request: +Info 24 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -292,11 +291,11 @@ FsWatchesRecursive:: /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 -Info 29 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 30 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 28 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 29 [00:01:39.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -304,17 +303,16 @@ Info 30 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 31 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 32 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 34 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 40 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 41 [00:01:51.000] Files (2) +Info 30 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 34 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 38 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 39 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -324,20 +322,20 @@ Info 41 [00:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 42 [00:01:52.000] ----------------------------------------------- -Info 43 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 43 [00:01:54.000] Files (2) +Info 40 [00:01:50.000] ----------------------------------------------- +Info 41 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 41 [00:01:52.000] Files (2) -Info 43 [00:01:55.000] ----------------------------------------------- -Info 43 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 43 [00:01:57.000] Files (2) +Info 41 [00:01:53.000] ----------------------------------------------- +Info 41 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 41 [00:01:55.000] Files (2) -Info 43 [00:01:58.000] ----------------------------------------------- -Info 43 [00:01:59.000] Open files: -Info 43 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 43 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 43 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 43 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 41 [00:01:56.000] ----------------------------------------------- +Info 41 [00:01:57.000] Open files: +Info 41 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 41 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 41 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 41 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -364,11 +362,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 43 [00:02:04.000] response: +Info 41 [00:02:02.000] response: { "responseRequired": false } -Info 44 [00:02:05.000] request: +Info 42 [00:02:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -431,7 +429,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 45 [00:02:06.000] response: +Info 43 [00:02:04.000] response: { "response": { "definitions": [ @@ -468,7 +466,7 @@ Info 45 [00:02:06.000] response: }, "responseRequired": true } -Info 46 [00:02:07.000] request: +Info 44 [00:02:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -531,7 +529,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [00:02:08.000] response: +Info 45 [00:02:06.000] response: { "response": { "definitions": [ @@ -568,7 +566,7 @@ Info 47 [00:02:08.000] response: }, "responseRequired": true } -Info 48 [00:02:09.000] request: +Info 46 [00:02:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -631,7 +629,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [00:02:10.000] response: +Info 47 [00:02:08.000] response: { "response": { "definitions": [ @@ -668,7 +666,7 @@ Info 49 [00:02:10.000] response: }, "responseRequired": true } -Info 50 [00:02:11.000] request: +Info 48 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -731,7 +729,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [00:02:12.000] response: +Info 49 [00:02:10.000] response: { "response": { "definitions": [ @@ -768,7 +766,7 @@ Info 51 [00:02:12.000] response: }, "responseRequired": true } -Info 52 [00:02:13.000] request: +Info 50 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -831,7 +829,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [00:02:14.000] response: +Info 51 [00:02:12.000] response: { "response": { "definitions": [ @@ -868,7 +866,7 @@ Info 53 [00:02:14.000] response: }, "responseRequired": true } -Info 54 [00:02:15.000] request: +Info 52 [00:02:13.000] request: { "seq": 0, "type": "request", @@ -903,18 +901,18 @@ FsWatchesRecursive:: /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 (2) +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) -Info 56 [00:02:19.000] ----------------------------------------------- -Info 56 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 56 [00:02:21.000] Files (2) +Info 54 [00:02:17.000] ----------------------------------------------- +Info 54 [00:02:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 54 [00:02:19.000] Files (2) -Info 56 [00:02:22.000] ----------------------------------------------- -Info 56 [00:02:23.000] Open files: -Info 56 [00:02:24.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 56 [00:02:25.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 54 [00:02:20.000] ----------------------------------------------- +Info 54 [00:02:21.000] Open files: +Info 54 [00:02:22.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 54 [00:02:23.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -943,11 +941,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:26.000] response: +Info 54 [00:02:24.000] response: { "responseRequired": false } -Info 57 [00:02:27.000] request: +Info 55 [00:02:25.000] request: { "seq": 0, "type": "request", @@ -984,22 +982,22 @@ FsWatchesRecursive:: /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 -Info 61 [00:02:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 61 [00:02:32.000] Files (2) +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 +Info 59 [00:02:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 59 [00:02:30.000] Files (2) -Info 61 [00:02:33.000] ----------------------------------------------- -Info 61 [00:02:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [00:02:35.000] Files (2) +Info 59 [00:02:31.000] ----------------------------------------------- +Info 59 [00:02:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 59 [00:02:33.000] Files (2) -Info 61 [00:02:36.000] ----------------------------------------------- -Info 61 [00:02:37.000] Open files: -Info 61 [00:02:38.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 61 [00:02:39.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 61 [00:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 61 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 59 [00:02:34.000] ----------------------------------------------- +Info 59 [00:02:35.000] Open files: +Info 59 [00:02:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 59 [00:02:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 59 [00:02:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 59 [00:02:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1026,11 +1024,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:42.000] response: +Info 59 [00:02:40.000] response: { "responseRequired": false } -Info 62 [00:02:43.000] request: +Info 60 [00:02:41.000] request: { "seq": 0, "type": "request", @@ -1065,18 +1063,18 @@ FsWatchesRecursive:: /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 (2) +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) -Info 64 [00:02:47.000] ----------------------------------------------- -Info 64 [00:02:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:49.000] Files (2) +Info 62 [00:02:45.000] ----------------------------------------------- +Info 62 [00:02:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:47.000] Files (2) -Info 64 [00:02:50.000] ----------------------------------------------- -Info 64 [00:02:51.000] Open files: -Info 64 [00:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [00:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 62 [00:02:48.000] ----------------------------------------------- +Info 62 [00:02:49.000] Open files: +Info 62 [00:02:50.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:51.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1105,11 +1103,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:54.000] response: +Info 62 [00:02:52.000] response: { "responseRequired": false } -Info 65 [00:02:55.000] request: +Info 63 [00:02:53.000] request: { "seq": 0, "type": "request", @@ -1146,16 +1144,16 @@ FsWatchesRecursive:: /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 (2) +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) -Info 67 [00:02:59.000] ----------------------------------------------- -Info 67 [00:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 67 [00:03:01.000] Files (2) +Info 65 [00:02:57.000] ----------------------------------------------- +Info 65 [00:02:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:59.000] Files (2) -Info 67 [00:03:02.000] ----------------------------------------------- -Info 67 [00:03:03.000] Open files: +Info 65 [00:03:00.000] ----------------------------------------------- +Info 65 [00:03:01.000] Open files: After request PolledWatches:: @@ -1186,11 +1184,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:03:04.000] response: +Info 65 [00:03:02.000] response: { "responseRequired": false } -Info 68 [00:03:05.000] request: +Info 66 [00:03:03.000] request: { "seq": 0, "type": "request", @@ -1229,12 +1227,12 @@ FsWatchesRecursive:: /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 -Info 72 [00:03:09.000] `remove Project:: -Info 73 [00:03:10.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 74 [00:03:11.000] Files (2) +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 +Info 70 [00:03:07.000] `remove Project:: +Info 71 [00:03:08.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 72 [00:03:09.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -1244,24 +1242,24 @@ Info 74 [00:03:11.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 75 [00:03:12.000] ----------------------------------------------- -Info 76 [00:03:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 77 [00:03:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 78 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 79 [00:03:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 80 [00:03:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [00:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 82 [00:03:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 83 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 84 [00:03:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 85 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 86 [00:03:23.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 86 [00:03:24.000] Files (2) - -Info 86 [00:03:25.000] ----------------------------------------------- -Info 86 [00:03:26.000] Open files: -Info 86 [00:03:27.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 86 [00:03:28.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 73 [00:03:10.000] ----------------------------------------------- +Info 74 [00:03:11.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 75 [00:03:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 76 [00:03:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 77 [00:03:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 78 [00:03:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 79 [00:03:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 80 [00:03:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 81 [00:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 82 [00:03:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 83 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 84 [00:03:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 84 [00:03:22.000] Files (2) + +Info 84 [00:03:23.000] ----------------------------------------------- +Info 84 [00:03:24.000] Open files: +Info 84 [00:03:25.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 84 [00:03:26.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1280,7 +1278,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:29.000] response: +Info 84 [00:03:27.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/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 9677f9def45db..68db9d3d90be5 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 @@ -216,19 +216,18 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:24.000] Files (3) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:23.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +240,16 @@ Info 21 [00:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:25.000] ----------------------------------------------- -Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 21 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) -Info 25 [00:01:30.000] ----------------------------------------------- -Info 25 [00:01:31.000] Open files: -Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:29.000] ----------------------------------------------- +Info 24 [00:01:30.000] Open files: +Info 24 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +272,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:34.000] response: +Info 24 [00:01:33.000] response: { "responseRequired": false } -Info 26 [00:01:35.000] request: +Info 25 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -308,11 +307,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/random -Info 28 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 29 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 30 [00:01:39.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -320,17 +319,16 @@ Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -340,20 +338,20 @@ Info 42 [00:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [00:01:54.000] Files (3) +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 42 [00:01:52.000] Files (3) -Info 44 [00:01:55.000] ----------------------------------------------- -Info 44 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [00:01:57.000] Files (2) +Info 42 [00:01:53.000] ----------------------------------------------- +Info 42 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:55.000] Files (2) -Info 44 [00:01:58.000] ----------------------------------------------- -Info 44 [00:01:59.000] Open files: -Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 42 [00:01:56.000] ----------------------------------------------- +Info 42 [00:01:57.000] Open files: +Info 42 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 42 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 42 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 42 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -382,11 +380,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [00:02:04.000] response: +Info 42 [00:02:02.000] response: { "responseRequired": false } -Info 45 [00:02:05.000] request: +Info 43 [00:02:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -425,8 +423,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -459,7 +457,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:08.000] response: +Info 46 [00:02:06.000] response: { "response": { "definitions": [ @@ -496,10 +494,10 @@ Info 48 [00:02:08.000] response: }, "responseRequired": true } -Info 49 [00:02:12.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 50 [00:02:13.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 51 [00:02:14.000] Scheduled: *ensureProjectForOpenFiles* -Info 52 [00:02:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 47 [00:02:10.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 48 [00:02:11.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 49 [00:02:12.000] Scheduled: *ensureProjectForOpenFiles* +Info 50 [00:02:13.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts.map] {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} @@ -535,38 +533,38 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [00:02:16.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 54 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 55 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 56 [00:02:19.000] Running: *ensureProjectForOpenFiles* -Info 57 [00:02:20.000] Before ensureProjectForOpenFiles: -Info 58 [00:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 58 [00:02:22.000] Files (3) - -Info 58 [00:02:23.000] ----------------------------------------------- -Info 58 [00:02:24.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 58 [00:02:25.000] Files (2) - -Info 58 [00:02:26.000] ----------------------------------------------- -Info 58 [00:02:27.000] Open files: -Info 58 [00:02:28.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 58 [00:02:29.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 58 [00:02:30.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 58 [00:02:31.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 58 [00:02:32.000] After ensureProjectForOpenFiles: -Info 59 [00:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 59 [00:02:34.000] Files (3) - -Info 59 [00:02:35.000] ----------------------------------------------- -Info 59 [00:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 59 [00:02:37.000] Files (2) - -Info 59 [00:02:38.000] ----------------------------------------------- -Info 59 [00:02:39.000] Open files: -Info 59 [00:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 59 [00:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 59 [00:02:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 59 [00:02:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 54 [00:02:17.000] Running: *ensureProjectForOpenFiles* +Info 55 [00:02:18.000] Before ensureProjectForOpenFiles: +Info 56 [00:02:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 56 [00:02:20.000] Files (3) + +Info 56 [00:02:21.000] ----------------------------------------------- +Info 56 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 56 [00:02:23.000] Files (2) + +Info 56 [00:02:24.000] ----------------------------------------------- +Info 56 [00:02:25.000] Open files: +Info 56 [00:02:26.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 56 [00:02:27.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 56 [00:02:28.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 56 [00:02:29.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 56 [00:02:30.000] After ensureProjectForOpenFiles: +Info 57 [00:02:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 57 [00:02:32.000] Files (3) + +Info 57 [00:02:33.000] ----------------------------------------------- +Info 57 [00:02:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 57 [00:02:35.000] Files (2) + +Info 57 [00:02:36.000] ----------------------------------------------- +Info 57 [00:02:37.000] Open files: +Info 57 [00:02:38.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 57 [00:02:39.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 57 [00:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 57 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -599,7 +597,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:44.000] request: +Info 57 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -674,7 +672,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:45.000] response: +Info 58 [00:02:43.000] response: { "response": { "definitions": [ @@ -711,7 +709,7 @@ Info 60 [00:02:45.000] response: }, "responseRequired": true } -Info 61 [00:02:46.000] request: +Info 59 [00:02:44.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -786,7 +784,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [00:02:47.000] response: +Info 60 [00:02:45.000] response: { "response": { "definitions": [ @@ -823,7 +821,7 @@ Info 62 [00:02:47.000] response: }, "responseRequired": true } -Info 63 [00:02:48.000] request: +Info 61 [00:02:46.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -898,7 +896,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:49.000] response: +Info 62 [00:02:47.000] response: { "response": { "definitions": [ @@ -935,7 +933,7 @@ Info 64 [00:02:49.000] response: }, "responseRequired": true } -Info 65 [00:02:50.000] request: +Info 63 [00:02:48.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1010,7 +1008,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:51.000] response: +Info 64 [00:02:49.000] response: { "response": { "definitions": [ @@ -1047,7 +1045,7 @@ Info 66 [00:02:51.000] response: }, "responseRequired": true } -Info 67 [00:02:52.000] request: +Info 65 [00:02:50.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1122,7 +1120,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:53.000] response: +Info 66 [00:02:51.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-changes.js index 3bb64b0e7d9c4..597f26f513389 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 @@ -216,19 +216,18 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:24.000] Files (3) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:23.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +240,16 @@ Info 21 [00:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:25.000] ----------------------------------------------- -Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 21 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) -Info 25 [00:01:30.000] ----------------------------------------------- -Info 25 [00:01:31.000] Open files: -Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:29.000] ----------------------------------------------- +Info 24 [00:01:30.000] Open files: +Info 24 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +272,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:34.000] response: +Info 24 [00:01:33.000] response: { "responseRequired": false } -Info 26 [00:01:35.000] request: +Info 25 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -308,11 +307,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/random -Info 28 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 29 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 30 [00:01:39.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -320,17 +319,16 @@ Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -340,20 +338,20 @@ Info 42 [00:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [00:01:54.000] Files (3) +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 42 [00:01:52.000] Files (3) -Info 44 [00:01:55.000] ----------------------------------------------- -Info 44 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [00:01:57.000] Files (2) +Info 42 [00:01:53.000] ----------------------------------------------- +Info 42 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:55.000] Files (2) -Info 44 [00:01:58.000] ----------------------------------------------- -Info 44 [00:01:59.000] Open files: -Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 42 [00:01:56.000] ----------------------------------------------- +Info 42 [00:01:57.000] Open files: +Info 42 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 42 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 42 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 42 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -382,11 +380,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [00:02:04.000] response: +Info 42 [00:02:02.000] response: { "responseRequired": false } -Info 45 [00:02:05.000] request: +Info 43 [00:02:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -425,8 +423,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -459,7 +457,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:08.000] response: +Info 46 [00:02:06.000] response: { "response": { "definitions": [ @@ -496,11 +494,11 @@ Info 48 [00:02:08.000] response: }, "responseRequired": true } -Info 49 [00:02:12.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 50 [00:02:13.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 51 [00:02:14.000] Scheduled: *ensureProjectForOpenFiles* -Info 52 [00:02:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 53 [00:02:16.000] request: +Info 47 [00:02:10.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 48 [00:02:11.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 49 [00:02:12.000] Scheduled: *ensureProjectForOpenFiles* +Info 50 [00:02:13.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 51 [00:02:14.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -546,8 +544,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 55 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 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:: @@ -580,7 +578,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:19.000] response: +Info 54 [00:02:17.000] response: { "response": { "definitions": [ @@ -617,7 +615,7 @@ Info 56 [00:02:19.000] response: }, "responseRequired": true } -Info 57 [00:02:20.000] request: +Info 55 [00:02:18.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -692,7 +690,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:21.000] response: +Info 56 [00:02:19.000] response: { "response": { "definitions": [ @@ -729,7 +727,7 @@ Info 58 [00:02:21.000] response: }, "responseRequired": true } -Info 59 [00:02:22.000] request: +Info 57 [00:02:20.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -804,7 +802,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:23.000] response: +Info 58 [00:02:21.000] response: { "response": { "definitions": [ @@ -841,7 +839,7 @@ Info 60 [00:02:23.000] response: }, "responseRequired": true } -Info 61 [00:02:24.000] request: +Info 59 [00:02:22.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -916,7 +914,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [00:02:25.000] response: +Info 60 [00:02:23.000] response: { "response": { "definitions": [ @@ -953,7 +951,7 @@ Info 62 [00:02:25.000] response: }, "responseRequired": true } -Info 63 [00:02:26.000] request: +Info 61 [00:02:24.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1028,7 +1026,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:27.000] response: +Info 62 [00:02:25.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-created.js index cea109d4c66f2..23d6b711e8d9c 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 @@ -213,19 +213,18 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:25.000] Files (3) +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -238,16 +237,16 @@ Info 21 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:26.000] ----------------------------------------------- -Info 23 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:30.000] Files (3) +Info 21 [00:01:25.000] ----------------------------------------------- +Info 22 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:29.000] Files (3) -Info 25 [00:01:31.000] ----------------------------------------------- -Info 25 [00:01:32.000] Open files: -Info 25 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:30.000] ----------------------------------------------- +Info 24 [00:01:31.000] Open files: +Info 24 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -270,11 +269,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:35.000] response: +Info 24 [00:01:34.000] response: { "responseRequired": false } -Info 26 [00:01:36.000] request: +Info 25 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -305,11 +304,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:37.000] Search path: /user/username/projects/myproject/random -Info 28 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 26 [00:01:36.000] Search path: /user/username/projects/myproject/random +Info 27 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 28 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 29 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 30 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -317,17 +316,16 @@ Info 31 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [00:01:52.000] Files (2) +Info 31 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 40 [00:01:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -337,20 +335,20 @@ Info 42 [00:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [00:01:53.000] ----------------------------------------------- -Info 44 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [00:01:55.000] Files (3) +Info 41 [00:01:51.000] ----------------------------------------------- +Info 42 [00:01:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 42 [00:01:53.000] Files (3) -Info 44 [00:01:56.000] ----------------------------------------------- -Info 44 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [00:01:58.000] Files (2) +Info 42 [00:01:54.000] ----------------------------------------------- +Info 42 [00:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:56.000] Files (2) -Info 44 [00:01:59.000] ----------------------------------------------- -Info 44 [00:02:00.000] Open files: -Info 44 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 42 [00:01:57.000] ----------------------------------------------- +Info 42 [00:01:58.000] Open files: +Info 42 [00:01:59.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 42 [00:02:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 42 [00:02:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 42 [00:02:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -379,11 +377,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [00:02:05.000] response: +Info 42 [00:02:03.000] response: { "responseRequired": false } -Info 45 [00:02:06.000] request: +Info 43 [00:02:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -422,7 +420,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 44 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -453,7 +451,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [00:02:08.000] response: +Info 45 [00:02:06.000] response: { "response": { "definitions": [ @@ -490,14 +488,14 @@ Info 47 [00:02:08.000] response: }, "responseRequired": true } -Info 48 [00:02:11.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 49 [00:02:12.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 50 [00:02:13.000] Scheduled: *ensureProjectForOpenFiles* -Info 51 [00:02:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 52 [00:02:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 53 [00:02:16.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 54 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 55 [00:02:18.000] request: +Info 46 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 47 [00:02:10.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 48 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 49 [00:02:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 50 [00:02:13.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 51 [00:02:14.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 52 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 53 [00:02:16.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -539,10 +537,10 @@ FsWatchesRecursive:: /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 -Info 58 [00:02:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 59 [00:02:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 54 [00:02:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 55 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 56 [00:02:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 57 [00:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -575,7 +573,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:23.000] response: +Info 58 [00:02:21.000] response: { "response": { "definitions": [ @@ -612,7 +610,7 @@ Info 60 [00:02:23.000] response: }, "responseRequired": true } -Info 61 [00:02:24.000] request: +Info 59 [00:02:22.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -687,7 +685,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [00:02:25.000] response: +Info 60 [00:02:23.000] response: { "response": { "definitions": [ @@ -724,7 +722,7 @@ Info 62 [00:02:25.000] response: }, "responseRequired": true } -Info 63 [00:02:26.000] request: +Info 61 [00:02:24.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -799,7 +797,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:27.000] response: +Info 62 [00:02:25.000] response: { "response": { "definitions": [ @@ -836,7 +834,7 @@ Info 64 [00:02:27.000] response: }, "responseRequired": true } -Info 65 [00:02:28.000] request: +Info 63 [00:02:26.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -911,7 +909,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:29.000] response: +Info 64 [00:02:27.000] response: { "response": { "definitions": [ @@ -948,7 +946,7 @@ Info 66 [00:02:29.000] response: }, "responseRequired": true } -Info 67 [00:02:30.000] request: +Info 65 [00:02:28.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1023,7 +1021,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:31.000] response: +Info 66 [00:02:29.000] response: { "response": { "definitions": [ @@ -1060,7 +1058,7 @@ Info 68 [00:02:31.000] response: }, "responseRequired": true } -Info 69 [00:02:32.000] request: +Info 67 [00:02:30.000] request: { "seq": 0, "type": "request", @@ -1101,18 +1099,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 71 [00:02:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 71 [00:02:35.000] Files (3) +Info 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) -Info 71 [00:02:36.000] ----------------------------------------------- -Info 71 [00:02:37.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [00:02:38.000] Files (2) +Info 69 [00:02:34.000] ----------------------------------------------- +Info 69 [00:02:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 69 [00:02:36.000] Files (2) -Info 71 [00:02:39.000] ----------------------------------------------- -Info 71 [00:02:40.000] Open files: -Info 71 [00:02:41.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 71 [00:02:42.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 69 [00:02:37.000] ----------------------------------------------- +Info 69 [00:02:38.000] Open files: +Info 69 [00:02:39.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 69 [00:02:40.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1147,11 +1145,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [00:02:43.000] response: +Info 69 [00:02:41.000] response: { "responseRequired": false } -Info 72 [00:02:44.000] request: +Info 70 [00:02:42.000] request: { "seq": 0, "type": "request", @@ -1194,22 +1192,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [00:02:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 74 [00:02:46.000] Search path: /user/username/projects/myproject/random -Info 75 [00:02:47.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 76 [00:02:48.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 76 [00:02:49.000] Files (3) +Info 71 [00:02:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 72 [00:02:44.000] Search path: /user/username/projects/myproject/random +Info 73 [00:02:45.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:02:46.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 74 [00:02:47.000] Files (3) -Info 76 [00:02:50.000] ----------------------------------------------- -Info 76 [00:02:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 76 [00:02:52.000] Files (2) +Info 74 [00:02:48.000] ----------------------------------------------- +Info 74 [00:02:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 74 [00:02:50.000] Files (2) -Info 76 [00:02:53.000] ----------------------------------------------- -Info 76 [00:02:54.000] Open files: -Info 76 [00:02:55.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 76 [00:02:56.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 76 [00:02:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 76 [00:02:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:02:51.000] ----------------------------------------------- +Info 74 [00:02:52.000] Open files: +Info 74 [00:02:53.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 74 [00:02:54.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 74 [00:02:55.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 74 [00:02:56.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1242,11 +1240,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:59.000] response: +Info 74 [00:02:57.000] response: { "responseRequired": false } -Info 77 [00:03:00.000] request: +Info 75 [00:02:58.000] request: { "seq": 0, "type": "request", @@ -1287,18 +1285,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [00:03:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 79 [00:03:02.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 79 [00:03:03.000] Files (3) +Info 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) -Info 79 [00:03:04.000] ----------------------------------------------- -Info 79 [00:03:05.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 79 [00:03:06.000] Files (2) +Info 77 [00:03:02.000] ----------------------------------------------- +Info 77 [00:03:03.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 77 [00:03:04.000] Files (2) -Info 79 [00:03:07.000] ----------------------------------------------- -Info 79 [00:03:08.000] Open files: -Info 79 [00:03:09.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 79 [00:03:10.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 77 [00:03:05.000] ----------------------------------------------- +Info 77 [00:03:06.000] Open files: +Info 77 [00:03:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 77 [00:03:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1333,11 +1331,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [00:03:11.000] response: +Info 77 [00:03:09.000] response: { "responseRequired": false } -Info 80 [00:03:12.000] request: +Info 78 [00:03:10.000] request: { "seq": 0, "type": "request", @@ -1380,16 +1378,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [00:03:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 82 [00:03:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 82 [00:03:15.000] Files (3) +Info 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) -Info 82 [00:03:16.000] ----------------------------------------------- -Info 82 [00:03:17.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 82 [00:03:18.000] Files (2) +Info 80 [00:03:14.000] ----------------------------------------------- +Info 80 [00:03:15.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 80 [00:03:16.000] Files (2) -Info 82 [00:03:19.000] ----------------------------------------------- -Info 82 [00:03:20.000] Open files: +Info 80 [00:03:17.000] ----------------------------------------------- +Info 80 [00:03:18.000] Open files: After request PolledWatches:: @@ -1426,11 +1424,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [00:03:21.000] response: +Info 80 [00:03:19.000] response: { "responseRequired": false } -Info 83 [00:03:22.000] request: +Info 81 [00:03:20.000] request: { "seq": 0, "type": "request", @@ -1475,12 +1473,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:03:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 85 [00:03:24.000] Search path: /user/username/projects/myproject/random -Info 86 [00:03:25.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 87 [00:03:26.000] `remove Project:: -Info 88 [00:03:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 89 [00:03:28.000] Files (3) +Info 82 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 83 [00:03:22.000] Search path: /user/username/projects/myproject/random +Info 84 [00:03:23.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 85 [00:03:24.000] `remove Project:: +Info 86 [00:03:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 87 [00:03:26.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -1493,27 +1491,27 @@ Info 89 [00:03:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 90 [00:03:29.000] ----------------------------------------------- -Info 91 [00:03:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 92 [00:03:31.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 93 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 94 [00:03:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 95 [00:03:34.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 96 [00:03:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 97 [00:03:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 98 [00:03:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 99 [00:03:38.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 100 [00:03:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 101 [00:03:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 102 [00:03:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 103 [00:03:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 104 [00:03:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 104 [00:03:44.000] Files (2) - -Info 104 [00:03:45.000] ----------------------------------------------- -Info 104 [00:03:46.000] Open files: -Info 104 [00:03:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 104 [00:03:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 88 [00:03:27.000] ----------------------------------------------- +Info 89 [00:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 90 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 91 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 92 [00:03:31.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 93 [00:03:32.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 94 [00:03:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 95 [00:03:34.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 96 [00:03:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 97 [00:03:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 98 [00:03:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 99 [00:03:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 100 [00:03:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 101 [00:03:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 102 [00:03:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 102 [00:03:42.000] Files (2) + +Info 102 [00:03:43.000] ----------------------------------------------- +Info 102 [00:03:44.000] Open files: +Info 102 [00:03:45.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 102 [00:03:46.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1532,7 +1530,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:49.000] response: +Info 102 [00:03:47.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-deleted.js index 5adcd4e6463b1..626ec33db6f28 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 @@ -216,19 +216,18 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:24.000] Files (3) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:23.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +240,16 @@ Info 21 [00:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:25.000] ----------------------------------------------- -Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 21 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) -Info 25 [00:01:30.000] ----------------------------------------------- -Info 25 [00:01:31.000] Open files: -Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:29.000] ----------------------------------------------- +Info 24 [00:01:30.000] Open files: +Info 24 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +272,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:34.000] response: +Info 24 [00:01:33.000] response: { "responseRequired": false } -Info 26 [00:01:35.000] request: +Info 25 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -308,11 +307,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/random -Info 28 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 29 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 30 [00:01:39.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -320,17 +319,16 @@ Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -340,20 +338,20 @@ Info 42 [00:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [00:01:54.000] Files (3) +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 42 [00:01:52.000] Files (3) -Info 44 [00:01:55.000] ----------------------------------------------- -Info 44 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [00:01:57.000] Files (2) +Info 42 [00:01:53.000] ----------------------------------------------- +Info 42 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:55.000] Files (2) -Info 44 [00:01:58.000] ----------------------------------------------- -Info 44 [00:01:59.000] Open files: -Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 42 [00:01:56.000] ----------------------------------------------- +Info 42 [00:01:57.000] Open files: +Info 42 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 42 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 42 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 42 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -382,11 +380,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [00:02:04.000] response: +Info 42 [00:02:02.000] response: { "responseRequired": false } -Info 45 [00:02:05.000] request: +Info 43 [00:02:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -425,8 +423,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -459,7 +457,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:08.000] response: +Info 46 [00:02:06.000] response: { "response": { "definitions": [ @@ -496,14 +494,14 @@ Info 48 [00:02:08.000] response: }, "responseRequired": true } -Info 49 [00:02:10.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 50 [00:02:11.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [00:02:12.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 52 [00:02:13.000] Scheduled: *ensureProjectForOpenFiles* -Info 53 [00:02:14.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 54 [00:02:15.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 55 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 56 [00:02:17.000] request: +Info 47 [00:02:08.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 48 [00:02:09.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 49 [00:02:10.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 50 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 51 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 52 [00:02:13.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 53 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 54 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -545,9 +543,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 58 [00:02:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 59 [00:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 55 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 56 [00:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 57 [00:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -580,7 +578,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:21.000] response: +Info 58 [00:02:19.000] response: { "response": { "definitions": [ @@ -617,7 +615,7 @@ Info 60 [00:02:21.000] response: }, "responseRequired": true } -Info 61 [00:02:22.000] request: +Info 59 [00:02:20.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -692,7 +690,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [00:02:23.000] response: +Info 60 [00:02:21.000] response: { "response": { "definitions": [ @@ -729,7 +727,7 @@ Info 62 [00:02:23.000] response: }, "responseRequired": true } -Info 63 [00:02:24.000] request: +Info 61 [00:02:22.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -804,7 +802,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:25.000] response: +Info 62 [00:02:23.000] response: { "response": { "definitions": [ @@ -841,7 +839,7 @@ Info 64 [00:02:25.000] response: }, "responseRequired": true } -Info 65 [00:02:26.000] request: +Info 63 [00:02:24.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -916,7 +914,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:27.000] response: +Info 64 [00:02:25.000] response: { "response": { "definitions": [ @@ -953,7 +951,7 @@ Info 66 [00:02:27.000] response: }, "responseRequired": true } -Info 67 [00:02:28.000] request: +Info 65 [00:02:26.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1028,7 +1026,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:29.000] response: +Info 66 [00:02:27.000] response: { "response": { "definitions": [ @@ -1065,7 +1063,7 @@ Info 68 [00:02:29.000] response: }, "responseRequired": true } -Info 69 [00:02:30.000] request: +Info 67 [00:02:28.000] request: { "seq": 0, "type": "request", @@ -1106,18 +1104,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 71 [00:02:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 71 [00:02:33.000] Files (3) +Info 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) -Info 71 [00:02:34.000] ----------------------------------------------- -Info 71 [00:02:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [00:02:36.000] Files (2) +Info 69 [00:02:32.000] ----------------------------------------------- +Info 69 [00:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 69 [00:02:34.000] Files (2) -Info 71 [00:02:37.000] ----------------------------------------------- -Info 71 [00:02:38.000] Open files: -Info 71 [00:02:39.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 71 [00:02:40.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 69 [00:02:35.000] ----------------------------------------------- +Info 69 [00:02:36.000] Open files: +Info 69 [00:02:37.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 69 [00:02:38.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1152,11 +1150,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [00:02:41.000] response: +Info 69 [00:02:39.000] response: { "responseRequired": false } -Info 72 [00:02:42.000] request: +Info 70 [00:02:40.000] request: { "seq": 0, "type": "request", @@ -1199,23 +1197,23 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [00:02:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 74 [00:02:44.000] Search path: /user/username/projects/myproject/random -Info 75 [00:02:45.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 76 [00:02:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 77 [00:02:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 77 [00:02:48.000] Files (3) +Info 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 +Info 74 [00:02:44.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 75 [00:02:45.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 75 [00:02:46.000] Files (3) -Info 77 [00:02:49.000] ----------------------------------------------- -Info 77 [00:02:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [00:02:51.000] Files (2) +Info 75 [00:02:47.000] ----------------------------------------------- +Info 75 [00:02:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 75 [00:02:49.000] Files (2) -Info 77 [00:02:52.000] ----------------------------------------------- -Info 77 [00:02:53.000] Open files: -Info 77 [00:02:54.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 77 [00:02:55.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 77 [00:02:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 77 [00:02:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 75 [00:02:50.000] ----------------------------------------------- +Info 75 [00:02:51.000] Open files: +Info 75 [00:02:52.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 75 [00:02:53.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 75 [00:02:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 75 [00:02:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1246,11 +1244,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:02:58.000] response: +Info 75 [00:02:56.000] response: { "responseRequired": false } -Info 78 [00:02:59.000] request: +Info 76 [00:02:57.000] request: { "seq": 0, "type": "request", @@ -1289,18 +1287,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [00:03:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 80 [00:03:01.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 80 [00:03:02.000] Files (3) +Info 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) -Info 80 [00:03:03.000] ----------------------------------------------- -Info 80 [00:03:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 80 [00:03:05.000] Files (2) +Info 78 [00:03:01.000] ----------------------------------------------- +Info 78 [00:03:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 78 [00:03:03.000] Files (2) -Info 80 [00:03:06.000] ----------------------------------------------- -Info 80 [00:03:07.000] Open files: -Info 80 [00:03:08.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 80 [00:03:09.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 78 [00:03:04.000] ----------------------------------------------- +Info 78 [00:03:05.000] Open files: +Info 78 [00:03:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 78 [00:03:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1333,11 +1331,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:03:10.000] response: +Info 78 [00:03:08.000] response: { "responseRequired": false } -Info 81 [00:03:11.000] request: +Info 79 [00:03:09.000] request: { "seq": 0, "type": "request", @@ -1378,16 +1376,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [00:03:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 83 [00:03:13.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 83 [00:03:14.000] Files (3) +Info 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) -Info 83 [00:03:15.000] ----------------------------------------------- -Info 83 [00:03:16.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 83 [00:03:17.000] Files (2) +Info 81 [00:03:13.000] ----------------------------------------------- +Info 81 [00:03:14.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 81 [00:03:15.000] Files (2) -Info 83 [00:03:18.000] ----------------------------------------------- -Info 83 [00:03:19.000] Open files: +Info 81 [00:03:16.000] ----------------------------------------------- +Info 81 [00:03:17.000] Open files: After request PolledWatches:: @@ -1422,11 +1420,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [00:03:20.000] response: +Info 81 [00:03:18.000] response: { "responseRequired": false } -Info 84 [00:03:21.000] request: +Info 82 [00:03:19.000] request: { "seq": 0, "type": "request", @@ -1469,12 +1467,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 86 [00:03:23.000] Search path: /user/username/projects/myproject/random -Info 87 [00:03:24.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 88 [00:03:25.000] `remove Project:: -Info 89 [00:03:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 90 [00:03:27.000] Files (3) +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 +Info 86 [00:03:23.000] `remove Project:: +Info 87 [00:03:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 88 [00:03:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -1487,26 +1485,26 @@ Info 90 [00:03:27.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 91 [00:03:28.000] ----------------------------------------------- -Info 92 [00:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 93 [00:03:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 94 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 95 [00:03:32.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 96 [00:03:33.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 97 [00:03:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 98 [00:03:35.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 99 [00:03:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 100 [00:03:37.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 101 [00:03:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 102 [00:03:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 103 [00:03:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 104 [00:03:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 104 [00:03:42.000] Files (2) - -Info 104 [00:03:43.000] ----------------------------------------------- -Info 104 [00:03:44.000] Open files: -Info 104 [00:03:45.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 104 [00:03:46.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 89 [00:03:26.000] ----------------------------------------------- +Info 90 [00:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 91 [00:03:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 92 [00:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 93 [00:03:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 94 [00:03:31.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 95 [00:03:32.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 96 [00:03:33.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 97 [00:03:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 98 [00:03:35.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 99 [00:03:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 100 [00:03:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 101 [00:03:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 102 [00:03:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 102 [00:03:40.000] Files (2) + +Info 102 [00:03:41.000] ----------------------------------------------- +Info 102 [00:03:42.000] Open files: +Info 102 [00:03:43.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 102 [00:03:44.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1525,7 +1523,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 104 [00:03:47.000] response: +Info 102 [00:03:45.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/dependency-dtsMap-not-present.js index 80dd17f00ed02..21c2f8aa4ac0b 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 @@ -213,19 +213,18 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:25.000] Files (3) +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -238,16 +237,16 @@ Info 21 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:26.000] ----------------------------------------------- -Info 23 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:30.000] Files (3) +Info 21 [00:01:25.000] ----------------------------------------------- +Info 22 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:29.000] Files (3) -Info 25 [00:01:31.000] ----------------------------------------------- -Info 25 [00:01:32.000] Open files: -Info 25 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:30.000] ----------------------------------------------- +Info 24 [00:01:31.000] Open files: +Info 24 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -270,11 +269,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:35.000] response: +Info 24 [00:01:34.000] response: { "responseRequired": false } -Info 26 [00:01:36.000] request: +Info 25 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -305,11 +304,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:37.000] Search path: /user/username/projects/myproject/random -Info 28 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 26 [00:01:36.000] Search path: /user/username/projects/myproject/random +Info 27 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 28 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 29 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 30 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -317,17 +316,16 @@ Info 31 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [00:01:52.000] Files (2) +Info 31 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 40 [00:01:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -337,20 +335,20 @@ Info 42 [00:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [00:01:53.000] ----------------------------------------------- -Info 44 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [00:01:55.000] Files (3) +Info 41 [00:01:51.000] ----------------------------------------------- +Info 42 [00:01:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 42 [00:01:53.000] Files (3) -Info 44 [00:01:56.000] ----------------------------------------------- -Info 44 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [00:01:58.000] Files (2) +Info 42 [00:01:54.000] ----------------------------------------------- +Info 42 [00:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:56.000] Files (2) -Info 44 [00:01:59.000] ----------------------------------------------- -Info 44 [00:02:00.000] Open files: -Info 44 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 42 [00:01:57.000] ----------------------------------------------- +Info 42 [00:01:58.000] Open files: +Info 42 [00:01:59.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 42 [00:02:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 42 [00:02:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 42 [00:02:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -379,11 +377,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [00:02:05.000] response: +Info 42 [00:02:03.000] response: { "responseRequired": false } -Info 45 [00:02:06.000] request: +Info 43 [00:02:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -422,7 +420,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 44 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -453,7 +451,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [00:02:08.000] response: +Info 45 [00:02:06.000] response: { "response": { "definitions": [ @@ -490,7 +488,7 @@ Info 47 [00:02:08.000] response: }, "responseRequired": true } -Info 48 [00:02:09.000] request: +Info 46 [00:02:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -561,7 +559,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [00:02:10.000] response: +Info 47 [00:02:08.000] response: { "response": { "definitions": [ @@ -598,7 +596,7 @@ Info 49 [00:02:10.000] response: }, "responseRequired": true } -Info 50 [00:02:11.000] request: +Info 48 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -669,7 +667,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [00:02:12.000] response: +Info 49 [00:02:10.000] response: { "response": { "definitions": [ @@ -706,7 +704,7 @@ Info 51 [00:02:12.000] response: }, "responseRequired": true } -Info 52 [00:02:13.000] request: +Info 50 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -777,7 +775,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [00:02:14.000] response: +Info 51 [00:02:12.000] response: { "response": { "definitions": [ @@ -814,7 +812,7 @@ Info 53 [00:02:14.000] response: }, "responseRequired": true } -Info 54 [00:02:15.000] request: +Info 52 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -885,7 +883,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:16.000] response: +Info 53 [00:02:14.000] response: { "response": { "definitions": [ @@ -922,7 +920,7 @@ Info 55 [00:02:16.000] response: }, "responseRequired": true } -Info 56 [00:02:17.000] request: +Info 54 [00:02:15.000] request: { "seq": 0, "type": "request", @@ -961,18 +959,18 @@ FsWatchesRecursive:: /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 (3) +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) -Info 58 [00:02:21.000] ----------------------------------------------- -Info 58 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 58 [00:02:23.000] Files (2) +Info 56 [00:02:19.000] ----------------------------------------------- +Info 56 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 56 [00:02:21.000] Files (2) -Info 58 [00:02:24.000] ----------------------------------------------- -Info 58 [00:02:25.000] Open files: -Info 58 [00:02:26.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 58 [00:02:27.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 56 [00:02:22.000] ----------------------------------------------- +Info 56 [00:02:23.000] Open files: +Info 56 [00:02:24.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 56 [00:02:25.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1005,11 +1003,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:28.000] response: +Info 56 [00:02:26.000] response: { "responseRequired": false } -Info 59 [00:02:29.000] request: +Info 57 [00:02:27.000] request: { "seq": 0, "type": "request", @@ -1050,22 +1048,22 @@ FsWatchesRecursive:: /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 -Info 63 [00:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 63 [00:02:34.000] Files (3) +Info 58 [00:02:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 59 [00:02:29.000] Search path: /user/username/projects/myproject/random +Info 60 [00:02:30.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 61 [00:02:32.000] Files (3) -Info 63 [00:02:35.000] ----------------------------------------------- -Info 63 [00:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:37.000] Files (2) +Info 61 [00:02:33.000] ----------------------------------------------- +Info 61 [00:02:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:35.000] Files (2) -Info 63 [00:02:38.000] ----------------------------------------------- -Info 63 [00:02:39.000] Open files: -Info 63 [00:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 63 [00:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 63 [00:02:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 63 [00:02:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:36.000] ----------------------------------------------- +Info 61 [00:02:37.000] Open files: +Info 61 [00:02:38.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 61 [00:02:39.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 61 [00:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 61 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1096,11 +1094,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:44.000] response: +Info 61 [00:02:42.000] response: { "responseRequired": false } -Info 64 [00:02:45.000] request: +Info 62 [00:02:43.000] request: { "seq": 0, "type": "request", @@ -1139,18 +1137,18 @@ FsWatchesRecursive:: /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 (3) +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) -Info 66 [00:02:49.000] ----------------------------------------------- -Info 66 [00:02:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:51.000] Files (2) +Info 64 [00:02:47.000] ----------------------------------------------- +Info 64 [00:02:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:49.000] Files (2) -Info 66 [00:02:52.000] ----------------------------------------------- -Info 66 [00:02:53.000] Open files: -Info 66 [00:02:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [00:02:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:50.000] ----------------------------------------------- +Info 64 [00:02:51.000] Open files: +Info 64 [00:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 64 [00:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1183,11 +1181,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:56.000] response: +Info 64 [00:02:54.000] response: { "responseRequired": false } -Info 67 [00:02:57.000] request: +Info 65 [00:02:55.000] request: { "seq": 0, "type": "request", @@ -1228,16 +1226,16 @@ FsWatchesRecursive:: /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 (3) +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) -Info 69 [00:03:01.000] ----------------------------------------------- -Info 69 [00:03:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 69 [00:03:03.000] Files (2) +Info 67 [00:02:59.000] ----------------------------------------------- +Info 67 [00:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 67 [00:03:01.000] Files (2) -Info 69 [00:03:04.000] ----------------------------------------------- -Info 69 [00:03:05.000] Open files: +Info 67 [00:03:02.000] ----------------------------------------------- +Info 67 [00:03:03.000] Open files: After request PolledWatches:: @@ -1272,11 +1270,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:03:06.000] response: +Info 67 [00:03:04.000] response: { "responseRequired": false } -Info 70 [00:03:07.000] request: +Info 68 [00:03:05.000] request: { "seq": 0, "type": "request", @@ -1319,12 +1317,12 @@ FsWatchesRecursive:: /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 -Info 74 [00:03:11.000] `remove Project:: -Info 75 [00:03:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 76 [00:03:13.000] Files (3) +Info 69 [00:03:06.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 70 [00:03:07.000] Search path: /user/username/projects/myproject/random +Info 71 [00:03:08.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:03:09.000] `remove Project:: +Info 73 [00:03:10.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 74 [00:03:11.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -1337,26 +1335,26 @@ Info 76 [00:03:13.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 77 [00:03:14.000] ----------------------------------------------- -Info 78 [00:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 79 [00:03:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 80 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 81 [00:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 82 [00:03:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 83 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 84 [00:03:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 85 [00:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 86 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 87 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 88 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 89 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 90 [00:03:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 90 [00:03:28.000] Files (2) - -Info 90 [00:03:29.000] ----------------------------------------------- -Info 90 [00:03:30.000] Open files: -Info 90 [00:03:31.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 90 [00:03:32.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 75 [00:03:12.000] ----------------------------------------------- +Info 76 [00:03:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 77 [00:03:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 78 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 79 [00:03:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 80 [00:03:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 81 [00:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 82 [00:03:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 83 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 84 [00:03:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 85 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 86 [00:03:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 87 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 88 [00:03:25.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 88 [00:03:26.000] Files (2) + +Info 88 [00:03:27.000] ----------------------------------------------- +Info 88 [00:03:28.000] Open files: +Info 88 [00:03:29.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 88 [00:03:30.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1375,7 +1373,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:33.000] response: +Info 88 [00:03:31.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/usage-file-changes-with-timeout-before-request.js index dbe09dab45451..bb1843d13d4b5 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 @@ -216,19 +216,18 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:24.000] Files (3) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:23.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +240,16 @@ Info 21 [00:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:25.000] ----------------------------------------------- -Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 21 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) -Info 25 [00:01:30.000] ----------------------------------------------- -Info 25 [00:01:31.000] Open files: -Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:29.000] ----------------------------------------------- +Info 24 [00:01:30.000] Open files: +Info 24 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +272,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:34.000] response: +Info 24 [00:01:33.000] response: { "responseRequired": false } -Info 26 [00:01:35.000] request: +Info 25 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -308,11 +307,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/random -Info 28 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 29 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 30 [00:01:39.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -320,17 +319,16 @@ Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -340,20 +338,20 @@ Info 42 [00:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [00:01:54.000] Files (3) +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 42 [00:01:52.000] Files (3) -Info 44 [00:01:55.000] ----------------------------------------------- -Info 44 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [00:01:57.000] Files (2) +Info 42 [00:01:53.000] ----------------------------------------------- +Info 42 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:55.000] Files (2) -Info 44 [00:01:58.000] ----------------------------------------------- -Info 44 [00:01:59.000] Open files: -Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 42 [00:01:56.000] ----------------------------------------------- +Info 42 [00:01:57.000] Open files: +Info 42 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 42 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 42 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 42 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -382,11 +380,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [00:02:04.000] response: +Info 42 [00:02:02.000] response: { "responseRequired": false } -Info 45 [00:02:05.000] request: +Info 43 [00:02:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -425,8 +423,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -459,7 +457,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:08.000] response: +Info 46 [00:02:06.000] response: { "response": { "definitions": [ @@ -496,7 +494,7 @@ Info 48 [00:02:08.000] response: }, "responseRequired": true } -Info 49 [00:02:09.000] request: +Info 47 [00:02:07.000] request: { "command": "change", "arguments": { @@ -574,7 +572,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:10.000] response: +Info 48 [00:02:08.000] response: { "responseRequired": false } @@ -642,7 +640,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [00:02:11.000] request: +Info 49 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -685,9 +683,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 53 [00:02:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 54 [00:02:14.000] Different program with same set of files +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:: @@ -720,7 +718,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:15.000] response: +Info 53 [00:02:13.000] response: { "response": { "definitions": [ @@ -757,7 +755,7 @@ Info 55 [00:02:15.000] response: }, "responseRequired": true } -Info 56 [00:02:16.000] request: +Info 54 [00:02:14.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -832,7 +830,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:17.000] response: +Info 55 [00:02:15.000] response: { "response": { "definitions": [ @@ -869,7 +867,7 @@ Info 57 [00:02:17.000] response: }, "responseRequired": true } -Info 58 [00:02:18.000] request: +Info 56 [00:02:16.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -944,7 +942,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:19.000] response: +Info 57 [00:02:17.000] response: { "response": { "definitions": [ @@ -981,7 +979,7 @@ Info 59 [00:02:19.000] response: }, "responseRequired": true } -Info 60 [00:02:20.000] request: +Info 58 [00:02:18.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1056,7 +1054,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:21.000] response: +Info 59 [00:02:19.000] response: { "response": { "definitions": [ @@ -1093,7 +1091,7 @@ Info 61 [00:02:21.000] response: }, "responseRequired": true } -Info 62 [00:02:22.000] request: +Info 60 [00:02:20.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1168,7 +1166,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:23.000] response: +Info 61 [00:02:21.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configHasNoReference/usage-file-changes.js index c66a6e833fc0b..4ff577271fba2 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 @@ -216,19 +216,18 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 17 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 18 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 21 [00:01:24.000] Files (3) +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 16 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 17 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:01:22.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 20 [00:01:23.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -241,16 +240,16 @@ Info 21 [00:01:24.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 22 [00:01:25.000] ----------------------------------------------- -Info 23 [00:01:26.000] Search path: /user/username/projects/myproject/main -Info 24 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 25 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 21 [00:01:24.000] ----------------------------------------------- +Info 22 [00:01:25.000] Search path: /user/username/projects/myproject/main +Info 23 [00:01:26.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) -Info 25 [00:01:30.000] ----------------------------------------------- -Info 25 [00:01:31.000] Open files: -Info 25 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 25 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 24 [00:01:29.000] ----------------------------------------------- +Info 24 [00:01:30.000] Open files: +Info 24 [00:01:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 24 [00:01:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -273,11 +272,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 25 [00:01:34.000] response: +Info 24 [00:01:33.000] response: { "responseRequired": false } -Info 26 [00:01:35.000] request: +Info 25 [00:01:34.000] request: { "seq": 0, "type": "request", @@ -308,11 +307,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 27 [00:01:36.000] Search path: /user/username/projects/myproject/random -Info 28 [00:01:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 29 [00:01:38.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 30 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 29 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 30 [00:01:39.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -320,17 +319,16 @@ Info 31 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 32 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 33 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 35 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 41 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 42 [00:01:51.000] Files (2) +Info 31 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 32 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 34 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 35 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 39 [00:01:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 40 [00:01:49.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -340,20 +338,20 @@ Info 42 [00:01:51.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 43 [00:01:52.000] ----------------------------------------------- -Info 44 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 44 [00:01:54.000] Files (3) +Info 41 [00:01:50.000] ----------------------------------------------- +Info 42 [00:01:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 42 [00:01:52.000] Files (3) -Info 44 [00:01:55.000] ----------------------------------------------- -Info 44 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 44 [00:01:57.000] Files (2) +Info 42 [00:01:53.000] ----------------------------------------------- +Info 42 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 42 [00:01:55.000] Files (2) -Info 44 [00:01:58.000] ----------------------------------------------- -Info 44 [00:01:59.000] Open files: -Info 44 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 44 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 44 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 44 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 42 [00:01:56.000] ----------------------------------------------- +Info 42 [00:01:57.000] Open files: +Info 42 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 42 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 42 [00:02:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 42 [00:02:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -382,11 +380,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 44 [00:02:04.000] response: +Info 42 [00:02:02.000] response: { "responseRequired": false } -Info 45 [00:02:05.000] request: +Info 43 [00:02:03.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -425,8 +423,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 46 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 47 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -459,7 +457,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:08.000] response: +Info 46 [00:02:06.000] response: { "response": { "definitions": [ @@ -496,7 +494,7 @@ Info 48 [00:02:08.000] response: }, "responseRequired": true } -Info 49 [00:02:09.000] request: +Info 47 [00:02:07.000] request: { "command": "change", "arguments": { @@ -574,11 +572,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:10.000] response: +Info 48 [00:02:08.000] response: { "responseRequired": false } -Info 51 [00:02:11.000] request: +Info 49 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -621,9 +619,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 53 [00:02:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 54 [00:02:14.000] Different program with same set of files +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:: @@ -656,7 +654,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:15.000] response: +Info 53 [00:02:13.000] response: { "response": { "definitions": [ @@ -693,7 +691,7 @@ Info 55 [00:02:15.000] response: }, "responseRequired": true } -Info 56 [00:02:16.000] request: +Info 54 [00:02:14.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -768,7 +766,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:17.000] response: +Info 55 [00:02:15.000] response: { "response": { "definitions": [ @@ -805,7 +803,7 @@ Info 57 [00:02:17.000] response: }, "responseRequired": true } -Info 58 [00:02:18.000] request: +Info 56 [00:02:16.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -880,7 +878,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:19.000] response: +Info 57 [00:02:17.000] response: { "response": { "definitions": [ @@ -917,7 +915,7 @@ Info 59 [00:02:19.000] response: }, "responseRequired": true } -Info 60 [00:02:20.000] request: +Info 58 [00:02:18.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -992,7 +990,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:21.000] response: +Info 59 [00:02:19.000] response: { "response": { "definitions": [ @@ -1029,7 +1027,7 @@ Info 61 [00:02:21.000] response: }, "responseRequired": true } -Info 62 [00:02:22.000] request: +Info 60 [00:02:20.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1104,7 +1102,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:23.000] response: +Info 61 [00:02:21.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/can-go-to-definition-correctly.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/can-go-to-definition-correctly.js index c20bcc3ec7cc9..ea209370b257f 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,11 +335,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +347,16 @@ Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:52.000] Files (2) +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +366,20 @@ Info 46 [00:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:53.000] ----------------------------------------------- -Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:55.000] Files (3) +Info 45 [00:01:51.000] ----------------------------------------------- +Info 46 [00:01:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:53.000] Files (3) -Info 48 [00:01:56.000] ----------------------------------------------- -Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:01:58.000] Files (2) +Info 46 [00:01:54.000] ----------------------------------------------- +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (2) -Info 48 [00:01:59.000] ----------------------------------------------- -Info 48 [00:02:00.000] Open files: -Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Open files: +Info 46 [00:01:59.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +412,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:05.000] response: +Info 46 [00:02:03.000] response: { "responseRequired": false } -Info 49 [00:02:06.000] request: +Info 47 [00:02:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +491,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:07.000] response: +Info 48 [00:02:05.000] response: { "response": { "definitions": [ @@ -530,7 +528,7 @@ Info 50 [00:02:07.000] response: }, "responseRequired": true } -Info 51 [00:02:08.000] request: +Info 49 [00:02:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -605,7 +603,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:09.000] response: +Info 50 [00:02:07.000] response: { "response": { "definitions": [ @@ -642,7 +640,7 @@ Info 52 [00:02:09.000] response: }, "responseRequired": true } -Info 53 [00:02:10.000] request: +Info 51 [00:02:08.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -717,7 +715,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:11.000] response: +Info 52 [00:02:09.000] response: { "response": { "definitions": [ @@ -754,7 +752,7 @@ Info 54 [00:02:11.000] response: }, "responseRequired": true } -Info 55 [00:02:12.000] request: +Info 53 [00:02:10.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -829,7 +827,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:13.000] response: +Info 54 [00:02:11.000] response: { "response": { "definitions": [ @@ -866,7 +864,7 @@ Info 56 [00:02:13.000] response: }, "responseRequired": true } -Info 57 [00:02:14.000] request: +Info 55 [00:02:12.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -941,7 +939,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:15.000] response: +Info 56 [00:02:13.000] response: { "response": { "definitions": [ @@ -978,7 +976,7 @@ Info 58 [00:02:15.000] response: }, "responseRequired": true } -Info 59 [00:02:16.000] request: +Info 57 [00:02:14.000] request: { "seq": 0, "type": "request", @@ -1019,18 +1017,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 61 [00:02:18.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 61 [00:02:19.000] Files (3) +Info 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) -Info 61 [00:02:20.000] ----------------------------------------------- -Info 61 [00:02:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [00:02:22.000] Files (2) +Info 59 [00:02:18.000] ----------------------------------------------- +Info 59 [00:02:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 59 [00:02:20.000] Files (2) -Info 61 [00:02:23.000] ----------------------------------------------- -Info 61 [00:02:24.000] Open files: -Info 61 [00:02:25.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 61 [00:02:26.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 59 [00:02:21.000] ----------------------------------------------- +Info 59 [00:02:22.000] Open files: +Info 59 [00:02:23.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 59 [00:02:24.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1065,11 +1063,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:27.000] response: +Info 59 [00:02:25.000] response: { "responseRequired": false } -Info 62 [00:02:28.000] request: +Info 60 [00:02:26.000] request: { "seq": 0, "type": "request", @@ -1112,22 +1110,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 64 [00:02:30.000] Search path: /user/username/projects/myproject/random -Info 65 [00:02:31.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 66 [00:02:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:02:33.000] Files (3) +Info 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 +Info 64 [00:02:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 64 [00:02:31.000] Files (3) -Info 66 [00:02:34.000] ----------------------------------------------- -Info 66 [00:02:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:36.000] Files (2) +Info 64 [00:02:32.000] ----------------------------------------------- +Info 64 [00:02:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:34.000] Files (2) -Info 66 [00:02:37.000] ----------------------------------------------- -Info 66 [00:02:38.000] Open files: -Info 66 [00:02:39.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:40.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [00:02:41.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [00:02:42.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:35.000] ----------------------------------------------- +Info 64 [00:02:36.000] Open files: +Info 64 [00:02:37.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 64 [00:02:38.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 64 [00:02:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 64 [00:02:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1160,11 +1158,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:43.000] response: +Info 64 [00:02:41.000] response: { "responseRequired": false } -Info 67 [00:02:44.000] request: +Info 65 [00:02:42.000] request: { "seq": 0, "type": "request", @@ -1205,18 +1203,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 69 [00:02:46.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 69 [00:02:47.000] Files (3) +Info 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) -Info 69 [00:02:48.000] ----------------------------------------------- -Info 69 [00:02:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 69 [00:02:50.000] Files (2) +Info 67 [00:02:46.000] ----------------------------------------------- +Info 67 [00:02:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 67 [00:02:48.000] Files (2) -Info 69 [00:02:51.000] ----------------------------------------------- -Info 69 [00:02:52.000] Open files: -Info 69 [00:02:53.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 69 [00:02:54.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 67 [00:02:49.000] ----------------------------------------------- +Info 67 [00:02:50.000] Open files: +Info 67 [00:02:51.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 67 [00:02:52.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1251,11 +1249,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:02:55.000] response: +Info 67 [00:02:53.000] response: { "responseRequired": false } -Info 70 [00:02:56.000] request: +Info 68 [00:02:54.000] request: { "seq": 0, "type": "request", @@ -1298,16 +1296,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [00:02:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 72 [00:02:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 72 [00:02:59.000] Files (3) +Info 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) -Info 72 [00:03:00.000] ----------------------------------------------- -Info 72 [00:03:01.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 72 [00:03:02.000] Files (2) +Info 70 [00:02:58.000] ----------------------------------------------- +Info 70 [00:02:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 70 [00:03:00.000] Files (2) -Info 72 [00:03:03.000] ----------------------------------------------- -Info 72 [00:03:04.000] Open files: +Info 70 [00:03:01.000] ----------------------------------------------- +Info 70 [00:03:02.000] Open files: After request PolledWatches:: @@ -1344,11 +1342,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:03:05.000] response: +Info 70 [00:03:03.000] response: { "responseRequired": false } -Info 73 [00:03:06.000] request: +Info 71 [00:03:04.000] request: { "seq": 0, "type": "request", @@ -1393,12 +1391,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:03:07.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 75 [00:03:08.000] Search path: /user/username/projects/myproject/random -Info 76 [00:03:09.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 77 [00:03:10.000] `remove Project:: -Info 78 [00:03:11.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 79 [00:03:12.000] Files (3) +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 +Info 75 [00:03:08.000] `remove Project:: +Info 76 [00:03:09.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 77 [00:03:10.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -1411,28 +1409,28 @@ Info 79 [00:03:12.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 80 [00:03:13.000] ----------------------------------------------- -Info 81 [00:03:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 82 [00:03:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 83 [00:03:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 84 [00:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 85 [00:03:18.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 86 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 87 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 88 [00:03:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 89 [00:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 90 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 91 [00:03:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 92 [00:03:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 93 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 94 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 95 [00:03:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 95 [00:03:29.000] Files (2) - -Info 95 [00:03:30.000] ----------------------------------------------- -Info 95 [00:03:31.000] Open files: -Info 95 [00:03:32.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 95 [00:03:33.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 78 [00:03:11.000] ----------------------------------------------- +Info 79 [00:03:12.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 80 [00:03:13.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 81 [00:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 82 [00:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 83 [00:03:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 84 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 85 [00:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 86 [00:03:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 87 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 88 [00:03:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 89 [00:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 90 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 91 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 92 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 93 [00:03:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 93 [00:03:27.000] Files (2) + +Info 93 [00:03:28.000] ----------------------------------------------- +Info 93 [00:03:29.000] Open files: +Info 93 [00:03:30.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 93 [00:03:31.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1451,7 +1449,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [00:03:34.000] response: +Info 93 [00:03:32.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-changes-with-timeout-before-request.js index a70c99362d3fc..1deadde3723cb 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,11 +335,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +347,16 @@ Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:52.000] Files (2) +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +366,20 @@ Info 46 [00:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:53.000] ----------------------------------------------- -Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:55.000] Files (3) +Info 45 [00:01:51.000] ----------------------------------------------- +Info 46 [00:01:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:53.000] Files (3) -Info 48 [00:01:56.000] ----------------------------------------------- -Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:01:58.000] Files (2) +Info 46 [00:01:54.000] ----------------------------------------------- +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (2) -Info 48 [00:01:59.000] ----------------------------------------------- -Info 48 [00:02:00.000] Open files: -Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Open files: +Info 46 [00:01:59.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +412,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:05.000] response: +Info 46 [00:02:03.000] response: { "responseRequired": false } -Info 49 [00:02:06.000] request: +Info 47 [00:02:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +491,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:07.000] response: +Info 48 [00:02:05.000] response: { "response": { "definitions": [ @@ -603,7 +601,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [00:02:11.000] request: +Info 49 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -678,7 +676,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:12.000] response: +Info 50 [00:02:10.000] response: { "response": { "definitions": [ @@ -715,7 +713,7 @@ Info 52 [00:02:12.000] response: }, "responseRequired": true } -Info 53 [00:02:13.000] request: +Info 51 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -790,7 +788,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:14.000] response: +Info 52 [00:02:12.000] response: { "response": { "definitions": [ @@ -827,7 +825,7 @@ Info 54 [00:02:14.000] response: }, "responseRequired": true } -Info 55 [00:02:15.000] request: +Info 53 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -902,7 +900,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:16.000] response: +Info 54 [00:02:14.000] response: { "response": { "definitions": [ @@ -939,7 +937,7 @@ Info 56 [00:02:16.000] response: }, "responseRequired": true } -Info 57 [00:02:17.000] request: +Info 55 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1014,7 +1012,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:18.000] response: +Info 56 [00:02:16.000] response: { "response": { "definitions": [ @@ -1051,7 +1049,7 @@ Info 58 [00:02:18.000] response: }, "responseRequired": true } -Info 59 [00:02:19.000] request: +Info 57 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1126,7 +1124,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:20.000] response: +Info 58 [00:02:18.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-changes.js index 0eb89beef058f..76d2a57fad2e7 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,11 +335,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +347,16 @@ Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:52.000] Files (2) +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +366,20 @@ Info 46 [00:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:53.000] ----------------------------------------------- -Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:55.000] Files (3) +Info 45 [00:01:51.000] ----------------------------------------------- +Info 46 [00:01:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:53.000] Files (3) -Info 48 [00:01:56.000] ----------------------------------------------- -Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:01:58.000] Files (2) +Info 46 [00:01:54.000] ----------------------------------------------- +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (2) -Info 48 [00:01:59.000] ----------------------------------------------- -Info 48 [00:02:00.000] Open files: -Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Open files: +Info 46 [00:01:59.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +412,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:05.000] response: +Info 46 [00:02:03.000] response: { "responseRequired": false } -Info 49 [00:02:06.000] request: +Info 47 [00:02:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +491,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:07.000] response: +Info 48 [00:02:05.000] response: { "response": { "definitions": [ @@ -530,7 +528,7 @@ Info 50 [00:02:07.000] response: }, "responseRequired": true } -Info 51 [00:02:11.000] request: +Info 49 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -614,7 +612,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:12.000] response: +Info 50 [00:02:10.000] response: { "response": { "definitions": [ @@ -651,7 +649,7 @@ Info 52 [00:02:12.000] response: }, "responseRequired": true } -Info 53 [00:02:13.000] request: +Info 51 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -726,7 +724,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:14.000] response: +Info 52 [00:02:12.000] response: { "response": { "definitions": [ @@ -763,7 +761,7 @@ Info 54 [00:02:14.000] response: }, "responseRequired": true } -Info 55 [00:02:15.000] request: +Info 53 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -838,7 +836,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:16.000] response: +Info 54 [00:02:14.000] response: { "response": { "definitions": [ @@ -875,7 +873,7 @@ Info 56 [00:02:16.000] response: }, "responseRequired": true } -Info 57 [00:02:17.000] request: +Info 55 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -950,7 +948,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:18.000] response: +Info 56 [00:02:16.000] response: { "response": { "definitions": [ @@ -987,7 +985,7 @@ Info 58 [00:02:18.000] response: }, "responseRequired": true } -Info 59 [00:02:19.000] request: +Info 57 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1062,7 +1060,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:20.000] response: +Info 58 [00:02:18.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-created.js index 3db6e2298d8c3..5f552b4c1a15b 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,9 +214,8 @@ Info 6 [00:01:07.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -227,20 +226,20 @@ Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:26.000] Files (3) +Info 11 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -253,16 +252,16 @@ Info 25 [00:01:26.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:27.000] ----------------------------------------------- -Info 27 [00:01:28.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:31.000] Files (3) +Info 25 [00:01:26.000] ----------------------------------------------- +Info 26 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:30.000] Files (3) -Info 29 [00:01:32.000] ----------------------------------------------- -Info 29 [00:01:33.000] Open files: -Info 29 [00:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:31.000] ----------------------------------------------- +Info 28 [00:01:32.000] Open files: +Info 28 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -289,11 +288,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:36.000] response: +Info 28 [00:01:35.000] response: { "responseRequired": false } -Info 30 [00:01:37.000] request: +Info 29 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -328,11 +327,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:38.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:40.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:42.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -340,17 +339,16 @@ Info 35 [00:01:42.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:53.000] Files (2) +Info 35 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -360,20 +358,20 @@ Info 46 [00:01:53.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:54.000] ----------------------------------------------- -Info 48 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:56.000] Files (3) +Info 45 [00:01:52.000] ----------------------------------------------- +Info 46 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:54.000] Files (3) -Info 48 [00:01:57.000] ----------------------------------------------- -Info 48 [00:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:01:59.000] Files (2) +Info 46 [00:01:55.000] ----------------------------------------------- +Info 46 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:57.000] Files (2) -Info 48 [00:02:00.000] ----------------------------------------------- -Info 48 [00:02:01.000] Open files: -Info 48 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:01:58.000] ----------------------------------------------- +Info 46 [00:01:59.000] Open files: +Info 46 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -406,11 +404,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:06.000] response: +Info 46 [00:02:04.000] response: { "responseRequired": false } -Info 49 [00:02:07.000] request: +Info 47 [00:02:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -485,7 +483,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:08.000] response: +Info 48 [00:02:06.000] response: { "response": { "definitions": [ @@ -522,10 +520,10 @@ Info 50 [00:02:08.000] response: }, "responseRequired": true } -Info 51 [00:02:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 52 [00:02:12.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 53 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 54 [00:02:14.000] request: +Info 49 [00:02:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 50 [00:02:10.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 51 [00:02:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 52 [00:02:12.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -608,7 +606,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:15.000] response: +Info 53 [00:02:13.000] response: { "response": { "definitions": [ @@ -645,7 +643,7 @@ Info 55 [00:02:15.000] response: }, "responseRequired": true } -Info 56 [00:02:16.000] request: +Info 54 [00:02:14.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -720,7 +718,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:17.000] response: +Info 55 [00:02:15.000] response: { "response": { "definitions": [ @@ -757,7 +755,7 @@ Info 57 [00:02:17.000] response: }, "responseRequired": true } -Info 58 [00:02:18.000] request: +Info 56 [00:02:16.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -832,7 +830,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:19.000] response: +Info 57 [00:02:17.000] response: { "response": { "definitions": [ @@ -869,7 +867,7 @@ Info 59 [00:02:19.000] response: }, "responseRequired": true } -Info 60 [00:02:20.000] request: +Info 58 [00:02:18.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -944,7 +942,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:21.000] response: +Info 59 [00:02:19.000] response: { "response": { "definitions": [ @@ -981,7 +979,7 @@ Info 61 [00:02:21.000] response: }, "responseRequired": true } -Info 62 [00:02:22.000] request: +Info 60 [00:02:20.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1056,7 +1054,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:23.000] response: +Info 61 [00:02:21.000] response: { "response": { "definitions": [ @@ -1093,7 +1091,7 @@ Info 63 [00:02:23.000] response: }, "responseRequired": true } -Info 64 [00:02:24.000] request: +Info 62 [00:02:22.000] request: { "seq": 0, "type": "request", @@ -1134,18 +1132,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [00:02:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:02:27.000] Files (3) +Info 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) -Info 66 [00:02:28.000] ----------------------------------------------- -Info 66 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:30.000] Files (2) +Info 64 [00:02:26.000] ----------------------------------------------- +Info 64 [00:02:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:28.000] Files (2) -Info 66 [00:02:31.000] ----------------------------------------------- -Info 66 [00:02:32.000] Open files: -Info 66 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 64 [00:02:29.000] ----------------------------------------------- +Info 64 [00:02:30.000] Open files: +Info 64 [00:02:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 64 [00:02:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1180,11 +1178,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:35.000] response: +Info 64 [00:02:33.000] response: { "responseRequired": false } -Info 67 [00:02:36.000] request: +Info 65 [00:02:34.000] request: { "seq": 0, "type": "request", @@ -1227,22 +1225,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [00:02:38.000] Search path: /user/username/projects/myproject/random -Info 70 [00:02:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [00:02:40.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 71 [00:02:41.000] Files (3) +Info 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 +Info 69 [00:02:38.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 69 [00:02:39.000] Files (3) -Info 71 [00:02:42.000] ----------------------------------------------- -Info 71 [00:02:43.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [00:02:44.000] Files (2) +Info 69 [00:02:40.000] ----------------------------------------------- +Info 69 [00:02:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 69 [00:02:42.000] Files (2) -Info 71 [00:02:45.000] ----------------------------------------------- -Info 71 [00:02:46.000] Open files: -Info 71 [00:02:47.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 71 [00:02:48.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 71 [00:02:49.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 71 [00:02:50.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 69 [00:02:43.000] ----------------------------------------------- +Info 69 [00:02:44.000] Open files: +Info 69 [00:02:45.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 69 [00:02:46.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 69 [00:02:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 69 [00:02:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1275,11 +1273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [00:02:51.000] response: +Info 69 [00:02:49.000] response: { "responseRequired": false } -Info 72 [00:02:52.000] request: +Info 70 [00:02:50.000] request: { "seq": 0, "type": "request", @@ -1320,18 +1318,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [00:02:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 74 [00:02:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 74 [00:02:55.000] Files (3) +Info 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) -Info 74 [00:02:56.000] ----------------------------------------------- -Info 74 [00:02:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [00:02:58.000] Files (2) +Info 72 [00:02:54.000] ----------------------------------------------- +Info 72 [00:02:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 72 [00:02:56.000] Files (2) -Info 74 [00:02:59.000] ----------------------------------------------- -Info 74 [00:03:00.000] Open files: -Info 74 [00:03:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [00:03:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:02:57.000] ----------------------------------------------- +Info 72 [00:02:58.000] Open files: +Info 72 [00:02:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 72 [00:03:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1366,11 +1364,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:03:03.000] response: +Info 72 [00:03:01.000] response: { "responseRequired": false } -Info 75 [00:03:04.000] request: +Info 73 [00:03:02.000] request: { "seq": 0, "type": "request", @@ -1413,16 +1411,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 77 [00:03:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 77 [00:03:07.000] Files (3) +Info 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) -Info 77 [00:03:08.000] ----------------------------------------------- -Info 77 [00:03:09.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [00:03:10.000] Files (2) +Info 75 [00:03:06.000] ----------------------------------------------- +Info 75 [00:03:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 75 [00:03:08.000] Files (2) -Info 77 [00:03:11.000] ----------------------------------------------- -Info 77 [00:03:12.000] Open files: +Info 75 [00:03:09.000] ----------------------------------------------- +Info 75 [00:03:10.000] Open files: After request PolledWatches:: @@ -1459,11 +1457,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:03:13.000] response: +Info 75 [00:03:11.000] response: { "responseRequired": false } -Info 78 [00:03:14.000] request: +Info 76 [00:03:12.000] request: { "seq": 0, "type": "request", @@ -1508,12 +1506,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 80 [00:03:16.000] Search path: /user/username/projects/myproject/random -Info 81 [00:03:17.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 82 [00:03:18.000] `remove Project:: -Info 83 [00:03:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 84 [00:03:20.000] Files (3) +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 +Info 80 [00:03:16.000] `remove Project:: +Info 81 [00:03:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 82 [00:03:18.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -1526,28 +1524,28 @@ Info 84 [00:03:20.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 85 [00:03:21.000] ----------------------------------------------- -Info 86 [00:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 87 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 88 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 89 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 90 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 91 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 92 [00:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 93 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 94 [00:03:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 95 [00:03:31.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 96 [00:03:32.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 97 [00:03:33.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 98 [00:03:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 99 [00:03:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 100 [00:03:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 100 [00:03:37.000] Files (2) - -Info 100 [00:03:38.000] ----------------------------------------------- -Info 100 [00:03:39.000] Open files: -Info 100 [00:03:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 100 [00:03:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 83 [00:03:19.000] ----------------------------------------------- +Info 84 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 85 [00:03:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 86 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 87 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 88 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 89 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 90 [00:03:26.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 91 [00:03:27.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 92 [00:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 93 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 94 [00:03:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 95 [00:03:31.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 96 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 97 [00:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 98 [00:03:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 98 [00:03:35.000] Files (2) + +Info 98 [00:03:36.000] ----------------------------------------------- +Info 98 [00:03:37.000] Open files: +Info 98 [00:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 98 [00:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1566,7 +1564,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:42.000] response: +Info 98 [00:03:40.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-deleted.js index 52d787f1f1858..8ac643241dd41 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,11 +335,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +347,16 @@ Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:52.000] Files (2) +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +366,20 @@ Info 46 [00:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:53.000] ----------------------------------------------- -Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:55.000] Files (3) +Info 45 [00:01:51.000] ----------------------------------------------- +Info 46 [00:01:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:53.000] Files (3) -Info 48 [00:01:56.000] ----------------------------------------------- -Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:01:58.000] Files (2) +Info 46 [00:01:54.000] ----------------------------------------------- +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (2) -Info 48 [00:01:59.000] ----------------------------------------------- -Info 48 [00:02:00.000] Open files: -Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Open files: +Info 46 [00:01:59.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +412,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:05.000] response: +Info 46 [00:02:03.000] response: { "responseRequired": false } -Info 49 [00:02:06.000] request: +Info 47 [00:02:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +491,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:07.000] response: +Info 48 [00:02:05.000] response: { "response": { "definitions": [ @@ -530,10 +528,10 @@ Info 50 [00:02:07.000] response: }, "responseRequired": true } -Info 51 [00:02:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 52 [00:02:10.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 53 [00:02:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 54 [00:02:12.000] request: +Info 49 [00:02:07.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 50 [00:02:08.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 51 [00:02:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 52 [00:02:10.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -609,7 +607,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:13.000] response: +Info 53 [00:02:11.000] response: { "response": { "definitions": [ @@ -646,7 +644,7 @@ Info 55 [00:02:13.000] response: }, "responseRequired": true } -Info 56 [00:02:14.000] request: +Info 54 [00:02:12.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -721,7 +719,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:15.000] response: +Info 55 [00:02:13.000] response: { "response": { "definitions": [ @@ -758,7 +756,7 @@ Info 57 [00:02:15.000] response: }, "responseRequired": true } -Info 58 [00:02:16.000] request: +Info 56 [00:02:14.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -833,7 +831,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:17.000] response: +Info 57 [00:02:15.000] response: { "response": { "definitions": [ @@ -870,7 +868,7 @@ Info 59 [00:02:17.000] response: }, "responseRequired": true } -Info 60 [00:02:18.000] request: +Info 58 [00:02:16.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -945,7 +943,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:19.000] response: +Info 59 [00:02:17.000] response: { "response": { "definitions": [ @@ -982,7 +980,7 @@ Info 61 [00:02:19.000] response: }, "responseRequired": true } -Info 62 [00:02:20.000] request: +Info 60 [00:02:18.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1057,7 +1055,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:21.000] response: +Info 61 [00:02:19.000] response: { "response": { "definitions": [ @@ -1094,7 +1092,7 @@ Info 63 [00:02:21.000] response: }, "responseRequired": true } -Info 64 [00:02:22.000] request: +Info 62 [00:02:20.000] request: { "seq": 0, "type": "request", @@ -1135,18 +1133,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 66 [00:02:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:02:25.000] Files (3) +Info 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) -Info 66 [00:02:26.000] ----------------------------------------------- -Info 66 [00:02:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:28.000] Files (2) +Info 64 [00:02:24.000] ----------------------------------------------- +Info 64 [00:02:25.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:26.000] Files (2) -Info 66 [00:02:29.000] ----------------------------------------------- -Info 66 [00:02:30.000] Open files: -Info 66 [00:02:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 64 [00:02:27.000] ----------------------------------------------- +Info 64 [00:02:28.000] Open files: +Info 64 [00:02:29.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 64 [00:02:30.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1181,11 +1179,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:33.000] response: +Info 64 [00:02:31.000] response: { "responseRequired": false } -Info 67 [00:02:34.000] request: +Info 65 [00:02:32.000] request: { "seq": 0, "type": "request", @@ -1228,22 +1226,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 69 [00:02:36.000] Search path: /user/username/projects/myproject/random -Info 70 [00:02:37.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 71 [00:02:38.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 71 [00:02:39.000] Files (3) +Info 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 +Info 69 [00:02:36.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 69 [00:02:37.000] Files (3) -Info 71 [00:02:40.000] ----------------------------------------------- -Info 71 [00:02:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [00:02:42.000] Files (2) +Info 69 [00:02:38.000] ----------------------------------------------- +Info 69 [00:02:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 69 [00:02:40.000] Files (2) -Info 71 [00:02:43.000] ----------------------------------------------- -Info 71 [00:02:44.000] Open files: -Info 71 [00:02:45.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 71 [00:02:46.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 71 [00:02:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 71 [00:02:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 69 [00:02:41.000] ----------------------------------------------- +Info 69 [00:02:42.000] Open files: +Info 69 [00:02:43.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 69 [00:02:44.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 69 [00:02:45.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 69 [00:02:46.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1276,11 +1274,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [00:02:49.000] response: +Info 69 [00:02:47.000] response: { "responseRequired": false } -Info 72 [00:02:50.000] request: +Info 70 [00:02:48.000] request: { "seq": 0, "type": "request", @@ -1321,18 +1319,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [00:02:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 74 [00:02:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 74 [00:02:53.000] Files (3) +Info 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) -Info 74 [00:02:54.000] ----------------------------------------------- -Info 74 [00:02:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [00:02:56.000] Files (2) +Info 72 [00:02:52.000] ----------------------------------------------- +Info 72 [00:02:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 72 [00:02:54.000] Files (2) -Info 74 [00:02:57.000] ----------------------------------------------- -Info 74 [00:02:58.000] Open files: -Info 74 [00:02:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 74 [00:03:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 72 [00:02:55.000] ----------------------------------------------- +Info 72 [00:02:56.000] Open files: +Info 72 [00:02:57.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 72 [00:02:58.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1367,11 +1365,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:03:01.000] response: +Info 72 [00:02:59.000] response: { "responseRequired": false } -Info 75 [00:03:02.000] request: +Info 73 [00:03:00.000] request: { "seq": 0, "type": "request", @@ -1414,16 +1412,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:03:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 77 [00:03:04.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 77 [00:03:05.000] Files (3) +Info 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) -Info 77 [00:03:06.000] ----------------------------------------------- -Info 77 [00:03:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 77 [00:03:08.000] Files (2) +Info 75 [00:03:04.000] ----------------------------------------------- +Info 75 [00:03:05.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 75 [00:03:06.000] Files (2) -Info 77 [00:03:09.000] ----------------------------------------------- -Info 77 [00:03:10.000] Open files: +Info 75 [00:03:07.000] ----------------------------------------------- +Info 75 [00:03:08.000] Open files: After request PolledWatches:: @@ -1460,11 +1458,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:03:11.000] response: +Info 75 [00:03:09.000] response: { "responseRequired": false } -Info 78 [00:03:12.000] request: +Info 76 [00:03:10.000] request: { "seq": 0, "type": "request", @@ -1509,12 +1507,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [00:03:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 80 [00:03:14.000] Search path: /user/username/projects/myproject/random -Info 81 [00:03:15.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 82 [00:03:16.000] `remove Project:: -Info 83 [00:03:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 84 [00:03:18.000] Files (3) +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 +Info 80 [00:03:14.000] `remove Project:: +Info 81 [00:03:15.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 82 [00:03:16.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -1527,28 +1525,28 @@ Info 84 [00:03:18.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 85 [00:03:19.000] ----------------------------------------------- -Info 86 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 87 [00:03:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 88 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 89 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 90 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 91 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 92 [00:03:26.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 93 [00:03:27.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 94 [00:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 95 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 96 [00:03:30.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 97 [00:03:31.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 98 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 99 [00:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 100 [00:03:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 100 [00:03:35.000] Files (2) - -Info 100 [00:03:36.000] ----------------------------------------------- -Info 100 [00:03:37.000] Open files: -Info 100 [00:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 100 [00:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 83 [00:03:17.000] ----------------------------------------------- +Info 84 [00:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 85 [00:03:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 86 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 87 [00:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 88 [00:03:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 89 [00:03:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 90 [00:03:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 91 [00:03:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 92 [00:03:26.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 93 [00:03:27.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 94 [00:03:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 95 [00:03:29.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 96 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 97 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 98 [00:03:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 98 [00:03:33.000] Files (2) + +Info 98 [00:03:34.000] ----------------------------------------------- +Info 98 [00:03:35.000] Open files: +Info 98 [00:03:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 98 [00:03:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1567,7 +1565,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 100 [00:03:40.000] response: +Info 98 [00:03:38.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dts-not-present.js index c6ffddc4cf790..e9f03ddd1c14a 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,9 +214,8 @@ Info 6 [00:01:07.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -227,20 +226,20 @@ Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:26.000] Files (3) +Info 11 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -253,16 +252,16 @@ Info 25 [00:01:26.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:27.000] ----------------------------------------------- -Info 27 [00:01:28.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:31.000] Files (3) +Info 25 [00:01:26.000] ----------------------------------------------- +Info 26 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:30.000] Files (3) -Info 29 [00:01:32.000] ----------------------------------------------- -Info 29 [00:01:33.000] Open files: -Info 29 [00:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:31.000] ----------------------------------------------- +Info 28 [00:01:32.000] Open files: +Info 28 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -289,11 +288,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:36.000] response: +Info 28 [00:01:35.000] response: { "responseRequired": false } -Info 30 [00:01:37.000] request: +Info 29 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -328,11 +327,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:38.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:40.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:42.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -340,17 +339,16 @@ Info 35 [00:01:42.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:53.000] Files (2) +Info 35 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -360,20 +358,20 @@ Info 46 [00:01:53.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:54.000] ----------------------------------------------- -Info 48 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:56.000] Files (3) +Info 45 [00:01:52.000] ----------------------------------------------- +Info 46 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:54.000] Files (3) -Info 48 [00:01:57.000] ----------------------------------------------- -Info 48 [00:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:01:59.000] Files (2) +Info 46 [00:01:55.000] ----------------------------------------------- +Info 46 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:57.000] Files (2) -Info 48 [00:02:00.000] ----------------------------------------------- -Info 48 [00:02:01.000] Open files: -Info 48 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:01:58.000] ----------------------------------------------- +Info 46 [00:01:59.000] Open files: +Info 46 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -406,11 +404,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:06.000] response: +Info 46 [00:02:04.000] response: { "responseRequired": false } -Info 49 [00:02:07.000] request: +Info 47 [00:02:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -485,7 +483,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:08.000] response: +Info 48 [00:02:06.000] response: { "response": { "definitions": [ @@ -522,7 +520,7 @@ Info 50 [00:02:08.000] response: }, "responseRequired": true } -Info 51 [00:02:09.000] request: +Info 49 [00:02:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -597,7 +595,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:10.000] response: +Info 50 [00:02:08.000] response: { "response": { "definitions": [ @@ -634,7 +632,7 @@ Info 52 [00:02:10.000] response: }, "responseRequired": true } -Info 53 [00:02:11.000] request: +Info 51 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -709,7 +707,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:12.000] response: +Info 52 [00:02:10.000] response: { "response": { "definitions": [ @@ -746,7 +744,7 @@ Info 54 [00:02:12.000] response: }, "responseRequired": true } -Info 55 [00:02:13.000] request: +Info 53 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -821,7 +819,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:14.000] response: +Info 54 [00:02:12.000] response: { "response": { "definitions": [ @@ -858,7 +856,7 @@ Info 56 [00:02:14.000] response: }, "responseRequired": true } -Info 57 [00:02:15.000] request: +Info 55 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -933,7 +931,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:16.000] response: +Info 56 [00:02:14.000] response: { "response": { "definitions": [ @@ -970,7 +968,7 @@ Info 58 [00:02:16.000] response: }, "responseRequired": true } -Info 59 [00:02:17.000] request: +Info 57 [00:02:15.000] request: { "seq": 0, "type": "request", @@ -1011,18 +1009,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 61 [00:02:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 61 [00:02:20.000] Files (3) +Info 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) -Info 61 [00:02:21.000] ----------------------------------------------- -Info 61 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [00:02:23.000] Files (2) +Info 59 [00:02:19.000] ----------------------------------------------- +Info 59 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 59 [00:02:21.000] Files (2) -Info 61 [00:02:24.000] ----------------------------------------------- -Info 61 [00:02:25.000] Open files: -Info 61 [00:02:26.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 61 [00:02:27.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 59 [00:02:22.000] ----------------------------------------------- +Info 59 [00:02:23.000] Open files: +Info 59 [00:02:24.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 59 [00:02:25.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1057,11 +1055,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:28.000] response: +Info 59 [00:02:26.000] response: { "responseRequired": false } -Info 62 [00:02:29.000] request: +Info 60 [00:02:27.000] request: { "seq": 0, "type": "request", @@ -1104,22 +1102,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 64 [00:02:31.000] Search path: /user/username/projects/myproject/random -Info 65 [00:02:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 66 [00:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:02:34.000] Files (3) +Info 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 +Info 64 [00:02:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 64 [00:02:32.000] Files (3) -Info 66 [00:02:35.000] ----------------------------------------------- -Info 66 [00:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:37.000] Files (2) +Info 64 [00:02:33.000] ----------------------------------------------- +Info 64 [00:02:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:35.000] Files (2) -Info 66 [00:02:38.000] ----------------------------------------------- -Info 66 [00:02:39.000] Open files: -Info 66 [00:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [00:02:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [00:02:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:36.000] ----------------------------------------------- +Info 64 [00:02:37.000] Open files: +Info 64 [00:02:38.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 64 [00:02:39.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 64 [00:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 64 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1152,11 +1150,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:44.000] response: +Info 64 [00:02:42.000] response: { "responseRequired": false } -Info 67 [00:02:45.000] request: +Info 65 [00:02:43.000] request: { "seq": 0, "type": "request", @@ -1197,18 +1195,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 69 [00:02:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 69 [00:02:48.000] Files (3) +Info 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) -Info 69 [00:02:49.000] ----------------------------------------------- -Info 69 [00:02:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 69 [00:02:51.000] Files (2) +Info 67 [00:02:47.000] ----------------------------------------------- +Info 67 [00:02:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 67 [00:02:49.000] Files (2) -Info 69 [00:02:52.000] ----------------------------------------------- -Info 69 [00:02:53.000] Open files: -Info 69 [00:02:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 69 [00:02:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 67 [00:02:50.000] ----------------------------------------------- +Info 67 [00:02:51.000] Open files: +Info 67 [00:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 67 [00:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1243,11 +1241,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:02:56.000] response: +Info 67 [00:02:54.000] response: { "responseRequired": false } -Info 70 [00:02:57.000] request: +Info 68 [00:02:55.000] request: { "seq": 0, "type": "request", @@ -1290,16 +1288,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [00:02:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 72 [00:02:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 72 [00:03:00.000] Files (3) +Info 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) -Info 72 [00:03:01.000] ----------------------------------------------- -Info 72 [00:03:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 72 [00:03:03.000] Files (2) +Info 70 [00:02:59.000] ----------------------------------------------- +Info 70 [00:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 70 [00:03:01.000] Files (2) -Info 72 [00:03:04.000] ----------------------------------------------- -Info 72 [00:03:05.000] Open files: +Info 70 [00:03:02.000] ----------------------------------------------- +Info 70 [00:03:03.000] Open files: After request PolledWatches:: @@ -1336,11 +1334,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:03:06.000] response: +Info 70 [00:03:04.000] response: { "responseRequired": false } -Info 73 [00:03:07.000] request: +Info 71 [00:03:05.000] request: { "seq": 0, "type": "request", @@ -1385,12 +1383,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 75 [00:03:09.000] Search path: /user/username/projects/myproject/random -Info 76 [00:03:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 77 [00:03:11.000] `remove Project:: -Info 78 [00:03:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 79 [00:03:13.000] Files (3) +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 +Info 75 [00:03:09.000] `remove Project:: +Info 76 [00:03:10.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 77 [00:03:11.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -1403,28 +1401,28 @@ Info 79 [00:03:13.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 80 [00:03:14.000] ----------------------------------------------- -Info 81 [00:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 82 [00:03:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 83 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 84 [00:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 85 [00:03:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 86 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 87 [00:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 88 [00:03:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 89 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 90 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 91 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 92 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 93 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 94 [00:03:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 95 [00:03:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 95 [00:03:30.000] Files (2) - -Info 95 [00:03:31.000] ----------------------------------------------- -Info 95 [00:03:32.000] Open files: -Info 95 [00:03:33.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 95 [00:03:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 78 [00:03:12.000] ----------------------------------------------- +Info 79 [00:03:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 80 [00:03:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 81 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 82 [00:03:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 83 [00:03:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 84 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 85 [00:03:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 86 [00:03:20.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 87 [00:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 88 [00:03:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 89 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 90 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 91 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 92 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 93 [00:03:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 93 [00:03:28.000] Files (2) + +Info 93 [00:03:29.000] ----------------------------------------------- +Info 93 [00:03:30.000] Open files: +Info 93 [00:03:31.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 93 [00:03:32.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1443,7 +1441,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [00:03:35.000] response: +Info 93 [00:03:33.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-changes-with-timeout-before-request.js index a4c16dd8eb70c..f68392b5c53dc 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,11 +335,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +347,16 @@ Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:52.000] Files (2) +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +366,20 @@ Info 46 [00:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:53.000] ----------------------------------------------- -Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:55.000] Files (3) +Info 45 [00:01:51.000] ----------------------------------------------- +Info 46 [00:01:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:53.000] Files (3) -Info 48 [00:01:56.000] ----------------------------------------------- -Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:01:58.000] Files (2) +Info 46 [00:01:54.000] ----------------------------------------------- +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (2) -Info 48 [00:01:59.000] ----------------------------------------------- -Info 48 [00:02:00.000] Open files: -Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Open files: +Info 46 [00:01:59.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +412,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:05.000] response: +Info 46 [00:02:03.000] response: { "responseRequired": false } -Info 49 [00:02:06.000] request: +Info 47 [00:02:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +491,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:07.000] response: +Info 48 [00:02:05.000] response: { "response": { "definitions": [ @@ -597,7 +595,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [00:02:11.000] request: +Info 49 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -672,7 +670,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:12.000] response: +Info 50 [00:02:10.000] response: { "response": { "definitions": [ @@ -709,7 +707,7 @@ Info 52 [00:02:12.000] response: }, "responseRequired": true } -Info 53 [00:02:13.000] request: +Info 51 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -784,7 +782,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:14.000] response: +Info 52 [00:02:12.000] response: { "response": { "definitions": [ @@ -821,7 +819,7 @@ Info 54 [00:02:14.000] response: }, "responseRequired": true } -Info 55 [00:02:15.000] request: +Info 53 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -896,7 +894,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:16.000] response: +Info 54 [00:02:14.000] response: { "response": { "definitions": [ @@ -933,7 +931,7 @@ Info 56 [00:02:16.000] response: }, "responseRequired": true } -Info 57 [00:02:17.000] request: +Info 55 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1008,7 +1006,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:18.000] response: +Info 56 [00:02:16.000] response: { "response": { "definitions": [ @@ -1045,7 +1043,7 @@ Info 58 [00:02:18.000] response: }, "responseRequired": true } -Info 59 [00:02:19.000] request: +Info 57 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1120,7 +1118,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:20.000] response: +Info 58 [00:02:18.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-changes.js index cce687c6bad61..fae262ea7572e 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,11 +335,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +347,16 @@ Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:52.000] Files (2) +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +366,20 @@ Info 46 [00:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:53.000] ----------------------------------------------- -Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:55.000] Files (3) +Info 45 [00:01:51.000] ----------------------------------------------- +Info 46 [00:01:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:53.000] Files (3) -Info 48 [00:01:56.000] ----------------------------------------------- -Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:01:58.000] Files (2) +Info 46 [00:01:54.000] ----------------------------------------------- +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (2) -Info 48 [00:01:59.000] ----------------------------------------------- -Info 48 [00:02:00.000] Open files: -Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Open files: +Info 46 [00:01:59.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +412,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:05.000] response: +Info 46 [00:02:03.000] response: { "responseRequired": false } -Info 49 [00:02:06.000] request: +Info 47 [00:02:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +491,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:07.000] response: +Info 48 [00:02:05.000] response: { "response": { "definitions": [ @@ -530,7 +528,7 @@ Info 50 [00:02:07.000] response: }, "responseRequired": true } -Info 51 [00:02:11.000] request: +Info 49 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -608,7 +606,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:12.000] response: +Info 50 [00:02:10.000] response: { "response": { "definitions": [ @@ -645,7 +643,7 @@ Info 52 [00:02:12.000] response: }, "responseRequired": true } -Info 53 [00:02:13.000] request: +Info 51 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -720,7 +718,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:14.000] response: +Info 52 [00:02:12.000] response: { "response": { "definitions": [ @@ -757,7 +755,7 @@ Info 54 [00:02:14.000] response: }, "responseRequired": true } -Info 55 [00:02:15.000] request: +Info 53 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -832,7 +830,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:16.000] response: +Info 54 [00:02:14.000] response: { "response": { "definitions": [ @@ -869,7 +867,7 @@ Info 56 [00:02:16.000] response: }, "responseRequired": true } -Info 57 [00:02:17.000] request: +Info 55 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -944,7 +942,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:18.000] response: +Info 56 [00:02:16.000] response: { "response": { "definitions": [ @@ -981,7 +979,7 @@ Info 58 [00:02:18.000] response: }, "responseRequired": true } -Info 59 [00:02:19.000] request: +Info 57 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1056,7 +1054,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:20.000] response: +Info 58 [00:02:18.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-created.js index 94f99895ed602..2d83b82d24127 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,9 +219,8 @@ Info 6 [00:01:07.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -232,20 +231,20 @@ Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:26.000] Files (3) +Info 11 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -258,16 +257,16 @@ Info 25 [00:01:26.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:27.000] ----------------------------------------------- -Info 27 [00:01:28.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:31.000] Files (3) +Info 25 [00:01:26.000] ----------------------------------------------- +Info 26 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:30.000] Files (3) -Info 29 [00:01:32.000] ----------------------------------------------- -Info 29 [00:01:33.000] Open files: -Info 29 [00:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:31.000] ----------------------------------------------- +Info 28 [00:01:32.000] Open files: +Info 28 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -294,11 +293,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:36.000] response: +Info 28 [00:01:35.000] response: { "responseRequired": false } -Info 30 [00:01:37.000] request: +Info 29 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -333,11 +332,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:38.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:40.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:42.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -345,17 +344,16 @@ Info 35 [00:01:42.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:53.000] Files (2) +Info 35 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -365,20 +363,20 @@ Info 46 [00:01:53.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:54.000] ----------------------------------------------- -Info 48 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:56.000] Files (3) +Info 45 [00:01:52.000] ----------------------------------------------- +Info 46 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:54.000] Files (3) -Info 48 [00:01:57.000] ----------------------------------------------- -Info 48 [00:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:01:59.000] Files (2) +Info 46 [00:01:55.000] ----------------------------------------------- +Info 46 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:57.000] Files (2) -Info 48 [00:02:00.000] ----------------------------------------------- -Info 48 [00:02:01.000] Open files: -Info 48 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:01:58.000] ----------------------------------------------- +Info 46 [00:01:59.000] Open files: +Info 46 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -411,11 +409,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:06.000] response: +Info 46 [00:02:04.000] response: { "responseRequired": false } -Info 49 [00:02:07.000] request: +Info 47 [00:02:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -490,7 +488,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:08.000] response: +Info 48 [00:02:06.000] response: { "response": { "definitions": [ @@ -527,9 +525,9 @@ Info 50 [00:02:08.000] response: }, "responseRequired": true } -Info 51 [00:02:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 52 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 53 [00:02:13.000] request: +Info 49 [00:02:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 50 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 51 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -607,7 +605,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:14.000] response: +Info 52 [00:02:12.000] response: { "response": { "definitions": [ @@ -644,7 +642,7 @@ Info 54 [00:02:14.000] response: }, "responseRequired": true } -Info 55 [00:02:15.000] request: +Info 53 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -719,7 +717,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:16.000] response: +Info 54 [00:02:14.000] response: { "response": { "definitions": [ @@ -756,7 +754,7 @@ Info 56 [00:02:16.000] response: }, "responseRequired": true } -Info 57 [00:02:17.000] request: +Info 55 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -831,7 +829,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:18.000] response: +Info 56 [00:02:16.000] response: { "response": { "definitions": [ @@ -868,7 +866,7 @@ Info 58 [00:02:18.000] response: }, "responseRequired": true } -Info 59 [00:02:19.000] request: +Info 57 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -943,7 +941,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:20.000] response: +Info 58 [00:02:18.000] response: { "response": { "definitions": [ @@ -980,7 +978,7 @@ Info 60 [00:02:20.000] response: }, "responseRequired": true } -Info 61 [00:02:21.000] request: +Info 59 [00:02:19.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1055,7 +1053,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [00:02:22.000] response: +Info 60 [00:02:20.000] response: { "response": { "definitions": [ @@ -1092,7 +1090,7 @@ Info 62 [00:02:22.000] response: }, "responseRequired": true } -Info 63 [00:02:23.000] request: +Info 61 [00:02:21.000] request: { "seq": 0, "type": "request", @@ -1133,18 +1131,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 65 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:26.000] Files (3) +Info 62 [00:02:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 63 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:24.000] Files (3) -Info 65 [00:02:27.000] ----------------------------------------------- -Info 65 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:29.000] Files (2) +Info 63 [00:02:25.000] ----------------------------------------------- +Info 63 [00:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:27.000] Files (2) -Info 65 [00:02:30.000] ----------------------------------------------- -Info 65 [00:02:31.000] Open files: -Info 65 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:28.000] ----------------------------------------------- +Info 63 [00:02:29.000] Open files: +Info 63 [00:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1179,11 +1177,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:34.000] response: +Info 63 [00:02:32.000] response: { "responseRequired": false } -Info 66 [00:02:35.000] request: +Info 64 [00:02:33.000] request: { "seq": 0, "type": "request", @@ -1226,22 +1224,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 68 [00:02:37.000] Search path: /user/username/projects/myproject/random -Info 69 [00:02:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 70 [00:02:39.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 70 [00:02:40.000] Files (3) +Info 65 [00:02:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 66 [00:02:35.000] Search path: /user/username/projects/myproject/random +Info 67 [00:02:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 68 [00:02:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 68 [00:02:38.000] Files (3) -Info 70 [00:02:41.000] ----------------------------------------------- -Info 70 [00:02:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 70 [00:02:43.000] Files (2) +Info 68 [00:02:39.000] ----------------------------------------------- +Info 68 [00:02:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 68 [00:02:41.000] Files (2) -Info 70 [00:02:44.000] ----------------------------------------------- -Info 70 [00:02:45.000] Open files: -Info 70 [00:02:46.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 70 [00:02:47.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 70 [00:02:48.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 70 [00:02:49.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 68 [00:02:42.000] ----------------------------------------------- +Info 68 [00:02:43.000] Open files: +Info 68 [00:02:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 68 [00:02:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 68 [00:02:46.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 68 [00:02:47.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1274,11 +1272,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:50.000] response: +Info 68 [00:02:48.000] response: { "responseRequired": false } -Info 71 [00:02:51.000] request: +Info 69 [00:02:49.000] request: { "seq": 0, "type": "request", @@ -1319,18 +1317,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 73 [00:02:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 73 [00:02:54.000] Files (3) +Info 70 [00:02:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 71 [00:02:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 71 [00:02:52.000] Files (3) -Info 73 [00:02:55.000] ----------------------------------------------- -Info 73 [00:02:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 73 [00:02:57.000] Files (2) +Info 71 [00:02:53.000] ----------------------------------------------- +Info 71 [00:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 71 [00:02:55.000] Files (2) -Info 73 [00:02:58.000] ----------------------------------------------- -Info 73 [00:02:59.000] Open files: -Info 73 [00:03:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 73 [00:03:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:56.000] ----------------------------------------------- +Info 71 [00:02:57.000] Open files: +Info 71 [00:02:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 71 [00:02:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1365,11 +1363,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [00:03:02.000] response: +Info 71 [00:03:00.000] response: { "responseRequired": false } -Info 74 [00:03:03.000] request: +Info 72 [00:03:01.000] request: { "seq": 0, "type": "request", @@ -1412,16 +1410,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 75 [00:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 76 [00:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 76 [00:03:06.000] Files (3) +Info 73 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 74 [00:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 74 [00:03:04.000] Files (3) -Info 76 [00:03:07.000] ----------------------------------------------- -Info 76 [00:03:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 76 [00:03:09.000] Files (2) +Info 74 [00:03:05.000] ----------------------------------------------- +Info 74 [00:03:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 74 [00:03:07.000] Files (2) -Info 76 [00:03:10.000] ----------------------------------------------- -Info 76 [00:03:11.000] Open files: +Info 74 [00:03:08.000] ----------------------------------------------- +Info 74 [00:03:09.000] Open files: After request PolledWatches:: @@ -1458,11 +1456,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:03:12.000] response: +Info 74 [00:03:10.000] response: { "responseRequired": false } -Info 77 [00:03:13.000] request: +Info 75 [00:03:11.000] request: { "seq": 0, "type": "request", @@ -1507,12 +1505,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [00:03:14.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 79 [00:03:15.000] Search path: /user/username/projects/myproject/random -Info 80 [00:03:16.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 81 [00:03:17.000] `remove Project:: -Info 82 [00:03:18.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 83 [00:03:19.000] Files (3) +Info 76 [00:03:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 77 [00:03:13.000] Search path: /user/username/projects/myproject/random +Info 78 [00:03:14.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 79 [00:03:15.000] `remove Project:: +Info 80 [00:03:16.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 81 [00:03:17.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -1525,28 +1523,28 @@ Info 83 [00:03:19.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 84 [00:03:20.000] ----------------------------------------------- -Info 85 [00:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 86 [00:03:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 87 [00:03:23.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 88 [00:03:24.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 89 [00:03:25.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 90 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 91 [00:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 92 [00:03:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 93 [00:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 94 [00:03:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 95 [00:03:31.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 96 [00:03:32.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 97 [00:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 98 [00:03:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 99 [00:03:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 99 [00:03:36.000] Files (2) - -Info 99 [00:03:37.000] ----------------------------------------------- -Info 99 [00:03:38.000] Open files: -Info 99 [00:03:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 99 [00:03:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 82 [00:03:18.000] ----------------------------------------------- +Info 83 [00:03:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 84 [00:03:20.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 85 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 86 [00:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 87 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 88 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 89 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 90 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 91 [00:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 92 [00:03:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 93 [00:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 94 [00:03:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 95 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 96 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 97 [00:03:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 97 [00:03:34.000] Files (2) + +Info 97 [00:03:35.000] ----------------------------------------------- +Info 97 [00:03:36.000] Open files: +Info 97 [00:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 97 [00:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1565,7 +1563,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [00:03:41.000] response: +Info 97 [00:03:39.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-deleted.js index 3fc79ef153257..511f557a447b5 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,11 +335,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +347,16 @@ Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:52.000] Files (2) +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +366,20 @@ Info 46 [00:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:53.000] ----------------------------------------------- -Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:55.000] Files (3) +Info 45 [00:01:51.000] ----------------------------------------------- +Info 46 [00:01:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:53.000] Files (3) -Info 48 [00:01:56.000] ----------------------------------------------- -Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:01:58.000] Files (2) +Info 46 [00:01:54.000] ----------------------------------------------- +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (2) -Info 48 [00:01:59.000] ----------------------------------------------- -Info 48 [00:02:00.000] Open files: -Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Open files: +Info 46 [00:01:59.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +412,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:05.000] response: +Info 46 [00:02:03.000] response: { "responseRequired": false } -Info 49 [00:02:06.000] request: +Info 47 [00:02:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +491,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:07.000] response: +Info 48 [00:02:05.000] response: { "response": { "definitions": [ @@ -530,9 +528,9 @@ Info 50 [00:02:07.000] response: }, "responseRequired": true } -Info 51 [00:02:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 52 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 53 [00:02:11.000] request: +Info 49 [00:02:07.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 50 [00:02:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 51 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -608,7 +606,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:12.000] response: +Info 52 [00:02:10.000] response: { "response": { "definitions": [ @@ -645,7 +643,7 @@ Info 54 [00:02:12.000] response: }, "responseRequired": true } -Info 55 [00:02:13.000] request: +Info 53 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -720,7 +718,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:14.000] response: +Info 54 [00:02:12.000] response: { "response": { "definitions": [ @@ -757,7 +755,7 @@ Info 56 [00:02:14.000] response: }, "responseRequired": true } -Info 57 [00:02:15.000] request: +Info 55 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -832,7 +830,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:16.000] response: +Info 56 [00:02:14.000] response: { "response": { "definitions": [ @@ -869,7 +867,7 @@ Info 58 [00:02:16.000] response: }, "responseRequired": true } -Info 59 [00:02:17.000] request: +Info 57 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -944,7 +942,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:18.000] response: +Info 58 [00:02:16.000] response: { "response": { "definitions": [ @@ -981,7 +979,7 @@ Info 60 [00:02:18.000] response: }, "responseRequired": true } -Info 61 [00:02:19.000] request: +Info 59 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1056,7 +1054,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [00:02:20.000] response: +Info 60 [00:02:18.000] response: { "response": { "definitions": [ @@ -1093,7 +1091,7 @@ Info 62 [00:02:20.000] response: }, "responseRequired": true } -Info 63 [00:02:21.000] request: +Info 61 [00:02:19.000] request: { "seq": 0, "type": "request", @@ -1134,18 +1132,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 65 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:24.000] Files (3) +Info 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) -Info 65 [00:02:25.000] ----------------------------------------------- -Info 65 [00:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:27.000] Files (2) +Info 63 [00:02:23.000] ----------------------------------------------- +Info 63 [00:02:24.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:25.000] Files (2) -Info 65 [00:02:28.000] ----------------------------------------------- -Info 65 [00:02:29.000] Open files: -Info 65 [00:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:26.000] ----------------------------------------------- +Info 63 [00:02:27.000] Open files: +Info 63 [00:02:28.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:29.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1180,11 +1178,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:32.000] response: +Info 63 [00:02:30.000] response: { "responseRequired": false } -Info 66 [00:02:33.000] request: +Info 64 [00:02:31.000] request: { "seq": 0, "type": "request", @@ -1227,22 +1225,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 68 [00:02:35.000] Search path: /user/username/projects/myproject/random -Info 69 [00:02:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 70 [00:02:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 70 [00:02:38.000] Files (3) +Info 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 +Info 68 [00:02:35.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 68 [00:02:36.000] Files (3) -Info 70 [00:02:39.000] ----------------------------------------------- -Info 70 [00:02:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 70 [00:02:41.000] Files (2) +Info 68 [00:02:37.000] ----------------------------------------------- +Info 68 [00:02:38.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 68 [00:02:39.000] Files (2) -Info 70 [00:02:42.000] ----------------------------------------------- -Info 70 [00:02:43.000] Open files: -Info 70 [00:02:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 70 [00:02:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 70 [00:02:46.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 70 [00:02:47.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 68 [00:02:40.000] ----------------------------------------------- +Info 68 [00:02:41.000] Open files: +Info 68 [00:02:42.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 68 [00:02:43.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 68 [00:02:44.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 68 [00:02:45.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1275,11 +1273,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:48.000] response: +Info 68 [00:02:46.000] response: { "responseRequired": false } -Info 71 [00:02:49.000] request: +Info 69 [00:02:47.000] request: { "seq": 0, "type": "request", @@ -1320,18 +1318,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 73 [00:02:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 73 [00:02:52.000] Files (3) +Info 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) -Info 73 [00:02:53.000] ----------------------------------------------- -Info 73 [00:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 73 [00:02:55.000] Files (2) +Info 71 [00:02:51.000] ----------------------------------------------- +Info 71 [00:02:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 71 [00:02:53.000] Files (2) -Info 73 [00:02:56.000] ----------------------------------------------- -Info 73 [00:02:57.000] Open files: -Info 73 [00:02:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 73 [00:02:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 71 [00:02:54.000] ----------------------------------------------- +Info 71 [00:02:55.000] Open files: +Info 71 [00:02:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 71 [00:02:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1366,11 +1364,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [00:03:00.000] response: +Info 71 [00:02:58.000] response: { "responseRequired": false } -Info 74 [00:03:01.000] request: +Info 72 [00:02:59.000] request: { "seq": 0, "type": "request", @@ -1413,16 +1411,16 @@ FsWatchesRecursive:: /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/main/tsconfig.json' (Configured) -Info 76 [00:03:04.000] Files (3) +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) -Info 76 [00:03:05.000] ----------------------------------------------- -Info 76 [00:03:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 76 [00:03:07.000] Files (2) +Info 74 [00:03:03.000] ----------------------------------------------- +Info 74 [00:03:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 74 [00:03:05.000] Files (2) -Info 76 [00:03:08.000] ----------------------------------------------- -Info 76 [00:03:09.000] Open files: +Info 74 [00:03:06.000] ----------------------------------------------- +Info 74 [00:03:07.000] Open files: After request PolledWatches:: @@ -1459,11 +1457,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:03:10.000] response: +Info 74 [00:03:08.000] response: { "responseRequired": false } -Info 77 [00:03:11.000] request: +Info 75 [00:03:09.000] request: { "seq": 0, "type": "request", @@ -1508,12 +1506,12 @@ FsWatchesRecursive:: /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 -Info 81 [00:03:15.000] `remove Project:: -Info 82 [00:03:16.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 83 [00:03:17.000] Files (3) +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 +Info 79 [00:03:13.000] `remove Project:: +Info 80 [00:03:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 81 [00:03:15.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -1526,28 +1524,28 @@ Info 83 [00:03:17.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 84 [00:03:18.000] ----------------------------------------------- -Info 85 [00:03:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 86 [00:03:20.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 87 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 88 [00:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 89 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 90 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 91 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 92 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 93 [00:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 94 [00:03:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 95 [00:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 96 [00:03:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 97 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 98 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 99 [00:03:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 99 [00:03:34.000] Files (2) - -Info 99 [00:03:35.000] ----------------------------------------------- -Info 99 [00:03:36.000] Open files: -Info 99 [00:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 99 [00:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 82 [00:03:16.000] ----------------------------------------------- +Info 83 [00:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 84 [00:03:18.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 85 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 86 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 87 [00:03:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 88 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 89 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 90 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 91 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 92 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 93 [00:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 94 [00:03:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 95 [00:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 96 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 97 [00:03:31.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 97 [00:03:32.000] Files (2) + +Info 97 [00:03:33.000] ----------------------------------------------- +Info 97 [00:03:34.000] Open files: +Info 97 [00:03:35.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 97 [00:03:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1566,7 +1564,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [00:03:39.000] response: +Info 97 [00:03:37.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-dtsMap-not-present.js index 33e9329179bac..07311c9dd16cb 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,9 +219,8 @@ Info 6 [00:01:07.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -232,20 +231,20 @@ Info 11 [00:01:12.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:26.000] Files (3) +Info 11 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:25.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -258,16 +257,16 @@ Info 25 [00:01:26.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:27.000] ----------------------------------------------- -Info 27 [00:01:28.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:29.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:31.000] Files (3) +Info 25 [00:01:26.000] ----------------------------------------------- +Info 26 [00:01:27.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:30.000] Files (3) -Info 29 [00:01:32.000] ----------------------------------------------- -Info 29 [00:01:33.000] Open files: -Info 29 [00:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:31.000] ----------------------------------------------- +Info 28 [00:01:32.000] Open files: +Info 28 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -294,11 +293,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:36.000] response: +Info 28 [00:01:35.000] response: { "responseRequired": false } -Info 30 [00:01:37.000] request: +Info 29 [00:01:36.000] request: { "seq": 0, "type": "request", @@ -333,11 +332,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:38.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:39.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:40.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:42.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -345,17 +344,16 @@ Info 35 [00:01:42.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:53.000] Files (2) +Info 35 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:49.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:51.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -365,20 +363,20 @@ Info 46 [00:01:53.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:54.000] ----------------------------------------------- -Info 48 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:56.000] Files (3) +Info 45 [00:01:52.000] ----------------------------------------------- +Info 46 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:54.000] Files (3) -Info 48 [00:01:57.000] ----------------------------------------------- -Info 48 [00:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:01:59.000] Files (2) +Info 46 [00:01:55.000] ----------------------------------------------- +Info 46 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:57.000] Files (2) -Info 48 [00:02:00.000] ----------------------------------------------- -Info 48 [00:02:01.000] Open files: -Info 48 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:01:58.000] ----------------------------------------------- +Info 46 [00:01:59.000] Open files: +Info 46 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -411,11 +409,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:06.000] response: +Info 46 [00:02:04.000] response: { "responseRequired": false } -Info 49 [00:02:07.000] request: +Info 47 [00:02:05.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -490,7 +488,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:08.000] response: +Info 48 [00:02:06.000] response: { "response": { "definitions": [ @@ -527,7 +525,7 @@ Info 50 [00:02:08.000] response: }, "responseRequired": true } -Info 51 [00:02:09.000] request: +Info 49 [00:02:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -602,7 +600,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:10.000] response: +Info 50 [00:02:08.000] response: { "response": { "definitions": [ @@ -639,7 +637,7 @@ Info 52 [00:02:10.000] response: }, "responseRequired": true } -Info 53 [00:02:11.000] request: +Info 51 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -714,7 +712,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:12.000] response: +Info 52 [00:02:10.000] response: { "response": { "definitions": [ @@ -751,7 +749,7 @@ Info 54 [00:02:12.000] response: }, "responseRequired": true } -Info 55 [00:02:13.000] request: +Info 53 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -826,7 +824,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:14.000] response: +Info 54 [00:02:12.000] response: { "response": { "definitions": [ @@ -863,7 +861,7 @@ Info 56 [00:02:14.000] response: }, "responseRequired": true } -Info 57 [00:02:15.000] request: +Info 55 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -938,7 +936,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:16.000] response: +Info 56 [00:02:14.000] response: { "response": { "definitions": [ @@ -975,7 +973,7 @@ Info 58 [00:02:16.000] response: }, "responseRequired": true } -Info 59 [00:02:17.000] request: +Info 57 [00:02:15.000] request: { "seq": 0, "type": "request", @@ -1016,18 +1014,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 61 [00:02:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 61 [00:02:20.000] Files (3) +Info 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) -Info 61 [00:02:21.000] ----------------------------------------------- -Info 61 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [00:02:23.000] Files (2) +Info 59 [00:02:19.000] ----------------------------------------------- +Info 59 [00:02:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 59 [00:02:21.000] Files (2) -Info 61 [00:02:24.000] ----------------------------------------------- -Info 61 [00:02:25.000] Open files: -Info 61 [00:02:26.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 61 [00:02:27.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 59 [00:02:22.000] ----------------------------------------------- +Info 59 [00:02:23.000] Open files: +Info 59 [00:02:24.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 59 [00:02:25.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1062,11 +1060,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:28.000] response: +Info 59 [00:02:26.000] response: { "responseRequired": false } -Info 62 [00:02:29.000] request: +Info 60 [00:02:27.000] request: { "seq": 0, "type": "request", @@ -1109,22 +1107,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 64 [00:02:31.000] Search path: /user/username/projects/myproject/random -Info 65 [00:02:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 66 [00:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:02:34.000] Files (3) +Info 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 +Info 64 [00:02:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 64 [00:02:32.000] Files (3) -Info 66 [00:02:35.000] ----------------------------------------------- -Info 66 [00:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:37.000] Files (2) +Info 64 [00:02:33.000] ----------------------------------------------- +Info 64 [00:02:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:35.000] Files (2) -Info 66 [00:02:38.000] ----------------------------------------------- -Info 66 [00:02:39.000] Open files: -Info 66 [00:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [00:02:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [00:02:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:36.000] ----------------------------------------------- +Info 64 [00:02:37.000] Open files: +Info 64 [00:02:38.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 64 [00:02:39.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 64 [00:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 64 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1157,11 +1155,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:44.000] response: +Info 64 [00:02:42.000] response: { "responseRequired": false } -Info 67 [00:02:45.000] request: +Info 65 [00:02:43.000] request: { "seq": 0, "type": "request", @@ -1202,18 +1200,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 69 [00:02:47.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 69 [00:02:48.000] Files (3) +Info 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) -Info 69 [00:02:49.000] ----------------------------------------------- -Info 69 [00:02:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 69 [00:02:51.000] Files (2) +Info 67 [00:02:47.000] ----------------------------------------------- +Info 67 [00:02:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 67 [00:02:49.000] Files (2) -Info 69 [00:02:52.000] ----------------------------------------------- -Info 69 [00:02:53.000] Open files: -Info 69 [00:02:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 69 [00:02:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 67 [00:02:50.000] ----------------------------------------------- +Info 67 [00:02:51.000] Open files: +Info 67 [00:02:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 67 [00:02:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1248,11 +1246,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:02:56.000] response: +Info 67 [00:02:54.000] response: { "responseRequired": false } -Info 70 [00:02:57.000] request: +Info 68 [00:02:55.000] request: { "seq": 0, "type": "request", @@ -1295,16 +1293,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [00:02:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 72 [00:02:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 72 [00:03:00.000] Files (3) +Info 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) -Info 72 [00:03:01.000] ----------------------------------------------- -Info 72 [00:03:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 72 [00:03:03.000] Files (2) +Info 70 [00:02:59.000] ----------------------------------------------- +Info 70 [00:03:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 70 [00:03:01.000] Files (2) -Info 72 [00:03:04.000] ----------------------------------------------- -Info 72 [00:03:05.000] Open files: +Info 70 [00:03:02.000] ----------------------------------------------- +Info 70 [00:03:03.000] Open files: After request PolledWatches:: @@ -1341,11 +1339,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:03:06.000] response: +Info 70 [00:03:04.000] response: { "responseRequired": false } -Info 73 [00:03:07.000] request: +Info 71 [00:03:05.000] request: { "seq": 0, "type": "request", @@ -1390,12 +1388,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 75 [00:03:09.000] Search path: /user/username/projects/myproject/random -Info 76 [00:03:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 77 [00:03:11.000] `remove Project:: -Info 78 [00:03:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 79 [00:03:13.000] Files (3) +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 +Info 75 [00:03:09.000] `remove Project:: +Info 76 [00:03:10.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 77 [00:03:11.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -1408,28 +1406,28 @@ Info 79 [00:03:13.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 80 [00:03:14.000] ----------------------------------------------- -Info 81 [00:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 82 [00:03:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 83 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 84 [00:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 85 [00:03:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 86 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 87 [00:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 88 [00:03:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 89 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 90 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 91 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 92 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 93 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 94 [00:03:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 95 [00:03:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 95 [00:03:30.000] Files (2) - -Info 95 [00:03:31.000] ----------------------------------------------- -Info 95 [00:03:32.000] Open files: -Info 95 [00:03:33.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 95 [00:03:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 78 [00:03:12.000] ----------------------------------------------- +Info 79 [00:03:13.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 80 [00:03:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 81 [00:03:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 82 [00:03:16.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 83 [00:03:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 84 [00:03:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 85 [00:03:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 86 [00:03:20.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 87 [00:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 88 [00:03:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 89 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 90 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 91 [00:03:25.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 92 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 93 [00:03:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 93 [00:03:28.000] Files (2) + +Info 93 [00:03:29.000] ----------------------------------------------- +Info 93 [00:03:30.000] Open files: +Info 93 [00:03:31.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 93 [00:03:32.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1448,7 +1446,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [00:03:35.000] response: +Info 93 [00:03:33.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-source-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-source-changes-with-timeout-before-request.js index d76bb44e6ac96..c375aef4d0eab 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,11 +335,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +347,16 @@ Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:52.000] Files (2) +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +366,20 @@ Info 46 [00:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:53.000] ----------------------------------------------- -Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:55.000] Files (3) +Info 45 [00:01:51.000] ----------------------------------------------- +Info 46 [00:01:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:53.000] Files (3) -Info 48 [00:01:56.000] ----------------------------------------------- -Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:01:58.000] Files (2) +Info 46 [00:01:54.000] ----------------------------------------------- +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (2) -Info 48 [00:01:59.000] ----------------------------------------------- -Info 48 [00:02:00.000] Open files: -Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Open files: +Info 46 [00:01:59.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +412,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:05.000] response: +Info 46 [00:02:03.000] response: { "responseRequired": false } -Info 49 [00:02:06.000] request: +Info 47 [00:02:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +491,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:07.000] response: +Info 48 [00:02:05.000] response: { "response": { "definitions": [ @@ -530,10 +528,10 @@ Info 50 [00:02:07.000] response: }, "responseRequired": true } -Info 51 [00:02:11.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/FnS.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 52 [00:02:12.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 53 [00:02:13.000] Scheduled: *ensureProjectForOpenFiles* -Info 54 [00:02:14.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/FnS.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 49 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/FnS.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:10.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 51 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 52 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/FnS.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/dependency/FnS.ts] function fooBar() { } @@ -575,39 +573,39 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:15.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 57 [00:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 58 [00:02:18.000] Different program with same set of files -Info 59 [00:02:19.000] Running: *ensureProjectForOpenFiles* -Info 60 [00:02:20.000] Before ensureProjectForOpenFiles: -Info 61 [00:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 61 [00:02:22.000] Files (3) - -Info 61 [00:02:23.000] ----------------------------------------------- -Info 61 [00:02:24.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [00:02:25.000] Files (2) - -Info 61 [00:02:26.000] ----------------------------------------------- -Info 61 [00:02:27.000] Open files: -Info 61 [00:02:28.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 61 [00:02:29.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 61 [00:02:30.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 61 [00:02:31.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 61 [00:02:32.000] After ensureProjectForOpenFiles: -Info 62 [00:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 62 [00:02:34.000] Files (3) - -Info 62 [00:02:35.000] ----------------------------------------------- -Info 62 [00:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 62 [00:02:37.000] Files (2) - -Info 62 [00:02:38.000] ----------------------------------------------- -Info 62 [00:02:39.000] Open files: -Info 62 [00:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 62 [00:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 62 [00:02:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 62 [00:02:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 56 [00:02:16.000] Different program with same set of files +Info 57 [00:02:17.000] Running: *ensureProjectForOpenFiles* +Info 58 [00:02:18.000] Before ensureProjectForOpenFiles: +Info 59 [00:02:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 59 [00:02:20.000] Files (3) + +Info 59 [00:02:21.000] ----------------------------------------------- +Info 59 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 59 [00:02:23.000] Files (2) + +Info 59 [00:02:24.000] ----------------------------------------------- +Info 59 [00:02:25.000] Open files: +Info 59 [00:02:26.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 59 [00:02:27.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 59 [00:02:28.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 59 [00:02:29.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 59 [00:02:30.000] After ensureProjectForOpenFiles: +Info 60 [00:02:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 60 [00:02:32.000] Files (3) + +Info 60 [00:02:33.000] ----------------------------------------------- +Info 60 [00:02:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:35.000] Files (2) + +Info 60 [00:02:36.000] ----------------------------------------------- +Info 60 [00:02:37.000] Open files: +Info 60 [00:02:38.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 60 [00:02:39.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 60 [00:02:40.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 60 [00:02:41.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -640,7 +638,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [00:02:44.000] request: +Info 60 [00:02:42.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -715,7 +713,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:45.000] response: +Info 61 [00:02:43.000] response: { "response": { "definitions": [ @@ -752,7 +750,7 @@ Info 63 [00:02:45.000] response: }, "responseRequired": true } -Info 64 [00:02:46.000] request: +Info 62 [00:02:44.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -827,7 +825,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:47.000] response: +Info 63 [00:02:45.000] response: { "response": { "definitions": [ @@ -864,7 +862,7 @@ Info 65 [00:02:47.000] response: }, "responseRequired": true } -Info 66 [00:02:48.000] request: +Info 64 [00:02:46.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -939,7 +937,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:49.000] response: +Info 65 [00:02:47.000] response: { "response": { "definitions": [ @@ -976,7 +974,7 @@ Info 67 [00:02:49.000] response: }, "responseRequired": true } -Info 68 [00:02:50.000] request: +Info 66 [00:02:48.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1051,7 +1049,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:02:51.000] response: +Info 67 [00:02:49.000] response: { "response": { "definitions": [ @@ -1088,7 +1086,7 @@ Info 69 [00:02:51.000] response: }, "responseRequired": true } -Info 70 [00:02:52.000] request: +Info 68 [00:02:50.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1163,7 +1161,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [00:02:53.000] response: +Info 69 [00:02:51.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-source-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/dependency-source-changes.js index a25f36eb318c3..a5b3ec8b24009 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,11 +335,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +347,16 @@ Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:52.000] Files (2) +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +366,20 @@ Info 46 [00:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:53.000] ----------------------------------------------- -Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:55.000] Files (3) +Info 45 [00:01:51.000] ----------------------------------------------- +Info 46 [00:01:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:53.000] Files (3) -Info 48 [00:01:56.000] ----------------------------------------------- -Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:01:58.000] Files (2) +Info 46 [00:01:54.000] ----------------------------------------------- +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (2) -Info 48 [00:01:59.000] ----------------------------------------------- -Info 48 [00:02:00.000] Open files: -Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Open files: +Info 46 [00:01:59.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +412,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:05.000] response: +Info 46 [00:02:03.000] response: { "responseRequired": false } -Info 49 [00:02:06.000] request: +Info 47 [00:02:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +491,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:07.000] response: +Info 48 [00:02:05.000] response: { "response": { "definitions": [ @@ -530,11 +528,11 @@ Info 50 [00:02:07.000] response: }, "responseRequired": true } -Info 51 [00:02:11.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/FnS.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 52 [00:02:12.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 53 [00:02:13.000] Scheduled: *ensureProjectForOpenFiles* -Info 54 [00:02:14.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/FnS.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 55 [00:02:15.000] request: +Info 49 [00:02:09.000] FileWatcher:: Triggered with /user/username/projects/myproject/dependency/FnS.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 50 [00:02:10.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 51 [00:02:11.000] Scheduled: *ensureProjectForOpenFiles* +Info 52 [00:02:12.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/dependency/FnS.ts 1:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 53 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -586,9 +584,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 57 [00:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 58 [00:02:18.000] Different program with same set of files +Info 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:: @@ -621,7 +619,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:19.000] response: +Info 57 [00:02:17.000] response: { "response": { "definitions": [ @@ -658,7 +656,7 @@ Info 59 [00:02:19.000] response: }, "responseRequired": true } -Info 60 [00:02:20.000] request: +Info 58 [00:02:18.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -733,7 +731,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:21.000] response: +Info 59 [00:02:19.000] response: { "response": { "definitions": [ @@ -770,7 +768,7 @@ Info 61 [00:02:21.000] response: }, "responseRequired": true } -Info 62 [00:02:22.000] request: +Info 60 [00:02:20.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -845,7 +843,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:23.000] response: +Info 61 [00:02:21.000] response: { "response": { "definitions": [ @@ -882,7 +880,7 @@ Info 63 [00:02:23.000] response: }, "responseRequired": true } -Info 64 [00:02:24.000] request: +Info 62 [00:02:22.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -957,7 +955,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:25.000] response: +Info 63 [00:02:23.000] response: { "response": { "definitions": [ @@ -994,7 +992,7 @@ Info 65 [00:02:25.000] response: }, "responseRequired": true } -Info 66 [00:02:26.000] request: +Info 64 [00:02:24.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1069,7 +1067,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:27.000] response: +Info 65 [00:02:25.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/usage-file-changes-with-timeout-before-request.js index e9a783ddf1009..5972d216a99ca 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,11 +335,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +347,16 @@ Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:52.000] Files (2) +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +366,20 @@ Info 46 [00:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:53.000] ----------------------------------------------- -Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:55.000] Files (3) +Info 45 [00:01:51.000] ----------------------------------------------- +Info 46 [00:01:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:53.000] Files (3) -Info 48 [00:01:56.000] ----------------------------------------------- -Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:01:58.000] Files (2) +Info 46 [00:01:54.000] ----------------------------------------------- +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (2) -Info 48 [00:01:59.000] ----------------------------------------------- -Info 48 [00:02:00.000] Open files: -Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Open files: +Info 46 [00:01:59.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +412,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:05.000] response: +Info 46 [00:02:03.000] response: { "responseRequired": false } -Info 49 [00:02:06.000] request: +Info 47 [00:02:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +491,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:07.000] response: +Info 48 [00:02:05.000] response: { "response": { "definitions": [ @@ -530,7 +528,7 @@ Info 50 [00:02:07.000] response: }, "responseRequired": true } -Info 51 [00:02:08.000] request: +Info 49 [00:02:06.000] request: { "command": "change", "arguments": { @@ -608,7 +606,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:09.000] response: +Info 50 [00:02:07.000] response: { "responseRequired": false } @@ -676,7 +674,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [00:02:10.000] request: +Info 51 [00:02:08.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -719,9 +717,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 55 [00:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [00:02:13.000] Different program with same set of files +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:: @@ -754,7 +752,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:14.000] response: +Info 55 [00:02:12.000] response: { "response": { "definitions": [ @@ -791,7 +789,7 @@ Info 57 [00:02:14.000] response: }, "responseRequired": true } -Info 58 [00:02:15.000] request: +Info 56 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -866,7 +864,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:16.000] response: +Info 57 [00:02:14.000] response: { "response": { "definitions": [ @@ -903,7 +901,7 @@ Info 59 [00:02:16.000] response: }, "responseRequired": true } -Info 60 [00:02:17.000] request: +Info 58 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -978,7 +976,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:18.000] response: +Info 59 [00:02:16.000] response: { "response": { "definitions": [ @@ -1015,7 +1013,7 @@ Info 61 [00:02:18.000] response: }, "responseRequired": true } -Info 62 [00:02:19.000] request: +Info 60 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1090,7 +1088,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:20.000] response: +Info 61 [00:02:18.000] response: { "response": { "definitions": [ @@ -1127,7 +1125,7 @@ Info 63 [00:02:20.000] response: }, "responseRequired": true } -Info 64 [00:02:21.000] request: +Info 62 [00:02:19.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1202,7 +1200,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:22.000] response: +Info 63 [00:02:20.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/usage-file-changes.js index 4fe3436dda915..18a90e967b295 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,9 +222,8 @@ Info 6 [00:01:06.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:10.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -235,20 +234,20 @@ Info 11 [00:01:11.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:25.000] Files (3) +Info 11 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:24.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -261,16 +260,16 @@ Info 25 [00:01:25.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:26.000] ----------------------------------------------- -Info 27 [00:01:27.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:28.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:30.000] Files (3) +Info 25 [00:01:25.000] ----------------------------------------------- +Info 26 [00:01:26.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:27.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:29.000] Files (3) -Info 29 [00:01:31.000] ----------------------------------------------- -Info 29 [00:01:32.000] Open files: -Info 29 [00:01:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:30.000] ----------------------------------------------- +Info 28 [00:01:31.000] Open files: +Info 28 [00:01:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -297,11 +296,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:35.000] response: +Info 28 [00:01:34.000] response: { "responseRequired": false } -Info 30 [00:01:36.000] request: +Info 29 [00:01:35.000] request: { "seq": 0, "type": "request", @@ -336,11 +335,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:37.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:38.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:39.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:40.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -348,17 +347,16 @@ Info 35 [00:01:41.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:51.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:52.000] Files (2) +Info 35 [00:01:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:50.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -368,20 +366,20 @@ Info 46 [00:01:52.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:53.000] ----------------------------------------------- -Info 48 [00:01:54.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:55.000] Files (3) +Info 45 [00:01:51.000] ----------------------------------------------- +Info 46 [00:01:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:53.000] Files (3) -Info 48 [00:01:56.000] ----------------------------------------------- -Info 48 [00:01:57.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:01:58.000] Files (2) +Info 46 [00:01:54.000] ----------------------------------------------- +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (2) -Info 48 [00:01:59.000] ----------------------------------------------- -Info 48 [00:02:00.000] Open files: -Info 48 [00:02:01.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:02.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:03.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:04.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Open files: +Info 46 [00:01:59.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -414,11 +412,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:05.000] response: +Info 46 [00:02:03.000] response: { "responseRequired": false } -Info 49 [00:02:06.000] request: +Info 47 [00:02:04.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -493,7 +491,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:07.000] response: +Info 48 [00:02:05.000] response: { "response": { "definitions": [ @@ -530,7 +528,7 @@ Info 50 [00:02:07.000] response: }, "responseRequired": true } -Info 51 [00:02:08.000] request: +Info 49 [00:02:06.000] request: { "command": "change", "arguments": { @@ -608,11 +606,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:09.000] response: +Info 50 [00:02:07.000] response: { "responseRequired": false } -Info 53 [00:02:10.000] request: +Info 51 [00:02:08.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -655,9 +653,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 55 [00:02:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 56 [00:02:13.000] Different program with same set of files +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:: @@ -690,7 +688,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:14.000] response: +Info 55 [00:02:12.000] response: { "response": { "definitions": [ @@ -727,7 +725,7 @@ Info 57 [00:02:14.000] response: }, "responseRequired": true } -Info 58 [00:02:15.000] request: +Info 56 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -802,7 +800,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:16.000] response: +Info 57 [00:02:14.000] response: { "response": { "definitions": [ @@ -839,7 +837,7 @@ Info 59 [00:02:16.000] response: }, "responseRequired": true } -Info 60 [00:02:17.000] request: +Info 58 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -914,7 +912,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:18.000] response: +Info 59 [00:02:16.000] response: { "response": { "definitions": [ @@ -951,7 +949,7 @@ Info 61 [00:02:18.000] response: }, "responseRequired": true } -Info 62 [00:02:19.000] request: +Info 60 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1026,7 +1024,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:20.000] response: +Info 61 [00:02:18.000] response: { "response": { "definitions": [ @@ -1063,7 +1061,7 @@ Info 63 [00:02:20.000] response: }, "responseRequired": true } -Info 64 [00:02:21.000] request: +Info 62 [00:02:19.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1138,7 +1136,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:22.000] response: +Info 63 [00:02:20.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/when-projects-are-not-built.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/configWithReference/when-projects-are-not-built.js index 710e2ea179366..f5eb527c3621f 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 @@ -87,9 +87,8 @@ Info 6 [00:00:41.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:00:46.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:00:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:00:45.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -100,20 +99,20 @@ Info 11 [00:00:46.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:53.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:00:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:59.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:00.000] Files (3) +Info 11 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:52.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:00:57.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:00:59.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -126,16 +125,16 @@ Info 25 [00:01:00.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:01.000] ----------------------------------------------- -Info 27 [00:01:02.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:03.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:04.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:05.000] Files (3) +Info 25 [00:01:00.000] ----------------------------------------------- +Info 26 [00:01:01.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:02.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:04.000] Files (3) -Info 29 [00:01:06.000] ----------------------------------------------- -Info 29 [00:01:07.000] Open files: -Info 29 [00:01:08.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:09.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:05.000] ----------------------------------------------- +Info 28 [00:01:06.000] Open files: +Info 28 [00:01:07.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:08.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -162,11 +161,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 29 [00:01:10.000] response: +Info 28 [00:01:09.000] response: { "responseRequired": false } -Info 30 [00:01:11.000] request: +Info 29 [00:01:10.000] request: { "seq": 0, "type": "request", @@ -201,11 +200,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/dependency: {} -Info 31 [00:01:12.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:13.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:14.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:16.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:15.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -213,17 +212,16 @@ Info 35 [00:01:16.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:19.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:20.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:27.000] Files (2) +Info 35 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:24.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:25.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -233,20 +231,20 @@ Info 46 [00:01:27.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:28.000] ----------------------------------------------- -Info 48 [00:01:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:30.000] Files (3) +Info 45 [00:01:26.000] ----------------------------------------------- +Info 46 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:28.000] Files (3) -Info 48 [00:01:31.000] ----------------------------------------------- -Info 48 [00:01:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:01:33.000] Files (2) +Info 46 [00:01:29.000] ----------------------------------------------- +Info 46 [00:01:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:31.000] Files (2) -Info 48 [00:01:34.000] ----------------------------------------------- -Info 48 [00:01:35.000] Open files: -Info 48 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:01:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:01:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:01:32.000] ----------------------------------------------- +Info 46 [00:01:33.000] Open files: +Info 46 [00:01:34.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:01:35.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:01:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:01:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -279,11 +277,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:01:40.000] response: +Info 46 [00:01:38.000] response: { "responseRequired": false } -Info 49 [00:01:41.000] request: +Info 47 [00:01:39.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -358,7 +356,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:01:42.000] response: +Info 48 [00:01:40.000] response: { "response": { "definitions": [ @@ -395,7 +393,7 @@ Info 50 [00:01:42.000] response: }, "responseRequired": true } -Info 51 [00:01:43.000] request: +Info 49 [00:01:41.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -470,7 +468,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:01:44.000] response: +Info 50 [00:01:42.000] response: { "response": { "definitions": [ @@ -507,7 +505,7 @@ Info 52 [00:01:44.000] response: }, "responseRequired": true } -Info 53 [00:01:45.000] request: +Info 51 [00:01:43.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -582,7 +580,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:01:46.000] response: +Info 52 [00:01:44.000] response: { "response": { "definitions": [ @@ -619,7 +617,7 @@ Info 54 [00:01:46.000] response: }, "responseRequired": true } -Info 55 [00:01:47.000] request: +Info 53 [00:01:45.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -694,7 +692,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:01:48.000] response: +Info 54 [00:01:46.000] response: { "response": { "definitions": [ @@ -731,7 +729,7 @@ Info 56 [00:01:48.000] response: }, "responseRequired": true } -Info 57 [00:01:49.000] request: +Info 55 [00:01:47.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -806,7 +804,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:01:50.000] response: +Info 56 [00:01:48.000] response: { "response": { "definitions": [ @@ -843,7 +841,7 @@ Info 58 [00:01:50.000] response: }, "responseRequired": true } -Info 59 [00:01:51.000] request: +Info 57 [00:01:49.000] request: { "seq": 0, "type": "request", @@ -884,18 +882,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:01:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 61 [00:01:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 61 [00:01:54.000] Files (3) +Info 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) -Info 61 [00:01:55.000] ----------------------------------------------- -Info 61 [00:01:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 61 [00:01:57.000] Files (2) +Info 59 [00:01:53.000] ----------------------------------------------- +Info 59 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 59 [00:01:55.000] Files (2) -Info 61 [00:01:58.000] ----------------------------------------------- -Info 61 [00:01:59.000] Open files: -Info 61 [00:02:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 61 [00:02:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 59 [00:01:56.000] ----------------------------------------------- +Info 59 [00:01:57.000] Open files: +Info 59 [00:01:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 59 [00:01:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -930,11 +928,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:02.000] response: +Info 59 [00:02:00.000] response: { "responseRequired": false } -Info 62 [00:02:03.000] request: +Info 60 [00:02:01.000] request: { "seq": 0, "type": "request", @@ -977,22 +975,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:04.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 64 [00:02:05.000] Search path: /user/username/projects/myproject/random -Info 65 [00:02:06.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 66 [00:02:07.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 66 [00:02:08.000] Files (3) +Info 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 +Info 64 [00:02:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 64 [00:02:06.000] Files (3) -Info 66 [00:02:09.000] ----------------------------------------------- -Info 66 [00:02:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 66 [00:02:11.000] Files (2) +Info 64 [00:02:07.000] ----------------------------------------------- +Info 64 [00:02:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 64 [00:02:09.000] Files (2) -Info 66 [00:02:12.000] ----------------------------------------------- -Info 66 [00:02:13.000] Open files: -Info 66 [00:02:14.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 66 [00:02:15.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 66 [00:02:16.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 66 [00:02:17.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 64 [00:02:10.000] ----------------------------------------------- +Info 64 [00:02:11.000] Open files: +Info 64 [00:02:12.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 64 [00:02:13.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 64 [00:02:14.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 64 [00:02:15.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1025,11 +1023,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:18.000] response: +Info 64 [00:02:16.000] response: { "responseRequired": false } -Info 67 [00:02:19.000] request: +Info 65 [00:02:17.000] request: { "seq": 0, "type": "request", @@ -1070,18 +1068,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 69 [00:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 69 [00:02:22.000] Files (3) +Info 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) -Info 69 [00:02:23.000] ----------------------------------------------- -Info 69 [00:02:24.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 69 [00:02:25.000] Files (2) +Info 67 [00:02:21.000] ----------------------------------------------- +Info 67 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 67 [00:02:23.000] Files (2) -Info 69 [00:02:26.000] ----------------------------------------------- -Info 69 [00:02:27.000] Open files: -Info 69 [00:02:28.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 69 [00:02:29.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 67 [00:02:24.000] ----------------------------------------------- +Info 67 [00:02:25.000] Open files: +Info 67 [00:02:26.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 67 [00:02:27.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1116,11 +1114,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:02:30.000] response: +Info 67 [00:02:28.000] response: { "responseRequired": false } -Info 70 [00:02:31.000] request: +Info 68 [00:02:29.000] request: { "seq": 0, "type": "request", @@ -1163,16 +1161,16 @@ FsWatchesRecursive:: /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 (3) +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) -Info 72 [00:02:35.000] ----------------------------------------------- -Info 72 [00:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 72 [00:02:37.000] Files (2) +Info 70 [00:02:33.000] ----------------------------------------------- +Info 70 [00:02:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 70 [00:02:35.000] Files (2) -Info 72 [00:02:38.000] ----------------------------------------------- -Info 72 [00:02:39.000] Open files: +Info 70 [00:02:36.000] ----------------------------------------------- +Info 70 [00:02:37.000] Open files: After request PolledWatches:: @@ -1209,11 +1207,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:40.000] response: +Info 70 [00:02:38.000] response: { "responseRequired": false } -Info 73 [00:02:41.000] request: +Info 71 [00:02:39.000] request: { "seq": 0, "type": "request", @@ -1258,12 +1256,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 75 [00:02:43.000] Search path: /user/username/projects/myproject/random -Info 76 [00:02:44.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 77 [00:02:45.000] `remove Project:: -Info 78 [00:02:46.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 79 [00:02:47.000] Files (3) +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 +Info 75 [00:02:43.000] `remove Project:: +Info 76 [00:02:44.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 77 [00:02:45.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/dependency/FnS.ts /user/username/projects/myproject/main/main.ts @@ -1276,28 +1274,28 @@ Info 79 [00:02:47.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 80 [00:02:48.000] ----------------------------------------------- -Info 81 [00:02:49.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 82 [00:02:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 83 [00:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 84 [00:02:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 85 [00:02:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 86 [00:02:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 87 [00:02:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 88 [00:02:56.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 89 [00:02:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 90 [00:02:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 91 [00:02:59.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 92 [00:03:00.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 93 [00:03:01.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 94 [00:03:02.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 95 [00:03:03.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 95 [00:03:04.000] Files (2) - -Info 95 [00:03:05.000] ----------------------------------------------- -Info 95 [00:03:06.000] Open files: -Info 95 [00:03:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 95 [00:03:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 78 [00:02:46.000] ----------------------------------------------- +Info 79 [00:02:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 80 [00:02:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 81 [00:02:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 82 [00:02:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 83 [00:02:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 84 [00:02:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 85 [00:02:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 86 [00:02:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 87 [00:02:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 88 [00:02:56.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 89 [00:02:57.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 90 [00:02:58.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 91 [00:02:59.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 92 [00:03:00.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 93 [00:03:01.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 93 [00:03:02.000] Files (2) + +Info 93 [00:03:03.000] ----------------------------------------------- +Info 93 [00:03:04.000] Open files: +Info 93 [00:03:05.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 93 [00:03:06.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1316,7 +1314,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 95 [00:03:09.000] response: +Info 93 [00:03:07.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/can-go-to-definition-correctly.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/can-go-to-definition-correctly.js index 9bafbb76c91b6..474aac9d64fda 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 @@ -223,9 +223,8 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +235,20 @@ Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:28.000] Files (3) +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +261,16 @@ Info 25 [00:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:29.000] ----------------------------------------------- -Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:33.000] Files (3) +Info 25 [00:01:28.000] ----------------------------------------------- +Info 26 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:32.000] Files (3) -Info 29 [00:01:34.000] ----------------------------------------------- -Info 29 [00:01:35.000] Open files: -Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:33.000] ----------------------------------------------- +Info 28 [00:01:34.000] Open files: +Info 28 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:38.000] response: +Info 28 [00:01:37.000] response: { "responseRequired": false } -Info 30 [00:01:39.000] request: +Info 29 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -337,11 +336,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:43.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -349,17 +348,16 @@ Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:55.000] Files (2) +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:53.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -369,20 +367,20 @@ Info 46 [00:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:56.000] ----------------------------------------------- -Info 48 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:58.000] Files (3) +Info 45 [00:01:54.000] ----------------------------------------------- +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) -Info 48 [00:01:59.000] ----------------------------------------------- -Info 48 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:02:01.000] Files (2) +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) -Info 48 [00:02:02.000] ----------------------------------------------- -Info 48 [00:02:03.000] Open files: -Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -415,11 +413,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:08.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 49 [00:02:09.000] request: +Info 47 [00:02:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -462,8 +460,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -500,7 +498,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:12.000] response: +Info 50 [00:02:10.000] response: { "response": { "definitions": [ @@ -537,7 +535,7 @@ Info 52 [00:02:12.000] response: }, "responseRequired": true } -Info 53 [00:02:13.000] request: +Info 51 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -620,7 +618,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:14.000] response: +Info 52 [00:02:12.000] response: { "response": { "definitions": [ @@ -657,7 +655,7 @@ Info 54 [00:02:14.000] response: }, "responseRequired": true } -Info 55 [00:02:15.000] request: +Info 53 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -740,7 +738,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:16.000] response: +Info 54 [00:02:14.000] response: { "response": { "definitions": [ @@ -777,7 +775,7 @@ Info 56 [00:02:16.000] response: }, "responseRequired": true } -Info 57 [00:02:17.000] request: +Info 55 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -860,7 +858,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:18.000] response: +Info 56 [00:02:16.000] response: { "response": { "definitions": [ @@ -897,7 +895,7 @@ Info 58 [00:02:18.000] response: }, "responseRequired": true } -Info 59 [00:02:19.000] request: +Info 57 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -980,7 +978,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:20.000] response: +Info 58 [00:02:18.000] response: { "response": { "definitions": [ @@ -1017,7 +1015,7 @@ Info 60 [00:02:20.000] response: }, "responseRequired": true } -Info 61 [00:02:21.000] request: +Info 59 [00:02:19.000] request: { "seq": 0, "type": "request", @@ -1062,18 +1060,18 @@ FsWatchesRecursive:: /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) +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) -Info 63 [00:02:25.000] ----------------------------------------------- -Info 63 [00:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:27.000] Files (2) +Info 61 [00:02:23.000] ----------------------------------------------- +Info 61 [00:02:24.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:25.000] Files (2) -Info 63 [00:02:28.000] ----------------------------------------------- -Info 63 [00:02:29.000] Open files: -Info 63 [00:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 63 [00:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 61 [00:02:26.000] ----------------------------------------------- +Info 61 [00:02:27.000] Open files: +Info 61 [00:02:28.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 61 [00:02:29.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1112,11 +1110,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:32.000] response: +Info 61 [00:02:30.000] response: { "responseRequired": false } -Info 64 [00:02:33.000] request: +Info 62 [00:02:31.000] request: { "seq": 0, "type": "request", @@ -1163,22 +1161,22 @@ FsWatchesRecursive:: /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 -Info 68 [00:02:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 68 [00:02:38.000] Files (3) +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 +Info 66 [00:02:35.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 66 [00:02:36.000] Files (3) -Info 68 [00:02:39.000] ----------------------------------------------- -Info 68 [00:02:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 68 [00:02:41.000] Files (2) +Info 66 [00:02:37.000] ----------------------------------------------- +Info 66 [00:02:38.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:39.000] Files (2) -Info 68 [00:02:42.000] ----------------------------------------------- -Info 68 [00:02:43.000] Open files: -Info 68 [00:02:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 68 [00:02:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 68 [00:02:46.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 68 [00:02:47.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 66 [00:02:40.000] ----------------------------------------------- +Info 66 [00:02:41.000] Open files: +Info 66 [00:02:42.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 66 [00:02:43.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 66 [00:02:44.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:45.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1215,11 +1213,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:48.000] response: +Info 66 [00:02:46.000] response: { "responseRequired": false } -Info 69 [00:02:49.000] request: +Info 67 [00:02:47.000] request: { "seq": 0, "type": "request", @@ -1264,18 +1262,18 @@ FsWatchesRecursive:: /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) +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) -Info 71 [00:02:53.000] ----------------------------------------------- -Info 71 [00:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [00:02:55.000] Files (2) +Info 69 [00:02:51.000] ----------------------------------------------- +Info 69 [00:02:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 69 [00:02:53.000] Files (2) -Info 71 [00:02:56.000] ----------------------------------------------- -Info 71 [00:02:57.000] Open files: -Info 71 [00:02:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 71 [00:02:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 69 [00:02:54.000] ----------------------------------------------- +Info 69 [00:02:55.000] Open files: +Info 69 [00:02:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 69 [00:02:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1314,11 +1312,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [00:03:00.000] response: +Info 69 [00:02:58.000] response: { "responseRequired": false } -Info 72 [00:03:01.000] request: +Info 70 [00:02:59.000] request: { "seq": 0, "type": "request", @@ -1365,16 +1363,16 @@ FsWatchesRecursive:: /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) +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) -Info 74 [00:03:05.000] ----------------------------------------------- -Info 74 [00:03:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [00:03:07.000] Files (2) +Info 72 [00:03:03.000] ----------------------------------------------- +Info 72 [00:03:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 72 [00:03:05.000] Files (2) -Info 74 [00:03:08.000] ----------------------------------------------- -Info 74 [00:03:09.000] Open files: +Info 72 [00:03:06.000] ----------------------------------------------- +Info 72 [00:03:07.000] Open files: After request PolledWatches:: @@ -1415,11 +1413,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:03:10.000] response: +Info 72 [00:03:08.000] response: { "responseRequired": false } -Info 75 [00:03:11.000] request: +Info 73 [00:03:09.000] request: { "seq": 0, "type": "request", @@ -1468,12 +1466,12 @@ FsWatchesRecursive:: /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 -Info 79 [00:03:15.000] `remove Project:: -Info 80 [00:03:16.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 81 [00:03:17.000] Files (3) +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 +Info 77 [00:03:13.000] `remove Project:: +Info 78 [00:03:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 79 [00:03:15.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -1486,30 +1484,30 @@ Info 81 [00:03:17.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 82 [00:03:18.000] ----------------------------------------------- -Info 83 [00:03:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 84 [00:03:20.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 85 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 86 [00:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 87 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 88 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 89 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 90 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 91 [00:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 92 [00:03:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 93 [00:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 94 [00:03:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 95 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 96 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 97 [00:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 98 [00:03:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 99 [00:03:35.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 99 [00:03:36.000] Files (2) - -Info 99 [00:03:37.000] ----------------------------------------------- -Info 99 [00:03:38.000] Open files: -Info 99 [00:03:39.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 99 [00:03:40.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 80 [00:03:16.000] ----------------------------------------------- +Info 81 [00:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 82 [00:03:18.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 83 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 84 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 85 [00:03:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 86 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 87 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 88 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 89 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 90 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 91 [00:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 92 [00:03:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 93 [00:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 94 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 95 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 96 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 97 [00:03:33.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 97 [00:03:34.000] Files (2) + +Info 97 [00:03:35.000] ----------------------------------------------- +Info 97 [00:03:36.000] Open files: +Info 97 [00:03:37.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 97 [00:03:38.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1528,7 +1526,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 99 [00:03:41.000] response: +Info 97 [00:03:39.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-changes-with-timeout-before-request.js index c68c8b94dcd38..61926d435ca90 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 @@ -223,9 +223,8 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +235,20 @@ Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:28.000] Files (3) +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +261,16 @@ Info 25 [00:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:29.000] ----------------------------------------------- -Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:33.000] Files (3) +Info 25 [00:01:28.000] ----------------------------------------------- +Info 26 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:32.000] Files (3) -Info 29 [00:01:34.000] ----------------------------------------------- -Info 29 [00:01:35.000] Open files: -Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:33.000] ----------------------------------------------- +Info 28 [00:01:34.000] Open files: +Info 28 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:38.000] response: +Info 28 [00:01:37.000] response: { "responseRequired": false } -Info 30 [00:01:39.000] request: +Info 29 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -337,11 +336,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:43.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -349,17 +348,16 @@ Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:55.000] Files (2) +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:53.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -369,20 +367,20 @@ Info 46 [00:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:56.000] ----------------------------------------------- -Info 48 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:58.000] Files (3) +Info 45 [00:01:54.000] ----------------------------------------------- +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) -Info 48 [00:01:59.000] ----------------------------------------------- -Info 48 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:02:01.000] Files (2) +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) -Info 48 [00:02:02.000] ----------------------------------------------- -Info 48 [00:02:03.000] Open files: -Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -415,11 +413,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:08.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 49 [00:02:09.000] request: +Info 47 [00:02:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -462,8 +460,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -500,7 +498,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:12.000] response: +Info 50 [00:02:10.000] response: { "response": { "definitions": [ @@ -537,10 +535,10 @@ Info 52 [00:02:12.000] response: }, "responseRequired": true } -Info 53 [00:02:16.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 54 [00:02:17.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 55 [00:02:18.000] Scheduled: *ensureProjectForOpenFiles* -Info 56 [00:02:19.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 51 [00:02:14.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 52 [00:02:15.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 53 [00:02:16.000] Scheduled: *ensureProjectForOpenFiles* +Info 54 [00:02:17.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts] export declare function fn1(): void; @@ -586,39 +584,39 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:20.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 58 [00:02:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 59 [00:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 60 [00:02:23.000] Different program with same set of files -Info 61 [00:02:24.000] Running: *ensureProjectForOpenFiles* -Info 62 [00:02:25.000] Before ensureProjectForOpenFiles: -Info 63 [00:02:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 63 [00:02:27.000] Files (3) - -Info 63 [00:02:28.000] ----------------------------------------------- -Info 63 [00:02:29.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:30.000] Files (2) - -Info 63 [00:02:31.000] ----------------------------------------------- -Info 63 [00:02:32.000] Open files: -Info 63 [00:02:33.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 63 [00:02:34.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 63 [00:02:35.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 63 [00:02:36.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 63 [00:02:37.000] After ensureProjectForOpenFiles: -Info 64 [00:02:38.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 64 [00:02:39.000] Files (3) - -Info 64 [00:02:40.000] ----------------------------------------------- -Info 64 [00:02:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 64 [00:02:42.000] Files (2) - -Info 64 [00:02:43.000] ----------------------------------------------- -Info 64 [00:02:44.000] Open files: -Info 64 [00:02:45.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 64 [00:02:46.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 64 [00:02:47.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 64 [00:02:48.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 58 [00:02:21.000] Different program with same set of files +Info 59 [00:02:22.000] Running: *ensureProjectForOpenFiles* +Info 60 [00:02:23.000] Before ensureProjectForOpenFiles: +Info 61 [00:02:24.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 61 [00:02:25.000] Files (3) + +Info 61 [00:02:26.000] ----------------------------------------------- +Info 61 [00:02:27.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:28.000] Files (2) + +Info 61 [00:02:29.000] ----------------------------------------------- +Info 61 [00:02:30.000] Open files: +Info 61 [00:02:31.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 61 [00:02:32.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 61 [00:02:33.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 61 [00:02:34.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 61 [00:02:35.000] After ensureProjectForOpenFiles: +Info 62 [00:02:36.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 62 [00:02:37.000] Files (3) + +Info 62 [00:02:38.000] ----------------------------------------------- +Info 62 [00:02:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 62 [00:02:40.000] Files (2) + +Info 62 [00:02:41.000] ----------------------------------------------- +Info 62 [00:02:42.000] Open files: +Info 62 [00:02:43.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 62 [00:02:44.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 62 [00:02:45.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 62 [00:02:46.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -655,7 +653,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:49.000] request: +Info 62 [00:02:47.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -738,7 +736,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:50.000] response: +Info 63 [00:02:48.000] response: { "response": { "definitions": [ @@ -775,7 +773,7 @@ Info 65 [00:02:50.000] response: }, "responseRequired": true } -Info 66 [00:02:51.000] request: +Info 64 [00:02:49.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -858,7 +856,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:52.000] response: +Info 65 [00:02:50.000] response: { "response": { "definitions": [ @@ -895,7 +893,7 @@ Info 67 [00:02:52.000] response: }, "responseRequired": true } -Info 68 [00:02:53.000] request: +Info 66 [00:02:51.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -978,7 +976,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:02:54.000] response: +Info 67 [00:02:52.000] response: { "response": { "definitions": [ @@ -1015,7 +1013,7 @@ Info 69 [00:02:54.000] response: }, "responseRequired": true } -Info 70 [00:02:55.000] request: +Info 68 [00:02:53.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1098,7 +1096,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [00:02:56.000] response: +Info 69 [00:02:54.000] response: { "response": { "definitions": [ @@ -1135,7 +1133,7 @@ Info 71 [00:02:56.000] response: }, "responseRequired": true } -Info 72 [00:02:57.000] request: +Info 70 [00:02:55.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1218,7 +1216,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [00:02:58.000] response: +Info 71 [00:02:56.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-changes.js index d251c2b08d60f..f0bd8d1e99dcf 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 @@ -223,9 +223,8 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +235,20 @@ Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:28.000] Files (3) +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +261,16 @@ Info 25 [00:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:29.000] ----------------------------------------------- -Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:33.000] Files (3) +Info 25 [00:01:28.000] ----------------------------------------------- +Info 26 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:32.000] Files (3) -Info 29 [00:01:34.000] ----------------------------------------------- -Info 29 [00:01:35.000] Open files: -Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:33.000] ----------------------------------------------- +Info 28 [00:01:34.000] Open files: +Info 28 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:38.000] response: +Info 28 [00:01:37.000] response: { "responseRequired": false } -Info 30 [00:01:39.000] request: +Info 29 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -337,11 +336,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:43.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -349,17 +348,16 @@ Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:55.000] Files (2) +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:53.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -369,20 +367,20 @@ Info 46 [00:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:56.000] ----------------------------------------------- -Info 48 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:58.000] Files (3) +Info 45 [00:01:54.000] ----------------------------------------------- +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) -Info 48 [00:01:59.000] ----------------------------------------------- -Info 48 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:02:01.000] Files (2) +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) -Info 48 [00:02:02.000] ----------------------------------------------- -Info 48 [00:02:03.000] Open files: -Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -415,11 +413,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:08.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 49 [00:02:09.000] request: +Info 47 [00:02:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -462,8 +460,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -500,7 +498,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:12.000] response: +Info 50 [00:02:10.000] response: { "response": { "definitions": [ @@ -537,11 +535,11 @@ Info 52 [00:02:12.000] response: }, "responseRequired": true } -Info 53 [00:02:16.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 54 [00:02:17.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 55 [00:02:18.000] Scheduled: *ensureProjectForOpenFiles* -Info 56 [00:02:19.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 57 [00:02:20.000] request: +Info 51 [00:02:14.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 52 [00:02:15.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 53 [00:02:16.000] Scheduled: *ensureProjectForOpenFiles* +Info 54 [00:02:17.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 1:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 55 [00:02:18.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -597,9 +595,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 59 [00:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 60 [00:02:23.000] Different program with same set of files +Info 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:: @@ -636,7 +634,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:24.000] response: +Info 59 [00:02:22.000] response: { "response": { "definitions": [ @@ -673,7 +671,7 @@ Info 61 [00:02:24.000] response: }, "responseRequired": true } -Info 62 [00:02:25.000] request: +Info 60 [00:02:23.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -756,7 +754,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:26.000] response: +Info 61 [00:02:24.000] response: { "response": { "definitions": [ @@ -793,7 +791,7 @@ Info 63 [00:02:26.000] response: }, "responseRequired": true } -Info 64 [00:02:27.000] request: +Info 62 [00:02:25.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -876,7 +874,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:28.000] response: +Info 63 [00:02:26.000] response: { "response": { "definitions": [ @@ -913,7 +911,7 @@ Info 65 [00:02:28.000] response: }, "responseRequired": true } -Info 66 [00:02:29.000] request: +Info 64 [00:02:27.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -996,7 +994,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:30.000] response: +Info 65 [00:02:28.000] response: { "response": { "definitions": [ @@ -1033,7 +1031,7 @@ Info 67 [00:02:30.000] response: }, "responseRequired": true } -Info 68 [00:02:31.000] request: +Info 66 [00:02:29.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1116,7 +1114,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:02:32.000] response: +Info 67 [00:02:30.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-created.js index f23baae813382..ec78bf8d717ae 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 @@ -215,9 +215,8 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -228,19 +227,19 @@ Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 23 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 24 [00:01:28.000] Files (2) +Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 22 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 23 [00:01:27.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -250,16 +249,16 @@ Info 24 [00:01:28.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 25 [00:01:29.000] ----------------------------------------------- -Info 26 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 27 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 28 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 28 [00:01:33.000] Files (2) +Info 24 [00:01:28.000] ----------------------------------------------- +Info 25 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 26 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 27 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 27 [00:01:32.000] Files (2) -Info 28 [00:01:34.000] ----------------------------------------------- -Info 28 [00:01:35.000] Open files: -Info 28 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 28 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 27 [00:01:33.000] ----------------------------------------------- +Info 27 [00:01:34.000] Open files: +Info 27 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 27 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -284,11 +283,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 28 [00:01:38.000] response: +Info 27 [00:01:37.000] response: { "responseRequired": false } -Info 29 [00:01:39.000] request: +Info 28 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -321,11 +320,11 @@ FsWatchesRecursive:: /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 -Info 33 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 34 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 32 [00:01:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 33 [00:01:43.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -333,17 +332,16 @@ Info 34 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 38 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 39 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 45 [00:01:55.000] Files (2) +Info 34 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 35 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 37 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 43 [00:01:53.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -353,20 +351,20 @@ Info 45 [00:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 46 [00:01:56.000] ----------------------------------------------- -Info 47 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [00:01:58.000] Files (2) +Info 44 [00:01:54.000] ----------------------------------------------- +Info 45 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:56.000] Files (2) -Info 47 [00:01:59.000] ----------------------------------------------- -Info 47 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 47 [00:02:01.000] Files (2) +Info 45 [00:01:57.000] ----------------------------------------------- +Info 45 [00:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 45 [00:01:59.000] Files (2) -Info 47 [00:02:02.000] ----------------------------------------------- -Info 47 [00:02:03.000] Open files: -Info 47 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 47 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 45 [00:02:00.000] ----------------------------------------------- +Info 45 [00:02:01.000] Open files: +Info 45 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 45 [00:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -397,11 +395,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [00:02:08.000] response: +Info 45 [00:02:06.000] response: { "responseRequired": false } -Info 48 [00:02:09.000] request: +Info 46 [00:02:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -472,7 +470,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [00:02:10.000] response: +Info 47 [00:02:08.000] response: { "response": { "definitions": [ @@ -509,10 +507,10 @@ Info 49 [00:02:10.000] response: }, "responseRequired": true } -Info 50 [00:02:13.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 51 [00:02:14.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 52 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 53 [00:02:16.000] request: +Info 48 [00:02:11.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 49 [00:02:12.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 50 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 51 [00:02:14.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -561,12 +559,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:17.000] Scheduled: *ensureProjectForOpenFiles* -Info 55 [00:02:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 56 [00:02:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 57 [00:02:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 58 [00:02:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 59 [00:02:22.000] Files (3) +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 +Info 55 [00:02:18.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 56 [00:02:19.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 57 [00:02:20.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -579,9 +577,9 @@ Info 59 [00:02:22.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 60 [00:02:23.000] ----------------------------------------------- -Info 61 [00:02:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 62 [00:02:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 58 [00:02:21.000] ----------------------------------------------- +Info 59 [00:02:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 60 [00:02:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -618,7 +616,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:26.000] response: +Info 61 [00:02:24.000] response: { "response": { "definitions": [ @@ -655,7 +653,7 @@ Info 63 [00:02:26.000] response: }, "responseRequired": true } -Info 64 [00:02:27.000] request: +Info 62 [00:02:25.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -738,7 +736,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:28.000] response: +Info 63 [00:02:26.000] response: { "response": { "definitions": [ @@ -775,7 +773,7 @@ Info 65 [00:02:28.000] response: }, "responseRequired": true } -Info 66 [00:02:29.000] request: +Info 64 [00:02:27.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -858,7 +856,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:30.000] response: +Info 65 [00:02:28.000] response: { "response": { "definitions": [ @@ -895,7 +893,7 @@ Info 67 [00:02:30.000] response: }, "responseRequired": true } -Info 68 [00:02:31.000] request: +Info 66 [00:02:29.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -978,7 +976,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:02:32.000] response: +Info 67 [00:02:30.000] response: { "response": { "definitions": [ @@ -1015,7 +1013,7 @@ Info 69 [00:02:32.000] response: }, "responseRequired": true } -Info 70 [00:02:33.000] request: +Info 68 [00:02:31.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1098,7 +1096,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [00:02:34.000] response: +Info 69 [00:02:32.000] response: { "response": { "definitions": [ @@ -1135,7 +1133,7 @@ Info 71 [00:02:34.000] response: }, "responseRequired": true } -Info 72 [00:02:35.000] request: +Info 70 [00:02:33.000] request: { "seq": 0, "type": "request", @@ -1180,18 +1178,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [00:02:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 74 [00:02:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 74 [00:02:38.000] Files (3) +Info 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) -Info 74 [00:02:39.000] ----------------------------------------------- -Info 74 [00:02:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 74 [00:02:41.000] Files (2) +Info 72 [00:02:37.000] ----------------------------------------------- +Info 72 [00:02:38.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 72 [00:02:39.000] Files (2) -Info 74 [00:02:42.000] ----------------------------------------------- -Info 74 [00:02:43.000] Open files: -Info 74 [00:02:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 74 [00:02:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 72 [00:02:40.000] ----------------------------------------------- +Info 72 [00:02:41.000] Open files: +Info 72 [00:02:42.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 72 [00:02:43.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1230,11 +1228,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:46.000] response: +Info 72 [00:02:44.000] response: { "responseRequired": false } -Info 75 [00:02:47.000] request: +Info 73 [00:02:45.000] request: { "seq": 0, "type": "request", @@ -1281,22 +1279,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 76 [00:02:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 77 [00:02:49.000] Search path: /user/username/projects/myproject/random -Info 78 [00:02:50.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 79 [00:02:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 79 [00:02:52.000] Files (3) +Info 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 +Info 77 [00:02:49.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 77 [00:02:50.000] Files (3) -Info 79 [00:02:53.000] ----------------------------------------------- -Info 79 [00:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 79 [00:02:55.000] Files (2) +Info 77 [00:02:51.000] ----------------------------------------------- +Info 77 [00:02:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 77 [00:02:53.000] Files (2) -Info 79 [00:02:56.000] ----------------------------------------------- -Info 79 [00:02:57.000] Open files: -Info 79 [00:02:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 79 [00:02:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 79 [00:03:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 79 [00:03:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 77 [00:02:54.000] ----------------------------------------------- +Info 77 [00:02:55.000] Open files: +Info 77 [00:02:56.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 77 [00:02:57.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 77 [00:02:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 77 [00:02:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1333,11 +1331,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 79 [00:03:02.000] response: +Info 77 [00:03:00.000] response: { "responseRequired": false } -Info 80 [00:03:03.000] request: +Info 78 [00:03:01.000] request: { "seq": 0, "type": "request", @@ -1382,18 +1380,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [00:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 82 [00:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 82 [00:03:06.000] Files (3) +Info 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) -Info 82 [00:03:07.000] ----------------------------------------------- -Info 82 [00:03:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 82 [00:03:09.000] Files (2) +Info 80 [00:03:05.000] ----------------------------------------------- +Info 80 [00:03:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 80 [00:03:07.000] Files (2) -Info 82 [00:03:10.000] ----------------------------------------------- -Info 82 [00:03:11.000] Open files: -Info 82 [00:03:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 82 [00:03:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 80 [00:03:08.000] ----------------------------------------------- +Info 80 [00:03:09.000] Open files: +Info 80 [00:03:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 80 [00:03:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1432,11 +1430,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [00:03:14.000] response: +Info 80 [00:03:12.000] response: { "responseRequired": false } -Info 83 [00:03:15.000] request: +Info 81 [00:03:13.000] request: { "seq": 0, "type": "request", @@ -1483,16 +1481,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:03:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 85 [00:03:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 85 [00:03:18.000] Files (3) +Info 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) -Info 85 [00:03:19.000] ----------------------------------------------- -Info 85 [00:03:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 85 [00:03:21.000] Files (2) +Info 83 [00:03:17.000] ----------------------------------------------- +Info 83 [00:03:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 83 [00:03:19.000] Files (2) -Info 85 [00:03:22.000] ----------------------------------------------- -Info 85 [00:03:23.000] Open files: +Info 83 [00:03:20.000] ----------------------------------------------- +Info 83 [00:03:21.000] Open files: After request PolledWatches:: @@ -1533,11 +1531,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [00:03:24.000] response: +Info 83 [00:03:22.000] response: { "responseRequired": false } -Info 86 [00:03:25.000] request: +Info 84 [00:03:23.000] request: { "seq": 0, "type": "request", @@ -1586,12 +1584,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 88 [00:03:27.000] Search path: /user/username/projects/myproject/random -Info 89 [00:03:28.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 90 [00:03:29.000] `remove Project:: -Info 91 [00:03:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 92 [00:03:31.000] Files (3) +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 +Info 88 [00:03:27.000] `remove Project:: +Info 89 [00:03:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 90 [00:03:29.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -1604,30 +1602,30 @@ Info 92 [00:03:31.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 93 [00:03:32.000] ----------------------------------------------- -Info 94 [00:03:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 95 [00:03:34.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 96 [00:03:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 97 [00:03:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 98 [00:03:37.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 99 [00:03:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 100 [00:03:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 101 [00:03:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 102 [00:03:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 103 [00:03:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 104 [00:03:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 105 [00:03:44.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 106 [00:03:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 107 [00:03:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 108 [00:03:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 109 [00:03:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 110 [00:03:49.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 110 [00:03:50.000] Files (2) - -Info 110 [00:03:51.000] ----------------------------------------------- -Info 110 [00:03:52.000] Open files: -Info 110 [00:03:53.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 110 [00:03:54.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 91 [00:03:30.000] ----------------------------------------------- +Info 92 [00:03:31.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 93 [00:03:32.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 94 [00:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 95 [00:03:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 96 [00:03:35.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 97 [00:03:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 98 [00:03:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 99 [00:03:38.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 100 [00:03:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 101 [00:03:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 102 [00:03:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 103 [00:03:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 104 [00:03:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 105 [00:03:44.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 106 [00:03:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 107 [00:03:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 108 [00:03:47.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 108 [00:03:48.000] Files (2) + +Info 108 [00:03:49.000] ----------------------------------------------- +Info 108 [00:03:50.000] Open files: +Info 108 [00:03:51.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 108 [00:03:52.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1646,7 +1644,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 110 [00:03:55.000] response: +Info 108 [00:03:53.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-deleted.js index b5796ef8ee2cd..2331b6fa0655a 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 @@ -223,9 +223,8 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +235,20 @@ Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:28.000] Files (3) +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +261,16 @@ Info 25 [00:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:29.000] ----------------------------------------------- -Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:33.000] Files (3) +Info 25 [00:01:28.000] ----------------------------------------------- +Info 26 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:32.000] Files (3) -Info 29 [00:01:34.000] ----------------------------------------------- -Info 29 [00:01:35.000] Open files: -Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:33.000] ----------------------------------------------- +Info 28 [00:01:34.000] Open files: +Info 28 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:38.000] response: +Info 28 [00:01:37.000] response: { "responseRequired": false } -Info 30 [00:01:39.000] request: +Info 29 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -337,11 +336,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:43.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -349,17 +348,16 @@ Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:55.000] Files (2) +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:53.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -369,20 +367,20 @@ Info 46 [00:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:56.000] ----------------------------------------------- -Info 48 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:58.000] Files (3) +Info 45 [00:01:54.000] ----------------------------------------------- +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) -Info 48 [00:01:59.000] ----------------------------------------------- -Info 48 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:02:01.000] Files (2) +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) -Info 48 [00:02:02.000] ----------------------------------------------- -Info 48 [00:02:03.000] Open files: -Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -415,11 +413,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:08.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 49 [00:02:09.000] request: +Info 47 [00:02:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -462,8 +460,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -500,7 +498,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:12.000] response: +Info 50 [00:02:10.000] response: { "response": { "definitions": [ @@ -537,15 +535,15 @@ Info 52 [00:02:12.000] response: }, "responseRequired": true } -Info 53 [00:02:14.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 54 [00:02:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 55 [00:02:16.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 56 [00:02:17.000] Scheduled: *ensureProjectForOpenFiles* -Info 57 [00:02:18.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 58 [00:02:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 59 [00:02:20.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation -Info 60 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 61 [00:02:22.000] request: +Info 51 [00:02:12.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 52 [00:02:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 53 [00:02:14.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 54 [00:02:15.000] Scheduled: *ensureProjectForOpenFiles* +Info 55 [00:02:16.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/fns.d.ts 2:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 56 [00:02:17.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 57 [00:02:18.000] Scheduled: /user/username/projects/myproject/main/tsconfig.jsonFailedLookupInvalidation +Info 58 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 59 [00:02:20.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -591,10 +589,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [00:02:23.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 63 [00:02:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 64 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:26.000] Files (2) +Info 60 [00:02:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 61 [00:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 62 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:24.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -604,7 +602,7 @@ Info 65 [00:02:26.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 66 [00:02:27.000] ----------------------------------------------- +Info 64 [00:02:25.000] ----------------------------------------------- After request PolledWatches:: @@ -639,7 +637,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:28.000] response: +Info 65 [00:02:26.000] response: { "response": { "definitions": [ @@ -676,7 +674,7 @@ Info 67 [00:02:28.000] response: }, "responseRequired": true } -Info 68 [00:02:29.000] request: +Info 66 [00:02:27.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -755,7 +753,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:02:30.000] response: +Info 67 [00:02:28.000] response: { "response": { "definitions": [ @@ -792,7 +790,7 @@ Info 69 [00:02:30.000] response: }, "responseRequired": true } -Info 70 [00:02:31.000] request: +Info 68 [00:02:29.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -871,7 +869,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [00:02:32.000] response: +Info 69 [00:02:30.000] response: { "response": { "definitions": [ @@ -908,7 +906,7 @@ Info 71 [00:02:32.000] response: }, "responseRequired": true } -Info 72 [00:02:33.000] request: +Info 70 [00:02:31.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -987,7 +985,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [00:02:34.000] response: +Info 71 [00:02:32.000] response: { "response": { "definitions": [ @@ -1024,7 +1022,7 @@ Info 73 [00:02:34.000] response: }, "responseRequired": true } -Info 74 [00:02:35.000] request: +Info 72 [00:02:33.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1103,7 +1101,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 75 [00:02:36.000] response: +Info 73 [00:02:34.000] response: { "response": { "definitions": [ @@ -1140,7 +1138,7 @@ Info 75 [00:02:36.000] response: }, "responseRequired": true } -Info 76 [00:02:37.000] request: +Info 74 [00:02:35.000] request: { "seq": 0, "type": "request", @@ -1183,18 +1181,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:02:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 78 [00:02:39.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 78 [00:02:40.000] Files (2) +Info 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) -Info 78 [00:02:41.000] ----------------------------------------------- -Info 78 [00:02:42.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 78 [00:02:43.000] Files (2) +Info 76 [00:02:39.000] ----------------------------------------------- +Info 76 [00:02:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 76 [00:02:41.000] Files (2) -Info 78 [00:02:44.000] ----------------------------------------------- -Info 78 [00:02:45.000] Open files: -Info 78 [00:02:46.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 78 [00:02:47.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 76 [00:02:42.000] ----------------------------------------------- +Info 76 [00:02:43.000] Open files: +Info 76 [00:02:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 76 [00:02:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1231,11 +1229,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 78 [00:02:48.000] response: +Info 76 [00:02:46.000] response: { "responseRequired": false } -Info 79 [00:02:49.000] request: +Info 77 [00:02:47.000] request: { "seq": 0, "type": "request", @@ -1280,24 +1278,24 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:02:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 81 [00:02:51.000] Search path: /user/username/projects/myproject/random -Info 82 [00:02:52.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 83 [00:02:53.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 84 [00:02:54.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 85 [00:02:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 85 [00:02:56.000] Files (2) - -Info 85 [00:02:57.000] ----------------------------------------------- -Info 85 [00:02:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 85 [00:02:59.000] Files (2) - -Info 85 [00:03:00.000] ----------------------------------------------- -Info 85 [00:03:01.000] Open files: -Info 85 [00:03:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 85 [00:03:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 85 [00:03:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 85 [00:03:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 81 [00:02:51.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 82 [00:02:52.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 83 [00:02:53.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 83 [00:02:54.000] Files (2) + +Info 83 [00:02:55.000] ----------------------------------------------- +Info 83 [00:02:56.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 83 [00:02:57.000] Files (2) + +Info 83 [00:02:58.000] ----------------------------------------------- +Info 83 [00:02:59.000] Open files: +Info 83 [00:03:00.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 83 [00:03:01.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 83 [00:03:02.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 83 [00:03:03.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1328,11 +1326,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [00:03:06.000] response: +Info 83 [00:03:04.000] response: { "responseRequired": false } -Info 86 [00:03:07.000] request: +Info 84 [00:03:05.000] request: { "seq": 0, "type": "request", @@ -1371,18 +1369,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [00:03:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 88 [00:03:09.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 88 [00:03:10.000] Files (2) +Info 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) -Info 88 [00:03:11.000] ----------------------------------------------- -Info 88 [00:03:12.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 88 [00:03:13.000] Files (2) +Info 86 [00:03:09.000] ----------------------------------------------- +Info 86 [00:03:10.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 86 [00:03:11.000] Files (2) -Info 88 [00:03:14.000] ----------------------------------------------- -Info 88 [00:03:15.000] Open files: -Info 88 [00:03:16.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 88 [00:03:17.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 86 [00:03:12.000] ----------------------------------------------- +Info 86 [00:03:13.000] Open files: +Info 86 [00:03:14.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 86 [00:03:15.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1415,11 +1413,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [00:03:18.000] response: +Info 86 [00:03:16.000] response: { "responseRequired": false } -Info 89 [00:03:19.000] request: +Info 87 [00:03:17.000] request: { "seq": 0, "type": "request", @@ -1460,16 +1458,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 90 [00:03:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 91 [00:03:21.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 91 [00:03:22.000] Files (2) +Info 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) -Info 91 [00:03:23.000] ----------------------------------------------- -Info 91 [00:03:24.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 91 [00:03:25.000] Files (2) +Info 89 [00:03:21.000] ----------------------------------------------- +Info 89 [00:03:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 89 [00:03:23.000] Files (2) -Info 91 [00:03:26.000] ----------------------------------------------- -Info 91 [00:03:27.000] Open files: +Info 89 [00:03:24.000] ----------------------------------------------- +Info 89 [00:03:25.000] Open files: After request PolledWatches:: @@ -1504,11 +1502,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 91 [00:03:28.000] response: +Info 89 [00:03:26.000] response: { "responseRequired": false } -Info 92 [00:03:29.000] request: +Info 90 [00:03:27.000] request: { "seq": 0, "type": "request", @@ -1551,12 +1549,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 94 [00:03:31.000] Search path: /user/username/projects/myproject/random -Info 95 [00:03:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 96 [00:03:33.000] `remove Project:: -Info 97 [00:03:34.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 98 [00:03:35.000] Files (2) +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 +Info 94 [00:03:31.000] `remove Project:: +Info 95 [00:03:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 96 [00:03:33.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -1566,27 +1564,27 @@ Info 98 [00:03:35.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 99 [00:03:36.000] ----------------------------------------------- -Info 100 [00:03:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 101 [00:03:38.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 102 [00:03:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 103 [00:03:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 104 [00:03:41.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 105 [00:03:42.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 106 [00:03:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 107 [00:03:44.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 108 [00:03:45.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 109 [00:03:46.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 110 [00:03:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 111 [00:03:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 112 [00:03:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 113 [00:03:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 113 [00:03:51.000] Files (2) - -Info 113 [00:03:52.000] ----------------------------------------------- -Info 113 [00:03:53.000] Open files: -Info 113 [00:03:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 113 [00:03:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 97 [00:03:34.000] ----------------------------------------------- +Info 98 [00:03:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 99 [00:03:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 100 [00:03:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 101 [00:03:38.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 102 [00:03:39.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 103 [00:03:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 104 [00:03:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 105 [00:03:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 106 [00:03:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 107 [00:03:44.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 108 [00:03:45.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 109 [00:03:46.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 110 [00:03:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 111 [00:03:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 111 [00:03:49.000] Files (2) + +Info 111 [00:03:50.000] ----------------------------------------------- +Info 111 [00:03:51.000] Open files: +Info 111 [00:03:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 111 [00:03:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1605,7 +1603,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 113 [00:03:56.000] response: +Info 111 [00:03:54.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dts-not-present.js index b35eefe1f9378..aade0b7c7d2e2 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 @@ -215,9 +215,8 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -228,19 +227,19 @@ Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 19 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 23 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 24 [00:01:28.000] Files (2) +Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 18 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 22 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 23 [00:01:27.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -250,16 +249,16 @@ Info 24 [00:01:28.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 25 [00:01:29.000] ----------------------------------------------- -Info 26 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 27 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 28 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 28 [00:01:33.000] Files (2) +Info 24 [00:01:28.000] ----------------------------------------------- +Info 25 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 26 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 27 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 27 [00:01:32.000] Files (2) -Info 28 [00:01:34.000] ----------------------------------------------- -Info 28 [00:01:35.000] Open files: -Info 28 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 28 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 27 [00:01:33.000] ----------------------------------------------- +Info 27 [00:01:34.000] Open files: +Info 27 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 27 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -284,11 +283,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 28 [00:01:38.000] response: +Info 27 [00:01:37.000] response: { "responseRequired": false } -Info 29 [00:01:39.000] request: +Info 28 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -321,11 +320,11 @@ FsWatchesRecursive:: /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 -Info 33 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 34 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 32 [00:01:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 33 [00:01:43.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -333,17 +332,16 @@ Info 34 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 38 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 39 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 40 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 45 [00:01:55.000] Files (2) +Info 34 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 35 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 37 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 38 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 43 [00:01:53.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -353,20 +351,20 @@ Info 45 [00:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 46 [00:01:56.000] ----------------------------------------------- -Info 47 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 47 [00:01:58.000] Files (2) +Info 44 [00:01:54.000] ----------------------------------------------- +Info 45 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 45 [00:01:56.000] Files (2) -Info 47 [00:01:59.000] ----------------------------------------------- -Info 47 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 47 [00:02:01.000] Files (2) +Info 45 [00:01:57.000] ----------------------------------------------- +Info 45 [00:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 45 [00:01:59.000] Files (2) -Info 47 [00:02:02.000] ----------------------------------------------- -Info 47 [00:02:03.000] Open files: -Info 47 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 47 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 47 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 47 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 45 [00:02:00.000] ----------------------------------------------- +Info 45 [00:02:01.000] Open files: +Info 45 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 45 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 45 [00:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 45 [00:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -397,11 +395,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 47 [00:02:08.000] response: +Info 45 [00:02:06.000] response: { "responseRequired": false } -Info 48 [00:02:09.000] request: +Info 46 [00:02:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -472,7 +470,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 49 [00:02:10.000] response: +Info 47 [00:02:08.000] response: { "response": { "definitions": [ @@ -509,7 +507,7 @@ Info 49 [00:02:10.000] response: }, "responseRequired": true } -Info 50 [00:02:11.000] request: +Info 48 [00:02:09.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -580,7 +578,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [00:02:12.000] response: +Info 49 [00:02:10.000] response: { "response": { "definitions": [ @@ -617,7 +615,7 @@ Info 51 [00:02:12.000] response: }, "responseRequired": true } -Info 52 [00:02:13.000] request: +Info 50 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -688,7 +686,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [00:02:14.000] response: +Info 51 [00:02:12.000] response: { "response": { "definitions": [ @@ -725,7 +723,7 @@ Info 53 [00:02:14.000] response: }, "responseRequired": true } -Info 54 [00:02:15.000] request: +Info 52 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -796,7 +794,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:16.000] response: +Info 53 [00:02:14.000] response: { "response": { "definitions": [ @@ -833,7 +831,7 @@ Info 55 [00:02:16.000] response: }, "responseRequired": true } -Info 56 [00:02:17.000] request: +Info 54 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -904,7 +902,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:18.000] response: +Info 55 [00:02:16.000] response: { "response": { "definitions": [ @@ -941,7 +939,7 @@ Info 57 [00:02:18.000] response: }, "responseRequired": true } -Info 58 [00:02:19.000] request: +Info 56 [00:02:17.000] request: { "seq": 0, "type": "request", @@ -980,18 +978,18 @@ FsWatchesRecursive:: /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 (2) +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) -Info 60 [00:02:23.000] ----------------------------------------------- -Info 60 [00:02:24.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 60 [00:02:25.000] Files (2) +Info 58 [00:02:21.000] ----------------------------------------------- +Info 58 [00:02:22.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 58 [00:02:23.000] Files (2) -Info 60 [00:02:26.000] ----------------------------------------------- -Info 60 [00:02:27.000] Open files: -Info 60 [00:02:28.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 60 [00:02:29.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 58 [00:02:24.000] ----------------------------------------------- +Info 58 [00:02:25.000] Open files: +Info 58 [00:02:26.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 58 [00:02:27.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1024,11 +1022,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:30.000] response: +Info 58 [00:02:28.000] response: { "responseRequired": false } -Info 61 [00:02:31.000] request: +Info 59 [00:02:29.000] request: { "seq": 0, "type": "request", @@ -1069,22 +1067,22 @@ FsWatchesRecursive:: /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 -Info 65 [00:02:35.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 65 [00:02:36.000] Files (2) +Info 60 [00:02:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 61 [00:02:31.000] Search path: /user/username/projects/myproject/random +Info 62 [00:02:32.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 63 [00:02:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 63 [00:02:34.000] Files (2) -Info 65 [00:02:37.000] ----------------------------------------------- -Info 65 [00:02:38.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 65 [00:02:39.000] Files (2) +Info 63 [00:02:35.000] ----------------------------------------------- +Info 63 [00:02:36.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 63 [00:02:37.000] Files (2) -Info 65 [00:02:40.000] ----------------------------------------------- -Info 65 [00:02:41.000] Open files: -Info 65 [00:02:42.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 65 [00:02:43.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 65 [00:02:44.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 65 [00:02:45.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 63 [00:02:38.000] ----------------------------------------------- +Info 63 [00:02:39.000] Open files: +Info 63 [00:02:40.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 63 [00:02:41.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 63 [00:02:42.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 63 [00:02:43.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1115,11 +1113,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:46.000] response: +Info 63 [00:02:44.000] response: { "responseRequired": false } -Info 66 [00:02:47.000] request: +Info 64 [00:02:45.000] request: { "seq": 0, "type": "request", @@ -1158,18 +1156,18 @@ FsWatchesRecursive:: /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 (2) +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) -Info 68 [00:02:51.000] ----------------------------------------------- -Info 68 [00:02:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 68 [00:02:53.000] Files (2) +Info 66 [00:02:49.000] ----------------------------------------------- +Info 66 [00:02:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 66 [00:02:51.000] Files (2) -Info 68 [00:02:54.000] ----------------------------------------------- -Info 68 [00:02:55.000] Open files: -Info 68 [00:02:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 68 [00:02:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 66 [00:02:52.000] ----------------------------------------------- +Info 66 [00:02:53.000] Open files: +Info 66 [00:02:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 66 [00:02:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1202,11 +1200,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:58.000] response: +Info 66 [00:02:56.000] response: { "responseRequired": false } -Info 69 [00:02:59.000] request: +Info 67 [00:02:57.000] request: { "seq": 0, "type": "request", @@ -1247,16 +1245,16 @@ FsWatchesRecursive:: /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 (2) +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) -Info 71 [00:03:03.000] ----------------------------------------------- -Info 71 [00:03:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 71 [00:03:05.000] Files (2) +Info 69 [00:03:01.000] ----------------------------------------------- +Info 69 [00:03:02.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 69 [00:03:03.000] Files (2) -Info 71 [00:03:06.000] ----------------------------------------------- -Info 71 [00:03:07.000] Open files: +Info 69 [00:03:04.000] ----------------------------------------------- +Info 69 [00:03:05.000] Open files: After request PolledWatches:: @@ -1291,11 +1289,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 71 [00:03:08.000] response: +Info 69 [00:03:06.000] response: { "responseRequired": false } -Info 72 [00:03:09.000] request: +Info 70 [00:03:07.000] request: { "seq": 0, "type": "request", @@ -1338,12 +1336,12 @@ FsWatchesRecursive:: /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 -Info 76 [00:03:13.000] `remove Project:: -Info 77 [00:03:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 78 [00:03:15.000] Files (2) +Info 71 [00:03:08.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 72 [00:03:09.000] Search path: /user/username/projects/myproject/random +Info 73 [00:03:10.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 74 [00:03:11.000] `remove Project:: +Info 75 [00:03:12.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 76 [00:03:13.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/main/main.ts @@ -1353,27 +1351,27 @@ Info 78 [00:03:15.000] Files (2) main.ts Matched by default include pattern '**/*' -Info 79 [00:03:16.000] ----------------------------------------------- -Info 80 [00:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 81 [00:03:18.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 82 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 83 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 84 [00:03:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 85 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 86 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 87 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 88 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 89 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 90 [00:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 91 [00:03:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 92 [00:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 93 [00:03:30.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 93 [00:03:31.000] Files (2) - -Info 93 [00:03:32.000] ----------------------------------------------- -Info 93 [00:03:33.000] Open files: -Info 93 [00:03:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 93 [00:03:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 77 [00:03:14.000] ----------------------------------------------- +Info 78 [00:03:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 79 [00:03:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 80 [00:03:17.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 81 [00:03:18.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 82 [00:03:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 83 [00:03:20.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 84 [00:03:21.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 85 [00:03:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 86 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 87 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 88 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 89 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 90 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 91 [00:03:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 91 [00:03:29.000] Files (2) + +Info 91 [00:03:30.000] ----------------------------------------------- +Info 91 [00:03:31.000] Open files: +Info 91 [00:03:32.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 91 [00:03:33.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1392,7 +1390,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 93 [00:03:36.000] response: +Info 91 [00:03:34.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-changes-with-timeout-before-request.js index af66767e1fe4f..5113f448e1da7 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 @@ -223,9 +223,8 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +235,20 @@ Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:28.000] Files (3) +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +261,16 @@ Info 25 [00:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:29.000] ----------------------------------------------- -Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:33.000] Files (3) +Info 25 [00:01:28.000] ----------------------------------------------- +Info 26 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:32.000] Files (3) -Info 29 [00:01:34.000] ----------------------------------------------- -Info 29 [00:01:35.000] Open files: -Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:33.000] ----------------------------------------------- +Info 28 [00:01:34.000] Open files: +Info 28 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:38.000] response: +Info 28 [00:01:37.000] response: { "responseRequired": false } -Info 30 [00:01:39.000] request: +Info 29 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -337,11 +336,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:43.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -349,17 +348,16 @@ Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:55.000] Files (2) +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:53.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -369,20 +367,20 @@ Info 46 [00:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:56.000] ----------------------------------------------- -Info 48 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:58.000] Files (3) +Info 45 [00:01:54.000] ----------------------------------------------- +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) -Info 48 [00:01:59.000] ----------------------------------------------- -Info 48 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:02:01.000] Files (2) +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) -Info 48 [00:02:02.000] ----------------------------------------------- -Info 48 [00:02:03.000] Open files: -Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -415,11 +413,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:08.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 49 [00:02:09.000] request: +Info 47 [00:02:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -462,8 +460,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -500,7 +498,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:12.000] response: +Info 50 [00:02:10.000] response: { "response": { "definitions": [ @@ -537,10 +535,10 @@ Info 52 [00:02:12.000] response: }, "responseRequired": true } -Info 53 [00:02:16.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 54 [00:02:17.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 55 [00:02:18.000] Scheduled: *ensureProjectForOpenFiles* -Info 56 [00:02:19.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 51 [00:02:14.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 52 [00:02:15.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 53 [00:02:16.000] Scheduled: *ensureProjectForOpenFiles* +Info 54 [00:02:17.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/decls/FnS.d.ts.map] {"version":3,"file":"FnS.d.ts","sourceRoot":"","sources":["../dependency/FnS.ts"],"names":[],"mappings":"AAAA,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,wBAAgB,GAAG,SAAM;AACzB,eAAO,MAAM,CAAC,KAAK,CAAC"} @@ -580,38 +578,38 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:20.000] Running: /user/username/projects/myproject/main/tsconfig.json -Info 58 [00:02:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 59 [00:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 60 [00:02:23.000] Running: *ensureProjectForOpenFiles* -Info 61 [00:02:24.000] Before ensureProjectForOpenFiles: -Info 62 [00:02:25.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 62 [00:02:26.000] Files (3) - -Info 62 [00:02:27.000] ----------------------------------------------- -Info 62 [00:02:28.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 62 [00:02:29.000] Files (2) - -Info 62 [00:02:30.000] ----------------------------------------------- -Info 62 [00:02:31.000] Open files: -Info 62 [00:02:32.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 62 [00:02:33.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 62 [00:02:34.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 62 [00:02:35.000] Projects: /user/username/projects/myproject/random/tsconfig.json -Info 62 [00:02:36.000] After ensureProjectForOpenFiles: -Info 63 [00:02:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 63 [00:02:38.000] Files (3) - -Info 63 [00:02:39.000] ----------------------------------------------- -Info 63 [00:02:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 63 [00:02:41.000] Files (2) - -Info 63 [00:02:42.000] ----------------------------------------------- -Info 63 [00:02:43.000] Open files: -Info 63 [00:02:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 63 [00:02:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 63 [00:02:46.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 63 [00:02:47.000] Projects: /user/username/projects/myproject/random/tsconfig.json +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 +Info 58 [00:02:21.000] Running: *ensureProjectForOpenFiles* +Info 59 [00:02:22.000] Before ensureProjectForOpenFiles: +Info 60 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 60 [00:02:24.000] Files (3) + +Info 60 [00:02:25.000] ----------------------------------------------- +Info 60 [00:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:27.000] Files (2) + +Info 60 [00:02:28.000] ----------------------------------------------- +Info 60 [00:02:29.000] Open files: +Info 60 [00:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 60 [00:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 60 [00:02:32.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 60 [00:02:33.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 60 [00:02:34.000] After ensureProjectForOpenFiles: +Info 61 [00:02:35.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 61 [00:02:36.000] Files (3) + +Info 61 [00:02:37.000] ----------------------------------------------- +Info 61 [00:02:38.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 61 [00:02:39.000] Files (2) + +Info 61 [00:02:40.000] ----------------------------------------------- +Info 61 [00:02:41.000] Open files: +Info 61 [00:02:42.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 61 [00:02:43.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 61 [00:02:44.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 61 [00:02:45.000] Projects: /user/username/projects/myproject/random/tsconfig.json After running timeout callbacks PolledWatches:: @@ -648,7 +646,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:48.000] request: +Info 61 [00:02:46.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -731,7 +729,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:49.000] response: +Info 62 [00:02:47.000] response: { "response": { "definitions": [ @@ -768,7 +766,7 @@ Info 64 [00:02:49.000] response: }, "responseRequired": true } -Info 65 [00:02:50.000] request: +Info 63 [00:02:48.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -851,7 +849,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:51.000] response: +Info 64 [00:02:49.000] response: { "response": { "definitions": [ @@ -888,7 +886,7 @@ Info 66 [00:02:51.000] response: }, "responseRequired": true } -Info 67 [00:02:52.000] request: +Info 65 [00:02:50.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -971,7 +969,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:53.000] response: +Info 66 [00:02:51.000] response: { "response": { "definitions": [ @@ -1008,7 +1006,7 @@ Info 68 [00:02:53.000] response: }, "responseRequired": true } -Info 69 [00:02:54.000] request: +Info 67 [00:02:52.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1091,7 +1089,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:55.000] response: +Info 68 [00:02:53.000] response: { "response": { "definitions": [ @@ -1128,7 +1126,7 @@ Info 70 [00:02:55.000] response: }, "responseRequired": true } -Info 71 [00:02:56.000] request: +Info 69 [00:02:54.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1211,7 +1209,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:57.000] response: +Info 70 [00:02:55.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-changes.js index 40fb6cef17231..9257a2b207b20 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 @@ -223,9 +223,8 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +235,20 @@ Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:28.000] Files (3) +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +261,16 @@ Info 25 [00:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:29.000] ----------------------------------------------- -Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:33.000] Files (3) +Info 25 [00:01:28.000] ----------------------------------------------- +Info 26 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:32.000] Files (3) -Info 29 [00:01:34.000] ----------------------------------------------- -Info 29 [00:01:35.000] Open files: -Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:33.000] ----------------------------------------------- +Info 28 [00:01:34.000] Open files: +Info 28 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:38.000] response: +Info 28 [00:01:37.000] response: { "responseRequired": false } -Info 30 [00:01:39.000] request: +Info 29 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -337,11 +336,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:43.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -349,17 +348,16 @@ Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:55.000] Files (2) +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:53.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -369,20 +367,20 @@ Info 46 [00:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:56.000] ----------------------------------------------- -Info 48 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:58.000] Files (3) +Info 45 [00:01:54.000] ----------------------------------------------- +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) -Info 48 [00:01:59.000] ----------------------------------------------- -Info 48 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:02:01.000] Files (2) +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) -Info 48 [00:02:02.000] ----------------------------------------------- -Info 48 [00:02:03.000] Open files: -Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -415,11 +413,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:08.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 49 [00:02:09.000] request: +Info 47 [00:02:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -462,8 +460,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -500,7 +498,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:12.000] response: +Info 50 [00:02:10.000] response: { "response": { "definitions": [ @@ -537,11 +535,11 @@ Info 52 [00:02:12.000] response: }, "responseRequired": true } -Info 53 [00:02:16.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 54 [00:02:17.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 55 [00:02:18.000] Scheduled: *ensureProjectForOpenFiles* -Info 56 [00:02:19.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 57 [00:02:20.000] request: +Info 51 [00:02:14.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 52 [00:02:15.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 53 [00:02:16.000] Scheduled: *ensureProjectForOpenFiles* +Info 54 [00:02:17.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 1:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 55 [00:02:18.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -591,8 +589,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 58 [00:02:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 59 [00:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 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:: @@ -629,7 +627,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:23.000] response: +Info 58 [00:02:21.000] response: { "response": { "definitions": [ @@ -666,7 +664,7 @@ Info 60 [00:02:23.000] response: }, "responseRequired": true } -Info 61 [00:02:24.000] request: +Info 59 [00:02:22.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -749,7 +747,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [00:02:25.000] response: +Info 60 [00:02:23.000] response: { "response": { "definitions": [ @@ -786,7 +784,7 @@ Info 62 [00:02:25.000] response: }, "responseRequired": true } -Info 63 [00:02:26.000] request: +Info 61 [00:02:24.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -869,7 +867,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:27.000] response: +Info 62 [00:02:25.000] response: { "response": { "definitions": [ @@ -906,7 +904,7 @@ Info 64 [00:02:27.000] response: }, "responseRequired": true } -Info 65 [00:02:28.000] request: +Info 63 [00:02:26.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -989,7 +987,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:29.000] response: +Info 64 [00:02:27.000] response: { "response": { "definitions": [ @@ -1026,7 +1024,7 @@ Info 66 [00:02:29.000] response: }, "responseRequired": true } -Info 67 [00:02:30.000] request: +Info 65 [00:02:28.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1109,7 +1107,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:31.000] response: +Info 66 [00:02:29.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-created.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-created.js index cf865f9fc32e0..e68fcdbaff349 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 @@ -220,9 +220,8 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -233,20 +232,20 @@ Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:22.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -259,16 +258,16 @@ Info 25 [00:01:29.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:30.000] ----------------------------------------------- -Info 27 [00:01:31.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:32.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:34.000] Files (3) +Info 25 [00:01:29.000] ----------------------------------------------- +Info 26 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:33.000] Files (3) -Info 29 [00:01:35.000] ----------------------------------------------- -Info 29 [00:01:36.000] Open files: -Info 29 [00:01:37.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:38.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:34.000] ----------------------------------------------- +Info 28 [00:01:35.000] Open files: +Info 28 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:39.000] response: +Info 28 [00:01:38.000] response: { "responseRequired": false } -Info 30 [00:01:40.000] request: +Info 29 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -334,11 +333,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:41.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:42.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:43.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:45.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 30 [00:01:40.000] Search path: /user/username/projects/myproject/random +Info 31 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 32 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -346,17 +345,16 @@ Info 35 [00:01:45.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:48.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:49.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:56.000] Files (2) +Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -366,20 +364,20 @@ Info 46 [00:01:56.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:57.000] ----------------------------------------------- -Info 48 [00:01:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:59.000] Files (3) +Info 45 [00:01:55.000] ----------------------------------------------- +Info 46 [00:01:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:57.000] Files (3) -Info 48 [00:02:00.000] ----------------------------------------------- -Info 48 [00:02:01.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:02:02.000] Files (2) +Info 46 [00:01:58.000] ----------------------------------------------- +Info 46 [00:01:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:02:00.000] Files (2) -Info 48 [00:02:03.000] ----------------------------------------------- -Info 48 [00:02:04.000] Open files: -Info 48 [00:02:05.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:06.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:02:01.000] ----------------------------------------------- +Info 46 [00:02:02.000] Open files: +Info 46 [00:02:03.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:05.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:06.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -412,11 +410,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:09.000] response: +Info 46 [00:02:07.000] response: { "responseRequired": false } -Info 49 [00:02:10.000] request: +Info 47 [00:02:08.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -459,7 +457,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +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 PolledWatches:: @@ -494,7 +492,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [00:02:12.000] response: +Info 49 [00:02:10.000] response: { "response": { "definitions": [ @@ -531,14 +529,14 @@ Info 51 [00:02:12.000] response: }, "responseRequired": true } -Info 52 [00:02:15.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 53 [00:02:16.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 54 [00:02:17.000] Scheduled: *ensureProjectForOpenFiles* -Info 55 [00:02:18.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 56 [00:02:19.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 57 [00:02:20.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 58 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 59 [00:02:22.000] request: +Info 50 [00:02:13.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 51 [00:02:14.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 52 [00:02:15.000] Scheduled: *ensureProjectForOpenFiles* +Info 53 [00:02:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 54 [00:02:17.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 0:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 55 [00:02:18.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 56 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 57 [00:02:20.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -584,10 +582,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 60 [00:02:23.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 61 [00:02:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 62 [00:02:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 63 [00:02:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 58 [00:02:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 59 [00:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 60 [00:02:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 61 [00:02:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info After request PolledWatches:: @@ -624,7 +622,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:27.000] response: +Info 62 [00:02:25.000] response: { "response": { "definitions": [ @@ -661,7 +659,7 @@ Info 64 [00:02:27.000] response: }, "responseRequired": true } -Info 65 [00:02:28.000] request: +Info 63 [00:02:26.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -744,7 +742,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:29.000] response: +Info 64 [00:02:27.000] response: { "response": { "definitions": [ @@ -781,7 +779,7 @@ Info 66 [00:02:29.000] response: }, "responseRequired": true } -Info 67 [00:02:30.000] request: +Info 65 [00:02:28.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -864,7 +862,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:31.000] response: +Info 66 [00:02:29.000] response: { "response": { "definitions": [ @@ -901,7 +899,7 @@ Info 68 [00:02:31.000] response: }, "responseRequired": true } -Info 69 [00:02:32.000] request: +Info 67 [00:02:30.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -984,7 +982,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:33.000] response: +Info 68 [00:02:31.000] response: { "response": { "definitions": [ @@ -1021,7 +1019,7 @@ Info 70 [00:02:33.000] response: }, "responseRequired": true } -Info 71 [00:02:34.000] request: +Info 69 [00:02:32.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1104,7 +1102,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:35.000] response: +Info 70 [00:02:33.000] response: { "response": { "definitions": [ @@ -1141,7 +1139,7 @@ Info 72 [00:02:35.000] response: }, "responseRequired": true } -Info 73 [00:02:36.000] request: +Info 71 [00:02:34.000] request: { "seq": 0, "type": "request", @@ -1186,18 +1184,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 75 [00:02:38.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 75 [00:02:39.000] Files (3) +Info 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) -Info 75 [00:02:40.000] ----------------------------------------------- -Info 75 [00:02:41.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 75 [00:02:42.000] Files (2) +Info 73 [00:02:38.000] ----------------------------------------------- +Info 73 [00:02:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 73 [00:02:40.000] Files (2) -Info 75 [00:02:43.000] ----------------------------------------------- -Info 75 [00:02:44.000] Open files: -Info 75 [00:02:45.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 75 [00:02:46.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 73 [00:02:41.000] ----------------------------------------------- +Info 73 [00:02:42.000] Open files: +Info 73 [00:02:43.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 73 [00:02:44.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1236,11 +1234,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 75 [00:02:47.000] response: +Info 73 [00:02:45.000] response: { "responseRequired": false } -Info 76 [00:02:48.000] request: +Info 74 [00:02:46.000] request: { "seq": 0, "type": "request", @@ -1287,22 +1285,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:02:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 78 [00:02:50.000] Search path: /user/username/projects/myproject/random -Info 79 [00:02:51.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 80 [00:02:52.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 80 [00:02:53.000] Files (3) +Info 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 +Info 78 [00:02:50.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 78 [00:02:51.000] Files (3) -Info 80 [00:02:54.000] ----------------------------------------------- -Info 80 [00:02:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 80 [00:02:56.000] Files (2) +Info 78 [00:02:52.000] ----------------------------------------------- +Info 78 [00:02:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 78 [00:02:54.000] Files (2) -Info 80 [00:02:57.000] ----------------------------------------------- -Info 80 [00:02:58.000] Open files: -Info 80 [00:02:59.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 80 [00:03:00.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 80 [00:03:01.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 80 [00:03:02.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 78 [00:02:55.000] ----------------------------------------------- +Info 78 [00:02:56.000] Open files: +Info 78 [00:02:57.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 78 [00:02:58.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 78 [00:02:59.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 78 [00:03:00.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1339,11 +1337,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 80 [00:03:03.000] response: +Info 78 [00:03:01.000] response: { "responseRequired": false } -Info 81 [00:03:04.000] request: +Info 79 [00:03:02.000] request: { "seq": 0, "type": "request", @@ -1388,18 +1386,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 82 [00:03:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 83 [00:03:06.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 83 [00:03:07.000] Files (3) +Info 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) -Info 83 [00:03:08.000] ----------------------------------------------- -Info 83 [00:03:09.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 83 [00:03:10.000] Files (2) +Info 81 [00:03:06.000] ----------------------------------------------- +Info 81 [00:03:07.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 81 [00:03:08.000] Files (2) -Info 83 [00:03:11.000] ----------------------------------------------- -Info 83 [00:03:12.000] Open files: -Info 83 [00:03:13.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 83 [00:03:14.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 81 [00:03:09.000] ----------------------------------------------- +Info 81 [00:03:10.000] Open files: +Info 81 [00:03:11.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 81 [00:03:12.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1438,11 +1436,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [00:03:15.000] response: +Info 81 [00:03:13.000] response: { "responseRequired": false } -Info 84 [00:03:16.000] request: +Info 82 [00:03:14.000] request: { "seq": 0, "type": "request", @@ -1489,16 +1487,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 85 [00:03:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 86 [00:03:18.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 86 [00:03:19.000] Files (3) +Info 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) -Info 86 [00:03:20.000] ----------------------------------------------- -Info 86 [00:03:21.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 86 [00:03:22.000] Files (2) +Info 84 [00:03:18.000] ----------------------------------------------- +Info 84 [00:03:19.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 84 [00:03:20.000] Files (2) -Info 86 [00:03:23.000] ----------------------------------------------- -Info 86 [00:03:24.000] Open files: +Info 84 [00:03:21.000] ----------------------------------------------- +Info 84 [00:03:22.000] Open files: After request PolledWatches:: @@ -1539,11 +1537,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:25.000] response: +Info 84 [00:03:23.000] response: { "responseRequired": false } -Info 87 [00:03:26.000] request: +Info 85 [00:03:24.000] request: { "seq": 0, "type": "request", @@ -1592,12 +1590,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 88 [00:03:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 89 [00:03:28.000] Search path: /user/username/projects/myproject/random -Info 90 [00:03:29.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 91 [00:03:30.000] `remove Project:: -Info 92 [00:03:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 93 [00:03:32.000] Files (3) +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 +Info 89 [00:03:28.000] `remove Project:: +Info 90 [00:03:29.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 91 [00:03:30.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -1610,30 +1608,30 @@ Info 93 [00:03:32.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 94 [00:03:33.000] ----------------------------------------------- -Info 95 [00:03:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 96 [00:03:35.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 97 [00:03:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 98 [00:03:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 99 [00:03:38.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 100 [00:03:39.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 101 [00:03:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 102 [00:03:41.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 103 [00:03:42.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 104 [00:03:43.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 105 [00:03:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 106 [00:03:45.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 107 [00:03:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 108 [00:03:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 109 [00:03:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 110 [00:03:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 111 [00:03:50.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 111 [00:03:51.000] Files (2) - -Info 111 [00:03:52.000] ----------------------------------------------- -Info 111 [00:03:53.000] Open files: -Info 111 [00:03:54.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 111 [00:03:55.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 92 [00:03:31.000] ----------------------------------------------- +Info 93 [00:03:32.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 94 [00:03:33.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 95 [00:03:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 96 [00:03:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 97 [00:03:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 98 [00:03:37.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 99 [00:03:38.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 100 [00:03:39.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 101 [00:03:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 102 [00:03:41.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 103 [00:03:42.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 104 [00:03:43.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 105 [00:03:44.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 106 [00:03:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 107 [00:03:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 108 [00:03:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 109 [00:03:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 109 [00:03:49.000] Files (2) + +Info 109 [00:03:50.000] ----------------------------------------------- +Info 109 [00:03:51.000] Open files: +Info 109 [00:03:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 109 [00:03:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1652,7 +1650,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [00:03:56.000] response: +Info 109 [00:03:54.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-deleted.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-deleted.js index e5536480b8ed5..b2cfca12fba24 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 @@ -223,9 +223,8 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +235,20 @@ Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:28.000] Files (3) +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +261,16 @@ Info 25 [00:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:29.000] ----------------------------------------------- -Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:33.000] Files (3) +Info 25 [00:01:28.000] ----------------------------------------------- +Info 26 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:32.000] Files (3) -Info 29 [00:01:34.000] ----------------------------------------------- -Info 29 [00:01:35.000] Open files: -Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:33.000] ----------------------------------------------- +Info 28 [00:01:34.000] Open files: +Info 28 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:38.000] response: +Info 28 [00:01:37.000] response: { "responseRequired": false } -Info 30 [00:01:39.000] request: +Info 29 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -337,11 +336,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:43.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -349,17 +348,16 @@ Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:55.000] Files (2) +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:53.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -369,20 +367,20 @@ Info 46 [00:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:56.000] ----------------------------------------------- -Info 48 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:58.000] Files (3) +Info 45 [00:01:54.000] ----------------------------------------------- +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) -Info 48 [00:01:59.000] ----------------------------------------------- -Info 48 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:02:01.000] Files (2) +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) -Info 48 [00:02:02.000] ----------------------------------------------- -Info 48 [00:02:03.000] Open files: -Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -415,11 +413,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:08.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 49 [00:02:09.000] request: +Info 47 [00:02:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -462,8 +460,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -500,7 +498,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:12.000] response: +Info 50 [00:02:10.000] response: { "response": { "definitions": [ @@ -537,14 +535,14 @@ Info 52 [00:02:12.000] response: }, "responseRequired": true } -Info 53 [00:02:14.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 54 [00:02:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 55 [00:02:16.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json -Info 56 [00:02:17.000] Scheduled: *ensureProjectForOpenFiles* -Info 57 [00:02:18.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 58 [00:02:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 59 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 60 [00:02:21.000] request: +Info 51 [00:02:12.000] FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 52 [00:02:13.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 53 [00:02:14.000] Scheduled: /user/username/projects/myproject/main/tsconfig.json +Info 54 [00:02:15.000] Scheduled: *ensureProjectForOpenFiles* +Info 55 [00:02:16.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map 2:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info +Info 56 [00:02:17.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 57 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/decls/FnS.d.ts.map :: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 58 [00:02:19.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -590,9 +588,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 62 [00:02:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 63 [00:02:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 59 [00:02:20.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 60 [00:02:21.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 61 [00:02:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file After request PolledWatches:: @@ -629,7 +627,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:25.000] response: +Info 62 [00:02:23.000] response: { "response": { "definitions": [ @@ -666,7 +664,7 @@ Info 64 [00:02:25.000] response: }, "responseRequired": true } -Info 65 [00:02:26.000] request: +Info 63 [00:02:24.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -749,7 +747,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 66 [00:02:27.000] response: +Info 64 [00:02:25.000] response: { "response": { "definitions": [ @@ -786,7 +784,7 @@ Info 66 [00:02:27.000] response: }, "responseRequired": true } -Info 67 [00:02:28.000] request: +Info 65 [00:02:26.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -869,7 +867,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 68 [00:02:29.000] response: +Info 66 [00:02:27.000] response: { "response": { "definitions": [ @@ -906,7 +904,7 @@ Info 68 [00:02:29.000] response: }, "responseRequired": true } -Info 69 [00:02:30.000] request: +Info 67 [00:02:28.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -989,7 +987,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:02:31.000] response: +Info 68 [00:02:29.000] response: { "response": { "definitions": [ @@ -1026,7 +1024,7 @@ Info 70 [00:02:31.000] response: }, "responseRequired": true } -Info 71 [00:02:32.000] request: +Info 69 [00:02:30.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1109,7 +1107,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:02:33.000] response: +Info 70 [00:02:31.000] response: { "response": { "definitions": [ @@ -1146,7 +1144,7 @@ Info 72 [00:02:33.000] response: }, "responseRequired": true } -Info 73 [00:02:34.000] request: +Info 71 [00:02:32.000] request: { "seq": 0, "type": "request", @@ -1191,18 +1189,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 74 [00:02:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 75 [00:02:36.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 75 [00:02:37.000] Files (3) +Info 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) -Info 75 [00:02:38.000] ----------------------------------------------- -Info 75 [00:02:39.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 75 [00:02:40.000] Files (2) +Info 73 [00:02:36.000] ----------------------------------------------- +Info 73 [00:02:37.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 73 [00:02:38.000] Files (2) -Info 75 [00:02:41.000] ----------------------------------------------- -Info 75 [00:02:42.000] Open files: -Info 75 [00:02:43.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 75 [00:02:44.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 73 [00:02:39.000] ----------------------------------------------- +Info 73 [00:02:40.000] Open files: +Info 73 [00:02:41.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 73 [00:02:42.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1241,11 +1239,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 75 [00:02:45.000] response: +Info 73 [00:02:43.000] response: { "responseRequired": false } -Info 76 [00:02:46.000] request: +Info 74 [00:02:44.000] request: { "seq": 0, "type": "request", @@ -1292,23 +1290,23 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 77 [00:02:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 78 [00:02:48.000] Search path: /user/username/projects/myproject/random -Info 79 [00:02:49.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 80 [00:02:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info -Info 81 [00:02:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 81 [00:02:52.000] Files (3) +Info 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 +Info 78 [00:02:48.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +Info 79 [00:02:49.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 79 [00:02:50.000] Files (3) -Info 81 [00:02:53.000] ----------------------------------------------- -Info 81 [00:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 81 [00:02:55.000] Files (2) +Info 79 [00:02:51.000] ----------------------------------------------- +Info 79 [00:02:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 79 [00:02:53.000] Files (2) -Info 81 [00:02:56.000] ----------------------------------------------- -Info 81 [00:02:57.000] Open files: -Info 81 [00:02:58.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 81 [00:02:59.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 81 [00:03:00.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 81 [00:03:01.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 79 [00:02:54.000] ----------------------------------------------- +Info 79 [00:02:55.000] Open files: +Info 79 [00:02:56.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 79 [00:02:57.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 79 [00:02:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 79 [00:02:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1343,11 +1341,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 81 [00:03:02.000] response: +Info 79 [00:03:00.000] response: { "responseRequired": false } -Info 82 [00:03:03.000] request: +Info 80 [00:03:01.000] request: { "seq": 0, "type": "request", @@ -1390,18 +1388,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 83 [00:03:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 84 [00:03:05.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 84 [00:03:06.000] Files (3) +Info 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) -Info 84 [00:03:07.000] ----------------------------------------------- -Info 84 [00:03:08.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 84 [00:03:09.000] Files (2) +Info 82 [00:03:05.000] ----------------------------------------------- +Info 82 [00:03:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 82 [00:03:07.000] Files (2) -Info 84 [00:03:10.000] ----------------------------------------------- -Info 84 [00:03:11.000] Open files: -Info 84 [00:03:12.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 84 [00:03:13.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 82 [00:03:08.000] ----------------------------------------------- +Info 82 [00:03:09.000] Open files: +Info 82 [00:03:10.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 82 [00:03:11.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1438,11 +1436,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 84 [00:03:14.000] response: +Info 82 [00:03:12.000] response: { "responseRequired": false } -Info 85 [00:03:15.000] request: +Info 83 [00:03:13.000] request: { "seq": 0, "type": "request", @@ -1487,16 +1485,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 86 [00:03:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 87 [00:03:17.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 87 [00:03:18.000] Files (3) +Info 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) -Info 87 [00:03:19.000] ----------------------------------------------- -Info 87 [00:03:20.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 87 [00:03:21.000] Files (2) +Info 85 [00:03:17.000] ----------------------------------------------- +Info 85 [00:03:18.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 85 [00:03:19.000] Files (2) -Info 87 [00:03:22.000] ----------------------------------------------- -Info 87 [00:03:23.000] Open files: +Info 85 [00:03:20.000] ----------------------------------------------- +Info 85 [00:03:21.000] Open files: After request PolledWatches:: @@ -1535,11 +1533,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 87 [00:03:24.000] response: +Info 85 [00:03:22.000] response: { "responseRequired": false } -Info 88 [00:03:25.000] request: +Info 86 [00:03:23.000] request: { "seq": 0, "type": "request", @@ -1586,12 +1584,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 89 [00:03:26.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 90 [00:03:27.000] Search path: /user/username/projects/myproject/random -Info 91 [00:03:28.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 92 [00:03:29.000] `remove Project:: -Info 93 [00:03:30.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 94 [00:03:31.000] Files (3) +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 +Info 90 [00:03:27.000] `remove Project:: +Info 91 [00:03:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 92 [00:03:29.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -1604,29 +1602,29 @@ Info 94 [00:03:31.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 95 [00:03:32.000] ----------------------------------------------- -Info 96 [00:03:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 97 [00:03:34.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 98 [00:03:35.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 99 [00:03:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 100 [00:03:37.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 101 [00:03:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 102 [00:03:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 103 [00:03:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 104 [00:03:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 105 [00:03:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 106 [00:03:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 107 [00:03:44.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 108 [00:03:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 109 [00:03:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 110 [00:03:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 111 [00:03:48.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 111 [00:03:49.000] Files (2) - -Info 111 [00:03:50.000] ----------------------------------------------- -Info 111 [00:03:51.000] Open files: -Info 111 [00:03:52.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 111 [00:03:53.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 93 [00:03:30.000] ----------------------------------------------- +Info 94 [00:03:31.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 95 [00:03:32.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 96 [00:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 97 [00:03:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 98 [00:03:35.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 99 [00:03:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 100 [00:03:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 101 [00:03:38.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 102 [00:03:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 103 [00:03:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 104 [00:03:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 105 [00:03:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 106 [00:03:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 107 [00:03:44.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 108 [00:03:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 109 [00:03:46.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 109 [00:03:47.000] Files (2) + +Info 109 [00:03:48.000] ----------------------------------------------- +Info 109 [00:03:49.000] Open files: +Info 109 [00:03:50.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 109 [00:03:51.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1645,7 +1643,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 111 [00:03:54.000] response: +Info 109 [00:03:52.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-not-present.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/dependency-dtsMap-not-present.js index b76fd93a5c0e8..0194b41ac0c7b 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 @@ -220,9 +220,8 @@ Info 6 [00:01:10.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:14.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -233,20 +232,20 @@ Info 11 [00:01:15.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:22.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:28.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:29.000] Files (3) +Info 11 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:28.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -259,16 +258,16 @@ Info 25 [00:01:29.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:30.000] ----------------------------------------------- -Info 27 [00:01:31.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:32.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:33.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:34.000] Files (3) +Info 25 [00:01:29.000] ----------------------------------------------- +Info 26 [00:01:30.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:33.000] Files (3) -Info 29 [00:01:35.000] ----------------------------------------------- -Info 29 [00:01:36.000] Open files: -Info 29 [00:01:37.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:38.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:34.000] ----------------------------------------------- +Info 28 [00:01:35.000] Open files: +Info 28 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -295,11 +294,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:39.000] response: +Info 28 [00:01:38.000] response: { "responseRequired": false } -Info 30 [00:01:40.000] request: +Info 29 [00:01:39.000] request: { "seq": 0, "type": "request", @@ -334,11 +333,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:41.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:42.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:43.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:45.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +Info 30 [00:01:40.000] Search path: /user/username/projects/myproject/random +Info 31 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 32 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json +Info 33 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -346,17 +345,16 @@ Info 35 [00:01:45.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:48.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:49.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:55.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:56.000] Files (2) +Info 35 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:53.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:54.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -366,20 +364,20 @@ Info 46 [00:01:56.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:57.000] ----------------------------------------------- -Info 48 [00:01:58.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:59.000] Files (3) +Info 45 [00:01:55.000] ----------------------------------------------- +Info 46 [00:01:56.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:57.000] Files (3) -Info 48 [00:02:00.000] ----------------------------------------------- -Info 48 [00:02:01.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:02:02.000] Files (2) +Info 46 [00:01:58.000] ----------------------------------------------- +Info 46 [00:01:59.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:02:00.000] Files (2) -Info 48 [00:02:03.000] ----------------------------------------------- -Info 48 [00:02:04.000] Open files: -Info 48 [00:02:05.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:06.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:07.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:08.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:02:01.000] ----------------------------------------------- +Info 46 [00:02:02.000] Open files: +Info 46 [00:02:03.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:04.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:05.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:06.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -412,11 +410,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:09.000] response: +Info 46 [00:02:07.000] response: { "responseRequired": false } -Info 49 [00:02:10.000] request: +Info 47 [00:02:08.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -459,7 +457,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +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 PolledWatches:: @@ -494,7 +492,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 51 [00:02:12.000] response: +Info 49 [00:02:10.000] response: { "response": { "definitions": [ @@ -531,7 +529,7 @@ Info 51 [00:02:12.000] response: }, "responseRequired": true } -Info 52 [00:02:13.000] request: +Info 50 [00:02:11.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -610,7 +608,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 53 [00:02:14.000] response: +Info 51 [00:02:12.000] response: { "response": { "definitions": [ @@ -647,7 +645,7 @@ Info 53 [00:02:14.000] response: }, "responseRequired": true } -Info 54 [00:02:15.000] request: +Info 52 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -726,7 +724,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:16.000] response: +Info 53 [00:02:14.000] response: { "response": { "definitions": [ @@ -763,7 +761,7 @@ Info 55 [00:02:16.000] response: }, "responseRequired": true } -Info 56 [00:02:17.000] request: +Info 54 [00:02:15.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -842,7 +840,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 57 [00:02:18.000] response: +Info 55 [00:02:16.000] response: { "response": { "definitions": [ @@ -879,7 +877,7 @@ Info 57 [00:02:18.000] response: }, "responseRequired": true } -Info 58 [00:02:19.000] request: +Info 56 [00:02:17.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -958,7 +956,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:20.000] response: +Info 57 [00:02:18.000] response: { "response": { "definitions": [ @@ -995,7 +993,7 @@ Info 59 [00:02:20.000] response: }, "responseRequired": true } -Info 60 [00:02:21.000] request: +Info 58 [00:02:19.000] request: { "seq": 0, "type": "request", @@ -1038,18 +1036,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 62 [00:02:23.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 62 [00:02:24.000] Files (3) +Info 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) -Info 62 [00:02:25.000] ----------------------------------------------- -Info 62 [00:02:26.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 62 [00:02:27.000] Files (2) +Info 60 [00:02:23.000] ----------------------------------------------- +Info 60 [00:02:24.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 60 [00:02:25.000] Files (2) -Info 62 [00:02:28.000] ----------------------------------------------- -Info 62 [00:02:29.000] Open files: -Info 62 [00:02:30.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 62 [00:02:31.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 60 [00:02:26.000] ----------------------------------------------- +Info 60 [00:02:27.000] Open files: +Info 60 [00:02:28.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 60 [00:02:29.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -1086,11 +1084,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 62 [00:02:32.000] response: +Info 60 [00:02:30.000] response: { "responseRequired": false } -Info 63 [00:02:33.000] request: +Info 61 [00:02:31.000] request: { "seq": 0, "type": "request", @@ -1135,22 +1133,22 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 64 [00:02:34.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 65 [00:02:35.000] Search path: /user/username/projects/myproject/random -Info 66 [00:02:36.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 67 [00:02:37.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 67 [00:02:38.000] Files (3) +Info 62 [00:02:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 63 [00:02:33.000] Search path: /user/username/projects/myproject/random +Info 64 [00:02:34.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 65 [00:02:35.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 65 [00:02:36.000] Files (3) -Info 67 [00:02:39.000] ----------------------------------------------- -Info 67 [00:02:40.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 67 [00:02:41.000] Files (2) +Info 65 [00:02:37.000] ----------------------------------------------- +Info 65 [00:02:38.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 65 [00:02:39.000] Files (2) -Info 67 [00:02:42.000] ----------------------------------------------- -Info 67 [00:02:43.000] Open files: -Info 67 [00:02:44.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 67 [00:02:45.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 67 [00:02:46.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 67 [00:02:47.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 65 [00:02:40.000] ----------------------------------------------- +Info 65 [00:02:41.000] Open files: +Info 65 [00:02:42.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 65 [00:02:43.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 65 [00:02:44.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 65 [00:02:45.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1185,11 +1183,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:48.000] response: +Info 65 [00:02:46.000] response: { "responseRequired": false } -Info 68 [00:02:49.000] request: +Info 66 [00:02:47.000] request: { "seq": 0, "type": "request", @@ -1232,18 +1230,18 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 69 [00:02:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 70 [00:02:51.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 70 [00:02:52.000] Files (3) +Info 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) -Info 70 [00:02:53.000] ----------------------------------------------- -Info 70 [00:02:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 70 [00:02:55.000] Files (2) +Info 68 [00:02:51.000] ----------------------------------------------- +Info 68 [00:02:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 68 [00:02:53.000] Files (2) -Info 70 [00:02:56.000] ----------------------------------------------- -Info 70 [00:02:57.000] Open files: -Info 70 [00:02:58.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 70 [00:02:59.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 68 [00:02:54.000] ----------------------------------------------- +Info 68 [00:02:55.000] Open files: +Info 68 [00:02:56.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 68 [00:02:57.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1280,11 +1278,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 70 [00:03:00.000] response: +Info 68 [00:02:58.000] response: { "responseRequired": false } -Info 71 [00:03:01.000] request: +Info 69 [00:02:59.000] request: { "seq": 0, "type": "request", @@ -1329,16 +1327,16 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 72 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 73 [00:03:03.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 73 [00:03:04.000] Files (3) +Info 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) -Info 73 [00:03:05.000] ----------------------------------------------- -Info 73 [00:03:06.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 73 [00:03:07.000] Files (2) +Info 71 [00:03:03.000] ----------------------------------------------- +Info 71 [00:03:04.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 71 [00:03:05.000] Files (2) -Info 73 [00:03:08.000] ----------------------------------------------- -Info 73 [00:03:09.000] Open files: +Info 71 [00:03:06.000] ----------------------------------------------- +Info 71 [00:03:07.000] Open files: After request PolledWatches:: @@ -1377,11 +1375,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 73 [00:03:10.000] response: +Info 71 [00:03:08.000] response: { "responseRequired": false } -Info 74 [00:03:11.000] request: +Info 72 [00:03:09.000] request: { "seq": 0, "type": "request", @@ -1428,12 +1426,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 75 [00:03:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info -Info 76 [00:03:13.000] Search path: /user/username/projects/myproject/random -Info 77 [00:03:14.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 78 [00:03:15.000] `remove Project:: -Info 79 [00:03:16.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 80 [00:03:17.000] Files (3) +Info 73 [00:03:10.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/random/random.ts 500 undefined WatchType: Closed Script info +Info 74 [00:03:11.000] Search path: /user/username/projects/myproject/random +Info 75 [00:03:12.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json +Info 76 [00:03:13.000] `remove Project:: +Info 77 [00:03:14.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 78 [00:03:15.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -1446,29 +1444,29 @@ Info 80 [00:03:17.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 81 [00:03:18.000] ----------------------------------------------- -Info 82 [00:03:19.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 83 [00:03:20.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 84 [00:03:21.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 85 [00:03:22.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 86 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 87 [00:03:24.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 88 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 89 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 90 [00:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 91 [00:03:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 92 [00:03:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 93 [00:03:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 94 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info -Info 95 [00:03:32.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 96 [00:03:33.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file -Info 97 [00:03:34.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 97 [00:03:35.000] Files (2) - -Info 97 [00:03:36.000] ----------------------------------------------- -Info 97 [00:03:37.000] Open files: -Info 97 [00:03:38.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 97 [00:03:39.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 79 [00:03:16.000] ----------------------------------------------- +Info 80 [00:03:17.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 81 [00:03:18.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory +Info 82 [00:03:19.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 83 [00:03:20.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 84 [00:03:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 85 [00:03:22.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 86 [00:03:23.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 87 [00:03:24.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 88 [00:03:25.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 89 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 90 [00:03:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 91 [00:03:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 92 [00:03:29.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/main/main.ts 500 undefined WatchType: Closed Script info +Info 93 [00:03:30.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 94 [00:03:31.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 2000 undefined WatchType: Missing source map file +Info 95 [00:03:32.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 95 [00:03:33.000] Files (2) + +Info 95 [00:03:34.000] ----------------------------------------------- +Info 95 [00:03:35.000] Open files: +Info 95 [00:03:36.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 95 [00:03:37.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -1487,7 +1485,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 97 [00:03:40.000] response: +Info 95 [00:03:38.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/usage-file-changes-with-timeout-before-request.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/usage-file-changes-with-timeout-before-request.js index bd67843b952e8..f038c20e34d54 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 @@ -223,9 +223,8 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +235,20 @@ Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:28.000] Files (3) +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +261,16 @@ Info 25 [00:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:29.000] ----------------------------------------------- -Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:33.000] Files (3) +Info 25 [00:01:28.000] ----------------------------------------------- +Info 26 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:32.000] Files (3) -Info 29 [00:01:34.000] ----------------------------------------------- -Info 29 [00:01:35.000] Open files: -Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:33.000] ----------------------------------------------- +Info 28 [00:01:34.000] Open files: +Info 28 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:38.000] response: +Info 28 [00:01:37.000] response: { "responseRequired": false } -Info 30 [00:01:39.000] request: +Info 29 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -337,11 +336,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:43.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -349,17 +348,16 @@ Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:55.000] Files (2) +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:53.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -369,20 +367,20 @@ Info 46 [00:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:56.000] ----------------------------------------------- -Info 48 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:58.000] Files (3) +Info 45 [00:01:54.000] ----------------------------------------------- +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) -Info 48 [00:01:59.000] ----------------------------------------------- -Info 48 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:02:01.000] Files (2) +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) -Info 48 [00:02:02.000] ----------------------------------------------- -Info 48 [00:02:03.000] Open files: -Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -415,11 +413,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:08.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 49 [00:02:09.000] request: +Info 47 [00:02:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -462,8 +460,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -500,7 +498,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:12.000] response: +Info 50 [00:02:10.000] response: { "response": { "definitions": [ @@ -537,7 +535,7 @@ Info 52 [00:02:12.000] response: }, "responseRequired": true } -Info 53 [00:02:13.000] request: +Info 51 [00:02:11.000] request: { "command": "change", "arguments": { @@ -623,7 +621,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:14.000] response: +Info 52 [00:02:12.000] response: { "responseRequired": false } @@ -699,7 +697,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 55 [00:02:15.000] request: +Info 53 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -746,9 +744,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 57 [00:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 58 [00:02:18.000] Different program with same set of files +Info 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:: @@ -785,7 +783,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:19.000] response: +Info 57 [00:02:17.000] response: { "response": { "definitions": [ @@ -822,7 +820,7 @@ Info 59 [00:02:19.000] response: }, "responseRequired": true } -Info 60 [00:02:20.000] request: +Info 58 [00:02:18.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -905,7 +903,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:21.000] response: +Info 59 [00:02:19.000] response: { "response": { "definitions": [ @@ -942,7 +940,7 @@ Info 61 [00:02:21.000] response: }, "responseRequired": true } -Info 62 [00:02:22.000] request: +Info 60 [00:02:20.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1025,7 +1023,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:23.000] response: +Info 61 [00:02:21.000] response: { "response": { "definitions": [ @@ -1062,7 +1060,7 @@ Info 63 [00:02:23.000] response: }, "responseRequired": true } -Info 64 [00:02:24.000] request: +Info 62 [00:02:22.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1145,7 +1143,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:25.000] response: +Info 63 [00:02:23.000] response: { "response": { "definitions": [ @@ -1182,7 +1180,7 @@ Info 65 [00:02:25.000] response: }, "responseRequired": true } -Info 66 [00:02:26.000] request: +Info 64 [00:02:24.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1265,7 +1263,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:27.000] response: +Info 65 [00:02:25.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/usage-file-changes.js b/tests/baselines/reference/tsserver/projectReferencesSourcemap/usageProject/disabledSourceRef/usage-file-changes.js index 7adeab4dd7fec..df603e82c700b 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 @@ -223,9 +223,8 @@ Info 6 [00:01:09.000] Config: /user/username/projects/myproject/main/tsconfig } Info 7 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory Info 8 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main 1 undefined Config: /user/username/projects/myproject/main/tsconfig.json WatchType: Wild card directory -Info 9 [00:01:12.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { +Info 9 [00:01:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json +Info 10 [00:01:13.000] Config: /user/username/projects/myproject/dependency/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/dependency/FnS.ts" ], @@ -236,20 +235,20 @@ Info 11 [00:01:14.000] Config: /user/username/projects/myproject/dependency/ts "configFilePath": "/user/username/projects/myproject/dependency/tsconfig.json" } } -Info 12 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file -Info 13 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 14 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory -Info 15 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info -Info 18 [00:01:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 20 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 21 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 22 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots -Info 23 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:01:27.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 25 [00:01:28.000] Files (3) +Info 11 [00:01:14.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Config file +Info 12 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 13 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency 1 undefined Config: /user/username/projects/myproject/dependency/tsconfig.json WatchType: Wild card directory +Info 14 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/fns.d.ts 500 undefined WatchType: Closed Script info +Info 17 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 19 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/main/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 20 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 21 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/main/tsconfig.json WatchType: Type roots +Info 22 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:01:26.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 24 [00:01:27.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/decls/fns.d.ts /user/username/projects/myproject/main/main.ts @@ -262,16 +261,16 @@ Info 25 [00:01:28.000] Files (3) main.ts Matched by default include pattern '**/*' -Info 26 [00:01:29.000] ----------------------------------------------- -Info 27 [00:01:30.000] Search path: /user/username/projects/myproject/main -Info 28 [00:01:31.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. -Info 29 [00:01:32.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 29 [00:01:33.000] Files (3) +Info 25 [00:01:28.000] ----------------------------------------------- +Info 26 [00:01:29.000] Search path: /user/username/projects/myproject/main +Info 27 [00:01:30.000] For info: /user/username/projects/myproject/main/tsconfig.json :: No config files found. +Info 28 [00:01:31.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 28 [00:01:32.000] Files (3) -Info 29 [00:01:34.000] ----------------------------------------------- -Info 29 [00:01:35.000] Open files: -Info 29 [00:01:36.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 29 [00:01:37.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 28 [00:01:33.000] ----------------------------------------------- +Info 28 [00:01:34.000] Open files: +Info 28 [00:01:35.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 28 [00:01:36.000] Projects: /user/username/projects/myproject/main/tsconfig.json After request PolledWatches:: @@ -298,11 +297,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 29 [00:01:38.000] response: +Info 28 [00:01:37.000] response: { "responseRequired": false } -Info 30 [00:01:39.000] request: +Info 29 [00:01:38.000] request: { "seq": 0, "type": "request", @@ -337,11 +336,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/decls: {} -Info 31 [00:01:40.000] Search path: /user/username/projects/myproject/random -Info 32 [00:01:41.000] For info: /user/username/projects/myproject/random/random.ts :: Config file name: /user/username/projects/myproject/random/tsconfig.json -Info 33 [00:01:42.000] Creating configuration project /user/username/projects/myproject/random/tsconfig.json -Info 34 [00:01:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file -Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconfig.json : { +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 +Info 33 [00:01:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Config file +Info 34 [00:01:43.000] Config: /user/username/projects/myproject/random/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/random/random.ts" ], @@ -349,17 +348,16 @@ Info 35 [00:01:44.000] Config: /user/username/projects/myproject/random/tsconf "configFilePath": "/user/username/projects/myproject/random/tsconfig.json" } } -Info 36 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 37 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 39 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json -Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 42 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 43 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots -Info 44 [00:01:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 45 [00:01:54.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 46 [00:01:55.000] Files (2) +Info 35 [00:01:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 36 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random 1 undefined Config: /user/username/projects/myproject/random/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json +Info 38 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 39 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/random/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 40 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 41 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/random/tsconfig.json WatchType: Type roots +Info 42 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/random/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 43 [00:01:52.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 44 [00:01:53.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/random/random.ts @@ -369,20 +367,20 @@ Info 46 [00:01:55.000] Files (2) random.ts Matched by default include pattern '**/*' -Info 47 [00:01:56.000] ----------------------------------------------- -Info 48 [00:01:57.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) -Info 48 [00:01:58.000] Files (3) +Info 45 [00:01:54.000] ----------------------------------------------- +Info 46 [00:01:55.000] Project '/user/username/projects/myproject/main/tsconfig.json' (Configured) +Info 46 [00:01:56.000] Files (3) -Info 48 [00:01:59.000] ----------------------------------------------- -Info 48 [00:02:00.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) -Info 48 [00:02:01.000] Files (2) +Info 46 [00:01:57.000] ----------------------------------------------- +Info 46 [00:01:58.000] Project '/user/username/projects/myproject/random/tsconfig.json' (Configured) +Info 46 [00:01:59.000] Files (2) -Info 48 [00:02:02.000] ----------------------------------------------- -Info 48 [00:02:03.000] Open files: -Info 48 [00:02:04.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined -Info 48 [00:02:05.000] Projects: /user/username/projects/myproject/main/tsconfig.json -Info 48 [00:02:06.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined -Info 48 [00:02:07.000] Projects: /user/username/projects/myproject/random/tsconfig.json +Info 46 [00:02:00.000] ----------------------------------------------- +Info 46 [00:02:01.000] Open files: +Info 46 [00:02:02.000] FileName: /user/username/projects/myproject/main/main.ts ProjectRootPath: undefined +Info 46 [00:02:03.000] Projects: /user/username/projects/myproject/main/tsconfig.json +Info 46 [00:02:04.000] FileName: /user/username/projects/myproject/random/random.ts ProjectRootPath: undefined +Info 46 [00:02:05.000] Projects: /user/username/projects/myproject/random/tsconfig.json After request PolledWatches:: @@ -415,11 +413,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 48 [00:02:08.000] response: +Info 46 [00:02:06.000] response: { "responseRequired": false } -Info 49 [00:02:09.000] request: +Info 47 [00:02:07.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -462,8 +460,8 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 50 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/decls/FnS.d.ts.map 500 undefined WatchType: Closed Script info -Info 51 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/dependency/FnS.ts 500 undefined WatchType: Closed Script info +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 PolledWatches:: @@ -500,7 +498,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 52 [00:02:12.000] response: +Info 50 [00:02:10.000] response: { "response": { "definitions": [ @@ -537,7 +535,7 @@ Info 52 [00:02:12.000] response: }, "responseRequired": true } -Info 53 [00:02:13.000] request: +Info 51 [00:02:11.000] request: { "command": "change", "arguments": { @@ -623,11 +621,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 54 [00:02:14.000] response: +Info 52 [00:02:12.000] response: { "responseRequired": false } -Info 55 [00:02:15.000] request: +Info 53 [00:02:13.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -674,9 +672,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 56 [00:02:16.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json -Info 57 [00:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/main/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 58 [00:02:18.000] Different program with same set of files +Info 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:: @@ -713,7 +711,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 59 [00:02:19.000] response: +Info 57 [00:02:17.000] response: { "response": { "definitions": [ @@ -750,7 +748,7 @@ Info 59 [00:02:19.000] response: }, "responseRequired": true } -Info 60 [00:02:20.000] request: +Info 58 [00:02:18.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -833,7 +831,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 61 [00:02:21.000] response: +Info 59 [00:02:19.000] response: { "response": { "definitions": [ @@ -870,7 +868,7 @@ Info 61 [00:02:21.000] response: }, "responseRequired": true } -Info 62 [00:02:22.000] request: +Info 60 [00:02:20.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -953,7 +951,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 63 [00:02:23.000] response: +Info 61 [00:02:21.000] response: { "response": { "definitions": [ @@ -990,7 +988,7 @@ Info 63 [00:02:23.000] response: }, "responseRequired": true } -Info 64 [00:02:24.000] request: +Info 62 [00:02:22.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1073,7 +1071,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 65 [00:02:25.000] response: +Info 63 [00:02:23.000] response: { "response": { "definitions": [ @@ -1110,7 +1108,7 @@ Info 65 [00:02:25.000] response: }, "responseRequired": true } -Info 66 [00:02:26.000] request: +Info 64 [00:02:24.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -1193,7 +1191,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/random: {} -Info 67 [00:02:27.000] response: +Info 65 [00:02:25.000] response: { "response": { "definitions": [ diff --git a/tests/baselines/reference/tsserver/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-at-root-level.js b/tests/baselines/reference/tsserver/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-at-root-level.js index 0d9531c51a760..4fd4a07049b08 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 @@ -54,15 +54,14 @@ Info 6 [00:00:25.000] Config: /a/b/project/tsconfig.json : { } Info 7 [00:00:26.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 undefined Config: /a/b/project/tsconfig.json WatchType: Wild card directory Info 8 [00:00:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 undefined Config: /a/b/project/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:28.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:30.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json -Info 12 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:34.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:00:35.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 17 [00:00:36.000] Files (3) +Info 9 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:29.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json +Info 11 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:33.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:34.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 16 [00:00:35.000] Files (3) /a/lib/lib.d.ts /a/b/project/file1.ts /a/b/project/file3.ts @@ -75,14 +74,14 @@ Info 17 [00:00:36.000] Files (3) file3.ts Matched by default include pattern '**/*' -Info 18 [00:00:37.000] ----------------------------------------------- -Info 19 [00:00:38.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 19 [00:00:39.000] Files (3) +Info 17 [00:00:36.000] ----------------------------------------------- +Info 18 [00:00:37.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 18 [00:00:38.000] Files (3) -Info 19 [00:00:40.000] ----------------------------------------------- -Info 19 [00:00:41.000] Open files: -Info 19 [00:00:42.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined -Info 19 [00:00:43.000] Projects: /a/b/project/tsconfig.json +Info 18 [00:00:39.000] ----------------------------------------------- +Info 18 [00:00:40.000] Open files: +Info 18 [00:00:41.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined +Info 18 [00:00:42.000] Projects: /a/b/project/tsconfig.json After request PolledWatches:: @@ -101,14 +100,14 @@ FsWatchesRecursive:: /a/b/project: {} -Info 19 [00:00:44.000] response: +Info 18 [00:00:43.000] response: { "responseRequired": false } -Info 20 [00:00:48.000] FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 21 [00:00:49.000] Scheduled: /a/b/project/tsconfig.json -Info 22 [00:00:50.000] Scheduled: *ensureProjectForOpenFiles* -Info 23 [00:00:51.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:47.000] FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 20 [00:00:48.000] Scheduled: /a/b/project/tsconfig.json +Info 21 [00:00:49.000] Scheduled: *ensureProjectForOpenFiles* +Info 22 [00:00:50.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info Before checking timeout queue length (2) and running //// [/a/b/project/file3.ts] export class c { }export class d {} @@ -130,27 +129,27 @@ FsWatchesRecursive:: /a/b/project: {} -Info 24 [00:00:52.000] Running: /a/b/project/tsconfig.json -Info 25 [00:00:53.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json -Info 26 [00:00:54.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 27 [00:00:55.000] Different program with same set of files -Info 28 [00:00:56.000] Running: *ensureProjectForOpenFiles* -Info 29 [00:00:57.000] Before ensureProjectForOpenFiles: -Info 30 [00:00:58.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 30 [00:00:59.000] Files (3) - -Info 30 [00:01:00.000] ----------------------------------------------- -Info 30 [00:01:01.000] Open files: -Info 30 [00:01:02.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined -Info 30 [00:01:03.000] Projects: /a/b/project/tsconfig.json -Info 30 [00:01:04.000] After ensureProjectForOpenFiles: -Info 31 [00:01:05.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 31 [00:01:06.000] Files (3) - -Info 31 [00:01:07.000] ----------------------------------------------- -Info 31 [00:01:08.000] Open files: -Info 31 [00:01:09.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined -Info 31 [00:01:10.000] Projects: /a/b/project/tsconfig.json +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 +Info 26 [00:00:54.000] Different program with same set of files +Info 27 [00:00:55.000] Running: *ensureProjectForOpenFiles* +Info 28 [00:00:56.000] Before ensureProjectForOpenFiles: +Info 29 [00:00:57.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 29 [00:00:58.000] Files (3) + +Info 29 [00:00:59.000] ----------------------------------------------- +Info 29 [00:01:00.000] Open files: +Info 29 [00:01:01.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined +Info 29 [00:01:02.000] Projects: /a/b/project/tsconfig.json +Info 29 [00:01:03.000] After ensureProjectForOpenFiles: +Info 30 [00:01:04.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 30 [00:01:05.000] Files (3) + +Info 30 [00:01:06.000] ----------------------------------------------- +Info 30 [00:01:07.000] Open files: +Info 30 [00:01:08.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined +Info 30 [00:01:09.000] Projects: /a/b/project/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-not-at-root-level.js b/tests/baselines/reference/tsserver/projectUpdatedInBackground/when-event-handler-is-set-in-the-session-and-project-is-not-at-root-level.js index 614f19da74b90..c875aabfa0594 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 @@ -54,21 +54,20 @@ Info 6 [00:00:35.000] Config: /user/username/rootfolder/otherfolder/a/b/proje } Info 7 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Wild card directory Info 8 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:38.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:00:50.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 22 [00:00:51.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 23 [00:00:52.000] Files (3) +Info 9 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:00:49.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 21 [00:00:50.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 22 [00:00:51.000] Files (3) /a/lib/lib.d.ts /user/username/rootfolder/otherfolder/a/b/project/file1.ts /user/username/rootfolder/otherfolder/a/b/project/file3.ts @@ -81,14 +80,14 @@ Info 23 [00:00:52.000] Files (3) file3.ts Matched by default include pattern '**/*' -Info 24 [00:00:53.000] ----------------------------------------------- -Info 25 [00:00:54.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 25 [00:00:55.000] Files (3) +Info 23 [00:00:52.000] ----------------------------------------------- +Info 24 [00:00:53.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 24 [00:00:54.000] Files (3) -Info 25 [00:00:56.000] ----------------------------------------------- -Info 25 [00:00:57.000] Open files: -Info 25 [00:00:58.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 25 [00:00:59.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 24 [00:00:55.000] ----------------------------------------------- +Info 24 [00:00:56.000] Open files: +Info 24 [00:00:57.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 24 [00:00:58.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json After request PolledWatches:: @@ -113,14 +112,14 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/project: {} -Info 25 [00:01:00.000] response: +Info 24 [00:00:59.000] response: { "responseRequired": false } -Info 26 [00:01:04.000] FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 27 [00:01:05.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 28 [00:01:06.000] Scheduled: *ensureProjectForOpenFiles* -Info 29 [00:01:07.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 25 [00:01:03.000] FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 26 [00:01:04.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 27 [00:01:05.000] Scheduled: *ensureProjectForOpenFiles* +Info 28 [00:01:06.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info Before checking timeout queue length (2) and running //// [/user/username/rootfolder/otherfolder/a/b/project/file3.ts] export class c { }export class d {} @@ -148,27 +147,27 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/project: {} -Info 30 [00:01:08.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 31 [00:01:09.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 32 [00:01:10.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 33 [00:01:11.000] Different program with same set of files -Info 34 [00:01:12.000] Running: *ensureProjectForOpenFiles* -Info 35 [00:01:13.000] Before ensureProjectForOpenFiles: -Info 36 [00:01:14.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 36 [00:01:15.000] Files (3) - -Info 36 [00:01:16.000] ----------------------------------------------- -Info 36 [00:01:17.000] Open files: -Info 36 [00:01:18.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 36 [00:01:19.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 36 [00:01:20.000] After ensureProjectForOpenFiles: -Info 37 [00:01:21.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 37 [00:01:22.000] Files (3) - -Info 37 [00:01:23.000] ----------------------------------------------- -Info 37 [00:01:24.000] Open files: -Info 37 [00:01:25.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 37 [00:01:26.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +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 +Info 32 [00:01:10.000] Different program with same set of files +Info 33 [00:01:11.000] Running: *ensureProjectForOpenFiles* +Info 34 [00:01:12.000] Before ensureProjectForOpenFiles: +Info 35 [00:01:13.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 35 [00:01:14.000] Files (3) + +Info 35 [00:01:15.000] ----------------------------------------------- +Info 35 [00:01:16.000] Open files: +Info 35 [00:01:17.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 35 [00:01:18.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 35 [00:01:19.000] After ensureProjectForOpenFiles: +Info 36 [00:01:20.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 36 [00:01:21.000] Files (3) + +Info 36 [00:01:22.000] ----------------------------------------------- +Info 36 [00:01:23.000] Open files: +Info 36 [00:01:24.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +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:: @@ -193,15 +192,15 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/project: {} -Info 37 [00:01:30.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 38 [00:01:31.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation -Info 39 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 40 [00:01:33.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 41 [00:01:34.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 42 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 43 [00:01:38.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 44 [00:01:39.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 45 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +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 +Info 39 [00:01:32.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 40 [00:01:33.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 41 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 42 [00:01:37.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 43 [00:01:38.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 44 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations Before running timeout callbacks //// [/user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts] export class a { } @@ -229,9 +228,9 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 46 [00:01:41.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation -Info 47 [00:01:42.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 48 [00:01:43.000] Scheduled: *ensureProjectForOpenFiles* +Info 45 [00:01:40.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation +Info 46 [00:01:41.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 47 [00:01:42.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -280,17 +279,17 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 49 [00:01:44.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 50 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 51 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 52 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 53 [00:01:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 54 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 55 [00:01:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 56 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 57 [00:01:52.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 58 [00:01:53.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 59 [00:01:54.000] Files (4) +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 +Info 51 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 52 [00:01:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 53 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 54 [00:01:49.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 55 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 56 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 57 [00:01:52.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 58 [00:01:53.000] Files (4) /a/lib/lib.d.ts /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts /user/username/rootfolder/otherfolder/a/b/project/file1.ts @@ -306,24 +305,24 @@ Info 59 [00:01:54.000] Files (4) file3.ts Matched by default include pattern '**/*' -Info 60 [00:01:55.000] ----------------------------------------------- -Info 61 [00:01:56.000] Running: *ensureProjectForOpenFiles* -Info 62 [00:01:57.000] Before ensureProjectForOpenFiles: -Info 63 [00:01:58.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 63 [00:01:59.000] Files (4) - -Info 63 [00:02:00.000] ----------------------------------------------- -Info 63 [00:02:01.000] Open files: -Info 63 [00:02:02.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 63 [00:02:03.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 63 [00:02:04.000] After ensureProjectForOpenFiles: -Info 64 [00:02:05.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 64 [00:02:06.000] Files (4) - -Info 64 [00:02:07.000] ----------------------------------------------- -Info 64 [00:02:08.000] Open files: -Info 64 [00:02:09.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 64 [00:02:10.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 59 [00:01:54.000] ----------------------------------------------- +Info 60 [00:01:55.000] Running: *ensureProjectForOpenFiles* +Info 61 [00:01:56.000] Before ensureProjectForOpenFiles: +Info 62 [00:01:57.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 62 [00:01:58.000] Files (4) + +Info 62 [00:01:59.000] ----------------------------------------------- +Info 62 [00:02:00.000] Open files: +Info 62 [00:02:01.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 62 [00:02:02.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 62 [00:02:03.000] After ensureProjectForOpenFiles: +Info 63 [00:02:04.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 63 [00:02:05.000] Files (4) + +Info 63 [00:02:06.000] ----------------------------------------------- +Info 63 [00:02:07.000] Open files: +Info 63 [00:02:08.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 63 [00:02:09.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json After running timeout callbacks PolledWatches:: diff --git a/tests/baselines/reference/tsserver/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js b/tests/baselines/reference/tsserver/projectUpdatedInBackground/with-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js index 2915b38e5002f..159f8ce8e43b2 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 @@ -56,15 +56,14 @@ Info 7 [00:00:26.000] Config: /a/b/project/tsconfig.json : { } Info 8 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 undefined Config: /a/b/project/tsconfig.json WatchType: Wild card directory Info 9 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 undefined Config: /a/b/project/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:29.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:31.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json -Info 13 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:35.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:00:36.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 18 [00:00:37.000] Files (3) +Info 10 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:30.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json +Info 12 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:34.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:35.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 17 [00:00:36.000] Files (3) /a/lib/lib.d.ts /a/b/project/file1.ts /a/b/project/file3.ts @@ -77,20 +76,20 @@ Info 18 [00:00:37.000] Files (3) file3.ts Matched by default include pattern '**/*' -Info 19 [00:00:38.000] ----------------------------------------------- -Info 20 [00:00:39.000] event: +Info 18 [00:00:37.000] ----------------------------------------------- +Info 19 [00:00:38.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/project/tsconfig.json"}} -Info 21 [00:00:40.000] event: +Info 20 [00:00:39.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"1cf2001c133ce00fd258494c136bfa9707203d90270d151ea0f575d93d990f9d","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":39,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"typeRoots":[]},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [00:00:41.000] event: +Info 21 [00:00:40.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/project/file1.ts","configFile":"/a/b/project/tsconfig.json","diagnostics":[]}} -Info 23 [00:00:42.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 23 [00:00:43.000] Files (3) +Info 22 [00:00:41.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 22 [00:00:42.000] Files (3) -Info 23 [00:00:44.000] ----------------------------------------------- -Info 23 [00:00:45.000] Open files: -Info 23 [00:00:46.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined -Info 23 [00:00:47.000] Projects: /a/b/project/tsconfig.json +Info 22 [00:00:43.000] ----------------------------------------------- +Info 22 [00:00:44.000] Open files: +Info 22 [00:00:45.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined +Info 22 [00:00:46.000] Projects: /a/b/project/tsconfig.json After request PolledWatches:: @@ -109,14 +108,14 @@ FsWatchesRecursive:: /a/b/project: {} -Info 23 [00:00:48.000] response: +Info 22 [00:00:47.000] response: { "responseRequired": false } -Info 24 [00:00:52.000] FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 25 [00:00:53.000] Scheduled: /a/b/project/tsconfig.json -Info 26 [00:00:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 27 [00:00:55.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 23 [00:00:51.000] FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 24 [00:00:52.000] Scheduled: /a/b/project/tsconfig.json +Info 25 [00:00:53.000] Scheduled: *ensureProjectForOpenFiles* +Info 26 [00:00:54.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info Before checking timeout queue length (2) and running //// [/a/b/project/file3.ts] export class c { }export class d {} @@ -138,29 +137,29 @@ FsWatchesRecursive:: /a/b/project: {} -Info 28 [00:00:56.000] Running: /a/b/project/tsconfig.json -Info 29 [00:00:57.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json -Info 30 [00:00:58.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 31 [00:00:59.000] Different program with same set of files -Info 32 [00:01:00.000] Running: *ensureProjectForOpenFiles* -Info 33 [00:01:01.000] Before ensureProjectForOpenFiles: -Info 34 [00:01:02.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 34 [00:01:03.000] Files (3) - -Info 34 [00:01:04.000] ----------------------------------------------- -Info 34 [00:01:05.000] Open files: -Info 34 [00:01:06.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined -Info 34 [00:01:07.000] Projects: /a/b/project/tsconfig.json -Info 34 [00:01:08.000] After ensureProjectForOpenFiles: -Info 35 [00:01:09.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 35 [00:01:10.000] Files (3) - -Info 35 [00:01:11.000] ----------------------------------------------- -Info 35 [00:01:12.000] Open files: -Info 35 [00:01:13.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined -Info 35 [00:01:14.000] Projects: /a/b/project/tsconfig.json -Info 35 [00:01:15.000] got projects updated in background, updating diagnostics for /a/b/project/file1.ts -Info 36 [00:01:16.000] event: +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 +Info 30 [00:00:58.000] Different program with same set of files +Info 31 [00:00:59.000] Running: *ensureProjectForOpenFiles* +Info 32 [00:01:00.000] Before ensureProjectForOpenFiles: +Info 33 [00:01:01.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 33 [00:01:02.000] Files (3) + +Info 33 [00:01:03.000] ----------------------------------------------- +Info 33 [00:01:04.000] Open files: +Info 33 [00:01:05.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined +Info 33 [00:01:06.000] Projects: /a/b/project/tsconfig.json +Info 33 [00:01:07.000] After ensureProjectForOpenFiles: +Info 34 [00:01:08.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 34 [00:01:09.000] Files (3) + +Info 34 [00:01:10.000] ----------------------------------------------- +Info 34 [00:01:11.000] Open files: +Info 34 [00:01:12.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined +Info 34 [00:01:13.000] Projects: /a/b/project/tsconfig.json +Info 34 [00:01:14.000] got projects updated in background, updating diagnostics for /a/b/project/file1.ts +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 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 bff5ec79577dc..ad30bfe0cae78 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 @@ -56,21 +56,20 @@ Info 7 [00:00:36.000] Config: /user/username/rootfolder/otherfolder/a/b/proje } Info 8 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Wild card directory Info 9 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 23 [00:00:52.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 24 [00:00:53.000] Files (3) +Info 10 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:00:50.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 22 [00:00:51.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 23 [00:00:52.000] Files (3) /a/lib/lib.d.ts /user/username/rootfolder/otherfolder/a/b/project/file1.ts /user/username/rootfolder/otherfolder/a/b/project/file3.ts @@ -83,20 +82,20 @@ Info 24 [00:00:53.000] Files (3) file3.ts Matched by default include pattern '**/*' -Info 25 [00:00:54.000] ----------------------------------------------- -Info 26 [00:00:55.000] event: +Info 24 [00:00:53.000] ----------------------------------------------- +Info 25 [00:00:54.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json"}} -Info 27 [00:00:56.000] event: +Info 26 [00:00:55.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"79b1a0103ed8006f174a1f979cf698219d4ec4ae3a48594da1085f7a1749553c","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":39,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"typeRoots":[]},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 28 [00:00:57.000] event: +Info 27 [00:00:56.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/rootfolder/otherfolder/a/b/project/file1.ts","configFile":"/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json","diagnostics":[]}} -Info 29 [00:00:58.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 29 [00:00:59.000] Files (3) +Info 28 [00:00:57.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 28 [00:00:58.000] Files (3) -Info 29 [00:01:00.000] ----------------------------------------------- -Info 29 [00:01:01.000] Open files: -Info 29 [00:01:02.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 29 [00:01:03.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 28 [00:00:59.000] ----------------------------------------------- +Info 28 [00:01:00.000] Open files: +Info 28 [00:01:01.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 28 [00:01:02.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json After request PolledWatches:: @@ -121,14 +120,14 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/project: {} -Info 29 [00:01:04.000] response: +Info 28 [00:01:03.000] response: { "responseRequired": false } -Info 30 [00:01:08.000] FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 31 [00:01:09.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 32 [00:01:10.000] Scheduled: *ensureProjectForOpenFiles* -Info 33 [00:01:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 29 [00:01:07.000] FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:08.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 31 [00:01:09.000] Scheduled: *ensureProjectForOpenFiles* +Info 32 [00:01:10.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info Before checking timeout queue length (2) and running //// [/user/username/rootfolder/otherfolder/a/b/project/file3.ts] export class c { }export class d {} @@ -156,29 +155,29 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/project: {} -Info 34 [00:01:12.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 35 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 36 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 37 [00:01:15.000] Different program with same set of files -Info 38 [00:01:16.000] Running: *ensureProjectForOpenFiles* -Info 39 [00:01:17.000] Before ensureProjectForOpenFiles: -Info 40 [00:01:18.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 40 [00:01:19.000] Files (3) - -Info 40 [00:01:20.000] ----------------------------------------------- -Info 40 [00:01:21.000] Open files: -Info 40 [00:01:22.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 40 [00:01:23.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 40 [00:01:24.000] After ensureProjectForOpenFiles: -Info 41 [00:01:25.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 41 [00:01:26.000] Files (3) - -Info 41 [00:01:27.000] ----------------------------------------------- -Info 41 [00:01:28.000] Open files: -Info 41 [00:01:29.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 41 [00:01:30.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 41 [00:01:31.000] got projects updated in background, updating diagnostics for /user/username/rootfolder/otherfolder/a/b/project/file1.ts -Info 42 [00:01:32.000] event: +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 +Info 36 [00:01:14.000] Different program with same set of files +Info 37 [00:01:15.000] Running: *ensureProjectForOpenFiles* +Info 38 [00:01:16.000] Before ensureProjectForOpenFiles: +Info 39 [00:01:17.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 39 [00:01:18.000] Files (3) + +Info 39 [00:01:19.000] ----------------------------------------------- +Info 39 [00:01:20.000] Open files: +Info 39 [00:01:21.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 39 [00:01:22.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 39 [00:01:23.000] After ensureProjectForOpenFiles: +Info 40 [00:01:24.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 40 [00:01:25.000] Files (3) + +Info 40 [00:01:26.000] ----------------------------------------------- +Info 40 [00:01:27.000] Open files: +Info 40 [00:01:28.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 40 [00:01:29.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 40 [00:01:30.000] got projects updated in background, updating diagnostics for /user/username/rootfolder/otherfolder/a/b/project/file1.ts +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 @@ -228,15 +227,15 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/project: {} -Info 43 [00:01:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 44 [00:01:37.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation -Info 45 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 46 [00:01:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 47 [00:01:40.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 48 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 49 [00:01:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 50 [00:01:45.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 51 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +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 +Info 45 [00:01:38.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 46 [00:01:39.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 47 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 48 [00:01:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 49 [00:01:44.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 50 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations Before running timeout callbacks //// [/user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts] export class a { } @@ -264,9 +263,9 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 52 [00:01:47.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation -Info 53 [00:01:48.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 54 [00:01:49.000] Scheduled: *ensureProjectForOpenFiles* +Info 51 [00:01:46.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation +Info 52 [00:01:47.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 53 [00:01:48.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -315,17 +314,17 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 55 [00:01:50.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 56 [00:01:51.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 57 [00:01:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 58 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 59 [00:01:54.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 60 [00:01:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 61 [00:01:56.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 62 [00:01:57.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 63 [00:01:58.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 64 [00:01:59.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 65 [00:02:00.000] Files (4) +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 +Info 57 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 58 [00:01:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 59 [00:01:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 60 [00:01:55.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 61 [00:01:56.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 62 [00:01:57.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 63 [00:01:58.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 64 [00:01:59.000] Files (4) /a/lib/lib.d.ts /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts /user/username/rootfolder/otherfolder/a/b/project/file1.ts @@ -341,26 +340,26 @@ Info 65 [00:02:00.000] Files (4) file3.ts Matched by default include pattern '**/*' -Info 66 [00:02:01.000] ----------------------------------------------- -Info 67 [00:02:02.000] Running: *ensureProjectForOpenFiles* -Info 68 [00:02:03.000] Before ensureProjectForOpenFiles: -Info 69 [00:02:04.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 69 [00:02:05.000] Files (4) - -Info 69 [00:02:06.000] ----------------------------------------------- -Info 69 [00:02:07.000] Open files: -Info 69 [00:02:08.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 69 [00:02:09.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 69 [00:02:10.000] After ensureProjectForOpenFiles: -Info 70 [00:02:11.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 70 [00:02:12.000] Files (4) - -Info 70 [00:02:13.000] ----------------------------------------------- -Info 70 [00:02:14.000] Open files: -Info 70 [00:02:15.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 70 [00:02:16.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 70 [00:02:17.000] got projects updated in background, updating diagnostics for /user/username/rootfolder/otherfolder/a/b/project/file1.ts -Info 71 [00:02:18.000] event: +Info 65 [00:02:00.000] ----------------------------------------------- +Info 66 [00:02:01.000] Running: *ensureProjectForOpenFiles* +Info 67 [00:02:02.000] Before ensureProjectForOpenFiles: +Info 68 [00:02:03.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 68 [00:02:04.000] Files (4) + +Info 68 [00:02:05.000] ----------------------------------------------- +Info 68 [00:02:06.000] Open files: +Info 68 [00:02:07.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 68 [00:02:08.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 68 [00:02:09.000] After ensureProjectForOpenFiles: +Info 69 [00:02:10.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 69 [00:02:11.000] Files (4) + +Info 69 [00:02:12.000] ----------------------------------------------- +Info 69 [00:02:13.000] Open files: +Info 69 [00:02:14.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 69 [00:02:15.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 69 [00:02:16.000] got projects updated in background, updating diagnostics for /user/username/rootfolder/otherfolder/a/b/project/file1.ts +Info 70 [00:02:17.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/user/username/rootfolder/otherfolder/a/b/project/file1.ts"]}} After running timeout callbacks diff --git a/tests/baselines/reference/tsserver/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js b/tests/baselines/reference/tsserver/projectUpdatedInBackground/without-noGetErrOnBackgroundUpdate-and-project-is-at-root-level.js index b6f7b698c065e..9d09c947d8c81 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 @@ -56,15 +56,14 @@ Info 7 [00:00:26.000] Config: /a/b/project/tsconfig.json : { } Info 8 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 undefined Config: /a/b/project/tsconfig.json WatchType: Wild card directory Info 9 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project 1 undefined Config: /a/b/project/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:29.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:31.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json -Info 13 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:35.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:00:36.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 18 [00:00:37.000] Files (3) +Info 10 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:30.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json +Info 12 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/project/node_modules 1 undefined Project: /a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:34.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:35.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 17 [00:00:36.000] Files (3) /a/lib/lib.d.ts /a/b/project/file1.ts /a/b/project/file3.ts @@ -77,20 +76,20 @@ Info 18 [00:00:37.000] Files (3) file3.ts Matched by default include pattern '**/*' -Info 19 [00:00:38.000] ----------------------------------------------- -Info 20 [00:00:39.000] event: +Info 18 [00:00:37.000] ----------------------------------------------- +Info 19 [00:00:38.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/a/b/project/tsconfig.json"}} -Info 21 [00:00:40.000] event: +Info 20 [00:00:39.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"1cf2001c133ce00fd258494c136bfa9707203d90270d151ea0f575d93d990f9d","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":39,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"typeRoots":[]},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [00:00:41.000] event: +Info 21 [00:00:40.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/a/b/project/file1.ts","configFile":"/a/b/project/tsconfig.json","diagnostics":[]}} -Info 23 [00:00:42.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 23 [00:00:43.000] Files (3) +Info 22 [00:00:41.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 22 [00:00:42.000] Files (3) -Info 23 [00:00:44.000] ----------------------------------------------- -Info 23 [00:00:45.000] Open files: -Info 23 [00:00:46.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined -Info 23 [00:00:47.000] Projects: /a/b/project/tsconfig.json +Info 22 [00:00:43.000] ----------------------------------------------- +Info 22 [00:00:44.000] Open files: +Info 22 [00:00:45.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined +Info 22 [00:00:46.000] Projects: /a/b/project/tsconfig.json After request PolledWatches:: @@ -109,14 +108,14 @@ FsWatchesRecursive:: /a/b/project: {} -Info 23 [00:00:48.000] response: +Info 22 [00:00:47.000] response: { "responseRequired": false } -Info 24 [00:00:52.000] FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 25 [00:00:53.000] Scheduled: /a/b/project/tsconfig.json -Info 26 [00:00:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 27 [00:00:55.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 23 [00:00:51.000] FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 24 [00:00:52.000] Scheduled: /a/b/project/tsconfig.json +Info 25 [00:00:53.000] Scheduled: *ensureProjectForOpenFiles* +Info 26 [00:00:54.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/project/file3.ts 1:: WatchInfo: /a/b/project/file3.ts 500 undefined WatchType: Closed Script info Before checking timeout queue length (2) and running //// [/a/b/project/file3.ts] export class c { }export class d {} @@ -138,29 +137,29 @@ FsWatchesRecursive:: /a/b/project: {} -Info 28 [00:00:56.000] Running: /a/b/project/tsconfig.json -Info 29 [00:00:57.000] Starting updateGraphWorker: Project: /a/b/project/tsconfig.json -Info 30 [00:00:58.000] Finishing updateGraphWorker: Project: /a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 31 [00:00:59.000] Different program with same set of files -Info 32 [00:01:00.000] Running: *ensureProjectForOpenFiles* -Info 33 [00:01:01.000] Before ensureProjectForOpenFiles: -Info 34 [00:01:02.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 34 [00:01:03.000] Files (3) - -Info 34 [00:01:04.000] ----------------------------------------------- -Info 34 [00:01:05.000] Open files: -Info 34 [00:01:06.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined -Info 34 [00:01:07.000] Projects: /a/b/project/tsconfig.json -Info 34 [00:01:08.000] After ensureProjectForOpenFiles: -Info 35 [00:01:09.000] Project '/a/b/project/tsconfig.json' (Configured) -Info 35 [00:01:10.000] Files (3) - -Info 35 [00:01:11.000] ----------------------------------------------- -Info 35 [00:01:12.000] Open files: -Info 35 [00:01:13.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined -Info 35 [00:01:14.000] Projects: /a/b/project/tsconfig.json -Info 35 [00:01:15.000] got projects updated in background, updating diagnostics for /a/b/project/file1.ts -Info 36 [00:01:16.000] event: +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 +Info 30 [00:00:58.000] Different program with same set of files +Info 31 [00:00:59.000] Running: *ensureProjectForOpenFiles* +Info 32 [00:01:00.000] Before ensureProjectForOpenFiles: +Info 33 [00:01:01.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 33 [00:01:02.000] Files (3) + +Info 33 [00:01:03.000] ----------------------------------------------- +Info 33 [00:01:04.000] Open files: +Info 33 [00:01:05.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined +Info 33 [00:01:06.000] Projects: /a/b/project/tsconfig.json +Info 33 [00:01:07.000] After ensureProjectForOpenFiles: +Info 34 [00:01:08.000] Project '/a/b/project/tsconfig.json' (Configured) +Info 34 [00:01:09.000] Files (3) + +Info 34 [00:01:10.000] ----------------------------------------------- +Info 34 [00:01:11.000] Open files: +Info 34 [00:01:12.000] FileName: /a/b/project/file1.ts ProjectRootPath: undefined +Info 34 [00:01:13.000] Projects: /a/b/project/tsconfig.json +Info 34 [00:01:14.000] got projects updated in background, updating diagnostics for /a/b/project/file1.ts +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 @@ -219,7 +218,7 @@ FsWatchesRecursive:: /a/b/project: {} -Info 37 [00:01:22.000] event: +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 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 d1e953227a820..4a9ce39826cf7 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 @@ -56,21 +56,20 @@ Info 7 [00:00:36.000] Config: /user/username/rootfolder/otherfolder/a/b/proje } Info 8 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Wild card directory Info 9 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project 1 undefined Config: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 23 [00:00:52.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 24 [00:00:53.000] Files (3) +Info 10 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:00:50.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 22 [00:00:51.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 23 [00:00:52.000] Files (3) /a/lib/lib.d.ts /user/username/rootfolder/otherfolder/a/b/project/file1.ts /user/username/rootfolder/otherfolder/a/b/project/file3.ts @@ -83,20 +82,20 @@ Info 24 [00:00:53.000] Files (3) file3.ts Matched by default include pattern '**/*' -Info 25 [00:00:54.000] ----------------------------------------------- -Info 26 [00:00:55.000] event: +Info 24 [00:00:53.000] ----------------------------------------------- +Info 25 [00:00:54.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json"}} -Info 27 [00:00:56.000] event: +Info 26 [00:00:55.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"79b1a0103ed8006f174a1f979cf698219d4ec4ae3a48594da1085f7a1749553c","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":39,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"typeRoots":[]},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 28 [00:00:57.000] event: +Info 27 [00:00:56.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/rootfolder/otherfolder/a/b/project/file1.ts","configFile":"/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json","diagnostics":[]}} -Info 29 [00:00:58.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 29 [00:00:59.000] Files (3) +Info 28 [00:00:57.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 28 [00:00:58.000] Files (3) -Info 29 [00:01:00.000] ----------------------------------------------- -Info 29 [00:01:01.000] Open files: -Info 29 [00:01:02.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 29 [00:01:03.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 28 [00:00:59.000] ----------------------------------------------- +Info 28 [00:01:00.000] Open files: +Info 28 [00:01:01.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 28 [00:01:02.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json After request PolledWatches:: @@ -121,14 +120,14 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/project: {} -Info 29 [00:01:04.000] response: +Info 28 [00:01:03.000] response: { "responseRequired": false } -Info 30 [00:01:08.000] FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info -Info 31 [00:01:09.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 32 [00:01:10.000] Scheduled: *ensureProjectForOpenFiles* -Info 33 [00:01:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 29 [00:01:07.000] FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:08.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 31 [00:01:09.000] Scheduled: *ensureProjectForOpenFiles* +Info 32 [00:01:10.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/project/file3.ts 1:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/project/file3.ts 500 undefined WatchType: Closed Script info Before checking timeout queue length (2) and running //// [/user/username/rootfolder/otherfolder/a/b/project/file3.ts] export class c { }export class d {} @@ -156,29 +155,29 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/project: {} -Info 34 [00:01:12.000] Running: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 35 [00:01:13.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 36 [00:01:14.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 37 [00:01:15.000] Different program with same set of files -Info 38 [00:01:16.000] Running: *ensureProjectForOpenFiles* -Info 39 [00:01:17.000] Before ensureProjectForOpenFiles: -Info 40 [00:01:18.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 40 [00:01:19.000] Files (3) - -Info 40 [00:01:20.000] ----------------------------------------------- -Info 40 [00:01:21.000] Open files: -Info 40 [00:01:22.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 40 [00:01:23.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 40 [00:01:24.000] After ensureProjectForOpenFiles: -Info 41 [00:01:25.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 41 [00:01:26.000] Files (3) - -Info 41 [00:01:27.000] ----------------------------------------------- -Info 41 [00:01:28.000] Open files: -Info 41 [00:01:29.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 41 [00:01:30.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 41 [00:01:31.000] got projects updated in background, updating diagnostics for /user/username/rootfolder/otherfolder/a/b/project/file1.ts -Info 42 [00:01:32.000] event: +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 +Info 36 [00:01:14.000] Different program with same set of files +Info 37 [00:01:15.000] Running: *ensureProjectForOpenFiles* +Info 38 [00:01:16.000] Before ensureProjectForOpenFiles: +Info 39 [00:01:17.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 39 [00:01:18.000] Files (3) + +Info 39 [00:01:19.000] ----------------------------------------------- +Info 39 [00:01:20.000] Open files: +Info 39 [00:01:21.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 39 [00:01:22.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 39 [00:01:23.000] After ensureProjectForOpenFiles: +Info 40 [00:01:24.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 40 [00:01:25.000] Files (3) + +Info 40 [00:01:26.000] ----------------------------------------------- +Info 40 [00:01:27.000] Open files: +Info 40 [00:01:28.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 40 [00:01:29.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 40 [00:01:30.000] got projects updated in background, updating diagnostics for /user/username/rootfolder/otherfolder/a/b/project/file1.ts +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 @@ -228,15 +227,15 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/project: {} -Info 43 [00:01:36.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 44 [00:01:37.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation -Info 45 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 46 [00:01:39.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 47 [00:01:40.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 48 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 49 [00:01:44.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 50 [00:01:45.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 51 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +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 +Info 45 [00:01:38.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 46 [00:01:39.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 47 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 48 [00:01:43.000] DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 49 [00:01:44.000] Scheduled: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 50 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts :: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations Before running timeout callbacks //// [/user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts] export class a { } @@ -264,17 +263,17 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 52 [00:01:47.000] Scheduled: *ensureProjectForOpenFiles* -Info 53 [00:01:48.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 54 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 55 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 56 [00:01:51.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 57 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 58 [00:01:53.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 59 [00:01:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations -Info 60 [00:01:55.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 61 [00:01:56.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 62 [00:01:57.000] Files (4) +Info 51 [00:01:46.000] Scheduled: *ensureProjectForOpenFiles* +Info 52 [00:01:47.000] Starting updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 53 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 54 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/rootfolder/otherfolder/a/b/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 55 [00:01:50.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 56 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/a/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 57 [00:01:52.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 58 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/rootfolder/otherfolder/node_modules 1 undefined Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json WatchType: Failed Lookup Locations +Info 59 [00:01:54.000] Finishing updateGraphWorker: Project: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 60 [00:01:55.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 61 [00:01:56.000] Files (4) /a/lib/lib.d.ts /user/username/rootfolder/otherfolder/a/b/node_modules/file2.d.ts /user/username/rootfolder/otherfolder/a/b/project/file1.ts @@ -290,8 +289,8 @@ Info 62 [00:01:57.000] Files (4) file3.ts Matched by default include pattern '**/*' -Info 63 [00:01:58.000] ----------------------------------------------- -Info 64 [00:01:59.000] event: +Info 62 [00:01:57.000] ----------------------------------------------- +Info 63 [00:01:58.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/user/username/rootfolder/otherfolder/a/b/project/file1.ts","diagnostics":[]}} After running timeout callbacks @@ -333,25 +332,25 @@ FsWatchesRecursive:: /user/username/rootfolder/otherfolder/a/b/node_modules: {} -Info 65 [00:02:00.000] Running: *ensureProjectForOpenFiles* -Info 66 [00:02:01.000] Before ensureProjectForOpenFiles: -Info 67 [00:02:02.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 67 [00:02:03.000] Files (4) - -Info 67 [00:02:04.000] ----------------------------------------------- -Info 67 [00:02:05.000] Open files: -Info 67 [00:02:06.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 67 [00:02:07.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 67 [00:02:08.000] After ensureProjectForOpenFiles: -Info 68 [00:02:09.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) -Info 68 [00:02:10.000] Files (4) - -Info 68 [00:02:11.000] ----------------------------------------------- -Info 68 [00:02:12.000] Open files: -Info 68 [00:02:13.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined -Info 68 [00:02:14.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json -Info 68 [00:02:15.000] got projects updated in background, updating diagnostics for /user/username/rootfolder/otherfolder/a/b/project/file1.ts -Info 69 [00:02:16.000] event: +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) +Info 66 [00:02:02.000] Files (4) + +Info 66 [00:02:03.000] ----------------------------------------------- +Info 66 [00:02:04.000] Open files: +Info 66 [00:02:05.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 66 [00:02:06.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 66 [00:02:07.000] After ensureProjectForOpenFiles: +Info 67 [00:02:08.000] Project '/user/username/rootfolder/otherfolder/a/b/project/tsconfig.json' (Configured) +Info 67 [00:02:09.000] Files (4) + +Info 67 [00:02:10.000] ----------------------------------------------- +Info 67 [00:02:11.000] Open files: +Info 67 [00:02:12.000] FileName: /user/username/rootfolder/otherfolder/a/b/project/file1.ts ProjectRootPath: undefined +Info 67 [00:02:13.000] Projects: /user/username/rootfolder/otherfolder/a/b/project/tsconfig.json +Info 67 [00:02:14.000] got projects updated in background, updating diagnostics for /user/username/rootfolder/otherfolder/a/b/project/file1.ts +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 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 bd6da67e8d39e..152c9051e9454 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 @@ -60,18 +60,17 @@ Info 6 [00:00:41.000] Config: /user/username/projects/myproject/playground/ts } Info 7 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground 1 undefined Config: /user/username/projects/myproject/playground/tsconfig.json WatchType: Wild card directory Info 8 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground 1 undefined Config: /user/username/projects/myproject/playground/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/src/src.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig.json -Info 13 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 15 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 16 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 17 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 18 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [00:00:54.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) -Info 20 [00:00:55.000] Files (4) +Info 9 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/src/src.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig.json +Info 12 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 14 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 15 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 16 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 17 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 18 [00:00:53.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) +Info 19 [00:00:54.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/playground/tests.ts /user/username/projects/myproject/playground/tsconfig-json/src/src.ts @@ -87,14 +86,14 @@ Info 20 [00:00:55.000] Files (4) tsconfig-json/tests/spec.ts Matched by default include pattern '**/*' -Info 21 [00:00:56.000] ----------------------------------------------- -Info 22 [00:00:57.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) -Info 22 [00:00:58.000] Files (4) +Info 20 [00:00:55.000] ----------------------------------------------- +Info 21 [00:00:56.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) +Info 21 [00:00:57.000] Files (4) -Info 22 [00:00:59.000] ----------------------------------------------- -Info 22 [00:01:00.000] Open files: -Info 22 [00:01:01.000] FileName: /user/username/projects/myproject/playground/tests.ts ProjectRootPath: undefined -Info 22 [00:01:02.000] Projects: /user/username/projects/myproject/playground/tsconfig.json +Info 21 [00:00:58.000] ----------------------------------------------- +Info 21 [00:00:59.000] Open files: +Info 21 [00:01:00.000] FileName: /user/username/projects/myproject/playground/tests.ts ProjectRootPath: undefined +Info 21 [00:01:01.000] Projects: /user/username/projects/myproject/playground/tsconfig.json After request PolledWatches:: @@ -117,11 +116,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/playground: {} -Info 22 [00:01:03.000] response: +Info 21 [00:01:02.000] response: { "responseRequired": false } -Info 23 [00:01:04.000] request: +Info 22 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -152,12 +151,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/playground: {} -Info 24 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tests.ts 500 undefined WatchType: Closed Script info -Info 25 [00:01:06.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) -Info 25 [00:01:07.000] Files (4) +Info 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) -Info 25 [00:01:08.000] ----------------------------------------------- -Info 25 [00:01:09.000] Open files: +Info 24 [00:01:07.000] ----------------------------------------------- +Info 24 [00:01:08.000] Open files: After request PolledWatches:: @@ -182,11 +181,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/playground: {} -Info 25 [00:01:10.000] response: +Info 24 [00:01:09.000] response: { "responseRequired": false } -Info 26 [00:01:11.000] request: +Info 25 [00:01:10.000] request: { "seq": 0, "type": "request", @@ -219,12 +218,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/playground: {} -Info 27 [00:01:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts 500 undefined WatchType: Closed Script info -Info 28 [00:01:13.000] Search path: /user/username/projects/myproject/playground/tsconfig-json/tests -Info 29 [00:01:14.000] For info: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts :: Config file name: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json -Info 30 [00:01:15.000] Creating configuration project /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json -Info 31 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Config file -Info 32 [00:01:17.000] Config: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json : { +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 +Info 29 [00:01:14.000] Creating configuration project /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json +Info 30 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Config file +Info 31 [00:01:16.000] Config: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/playground/tsconfig-json/src/src.ts" ], @@ -232,19 +231,18 @@ Info 32 [00:01:17.000] Config: /user/username/projects/myproject/playground/ts "configFilePath": "/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json" } } -Info 33 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/src 1 undefined Config: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/src 1 undefined Config: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Wild card directory -Info 35 [00:01:20.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json -Info 37 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info 38 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info 39 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info 40 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info 41 [00:01:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info 42 [00:01:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info 43 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [00:01:29.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) -Info 45 [00:01:30.000] Files (2) +Info 32 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/src 1 undefined Config: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/src 1 undefined Config: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json +Info 35 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots +Info 36 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots +Info 37 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots +Info 38 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots +Info 39 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots +Info 40 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots +Info 41 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:27.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) +Info 43 [00:01:28.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/playground/tsconfig-json/src/src.ts @@ -254,10 +252,10 @@ Info 45 [00:01:30.000] Files (2) src/src.ts Matched by include pattern './src' in 'tsconfig.json' -Info 46 [00:01:31.000] ----------------------------------------------- -Info 47 [00:01:32.000] `remove Project:: -Info 48 [00:01:33.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) -Info 49 [00:01:34.000] Files (4) +Info 44 [00:01:29.000] ----------------------------------------------- +Info 45 [00:01:30.000] `remove Project:: +Info 46 [00:01:31.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) +Info 47 [00:01:32.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/playground/tests.ts /user/username/projects/myproject/playground/tsconfig-json/src/src.ts @@ -273,22 +271,22 @@ Info 49 [00:01:34.000] Files (4) tsconfig-json/tests/spec.ts Matched by default include pattern '**/*' -Info 50 [00:01:35.000] ----------------------------------------------- -Info 51 [00:01:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground 1 undefined Config: /user/username/projects/myproject/playground/tsconfig.json WatchType: Wild card directory -Info 52 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground 1 undefined Config: /user/username/projects/myproject/playground/tsconfig.json WatchType: Wild card directory -Info 53 [00:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Config file -Info 54 [00:01:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 55 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 56 [00:01:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 57 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 58 [00:01:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/tests.ts 500 undefined WatchType: Closed Script info -Info 59 [00:01:44.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) -Info 59 [00:01:45.000] Files (2) - -Info 59 [00:01:46.000] ----------------------------------------------- -Info 59 [00:01:47.000] Open files: -Info 59 [00:01:48.000] FileName: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts ProjectRootPath: undefined -Info 59 [00:01:49.000] Projects: +Info 48 [00:01:33.000] ----------------------------------------------- +Info 49 [00:01:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground 1 undefined Config: /user/username/projects/myproject/playground/tsconfig.json WatchType: Wild card directory +Info 50 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground 1 undefined Config: /user/username/projects/myproject/playground/tsconfig.json WatchType: Wild card directory +Info 51 [00:01:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Config file +Info 52 [00:01:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 53 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 54 [00:01:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 55 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 56 [00:01:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/tests.ts 500 undefined WatchType: Closed Script info +Info 57 [00:01:42.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) +Info 57 [00:01:43.000] Files (2) + +Info 57 [00:01:44.000] ----------------------------------------------- +Info 57 [00:01:45.000] Open files: +Info 57 [00:01:46.000] FileName: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts ProjectRootPath: undefined +Info 57 [00:01:47.000] Projects: After request PolledWatches:: @@ -311,11 +309,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/playground/tsconfig-json/src: {} -Info 59 [00:01:50.000] response: +Info 57 [00:01:48.000] response: { "responseRequired": false } -Info 60 [00:01:51.000] request: +Info 58 [00:01:49.000] request: { "command": "getOutliningSpans", "arguments": { @@ -346,34 +344,33 @@ FsWatchesRecursive:: /user/username/projects/myproject/playground/tsconfig-json/src: {} -Info 61 [00:01:52.000] Before ensureProjectForOpenFiles: -Info 62 [00:01:53.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) -Info 62 [00:01:54.000] Files (2) - -Info 62 [00:01:55.000] ----------------------------------------------- -Info 62 [00:01:56.000] Open files: -Info 62 [00:01:57.000] FileName: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts ProjectRootPath: undefined -Info 62 [00:01:58.000] Projects: -Info 62 [00:01:59.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 63 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 64 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 65 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 66 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 67 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 68 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 69 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 70 [00:02:07.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 71 [00:02:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 72 [00:02:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 73 [00:02:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 74 [00:02:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 75 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 76 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 77 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 78 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 79 [00:02:16.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 80 [00:02:17.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 81 [00:02:18.000] Files (2) +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) + +Info 60 [00:01:53.000] ----------------------------------------------- +Info 60 [00:01:54.000] Open files: +Info 60 [00:01:55.000] FileName: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts ProjectRootPath: undefined +Info 60 [00:01:56.000] Projects: +Info 60 [00:01:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 61 [00:01:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 62 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 63 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 64 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 65 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 66 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 67 [00:02:04.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 68 [00:02:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 69 [00:02:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 70 [00:02:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 71 [00:02:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 72 [00:02:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 73 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 74 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 75 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 76 [00:02:13.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 77 [00:02:14.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 78 [00:02:15.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts @@ -383,19 +380,19 @@ Info 81 [00:02:18.000] Files (2) spec.ts Root file specified for compilation -Info 82 [00:02:19.000] ----------------------------------------------- -Info 83 [00:02:20.000] After ensureProjectForOpenFiles: -Info 84 [00:02:21.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) -Info 84 [00:02:22.000] Files (2) +Info 79 [00:02:16.000] ----------------------------------------------- +Info 80 [00:02:17.000] After ensureProjectForOpenFiles: +Info 81 [00:02:18.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) +Info 81 [00:02:19.000] Files (2) -Info 84 [00:02:23.000] ----------------------------------------------- -Info 84 [00:02:24.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 84 [00:02:25.000] Files (2) +Info 81 [00:02:20.000] ----------------------------------------------- +Info 81 [00:02:21.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 81 [00:02:22.000] Files (2) -Info 84 [00:02:26.000] ----------------------------------------------- -Info 84 [00:02:27.000] Open files: -Info 84 [00:02:28.000] FileName: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts ProjectRootPath: undefined -Info 84 [00:02:29.000] Projects: /dev/null/inferredProject1* +Info 81 [00:02:23.000] ----------------------------------------------- +Info 81 [00:02:24.000] Open files: +Info 81 [00:02:25.000] FileName: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts ProjectRootPath: undefined +Info 81 [00:02:26.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -434,7 +431,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/playground/tsconfig-json/src: {} -Info 84 [00:02:30.000] response: +Info 81 [00:02:27.000] response: { "response": [ { diff --git a/tests/baselines/reference/tsserver/projects/files-opened-and-closed-affecting-multiple-projects.js b/tests/baselines/reference/tsserver/projects/files-opened-and-closed-affecting-multiple-projects.js index 80774af8d823c..9cd32e5819aa1 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 @@ -55,15 +55,14 @@ Info 6 [00:00:31.000] Config: /a/b/projects/config/tsconfig.json : { } Info 7 [00:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/config 1 undefined Config: /a/b/projects/config/tsconfig.json WatchType: Wild card directory Info 8 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/config 1 undefined Config: /a/b/projects/config/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:34.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:35.000] Starting updateGraphWorker: Project: /a/b/projects/config/tsconfig.json -Info 11 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/files/file1.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/config/node_modules/@types 1 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Type roots -Info 14 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/config/node_modules/@types 1 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Type roots -Info 15 [00:00:40.000] Finishing updateGraphWorker: Project: /a/b/projects/config/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:00:41.000] Project '/a/b/projects/config/tsconfig.json' (Configured) -Info 17 [00:00:42.000] Files (3) +Info 9 [00:00:34.000] Starting updateGraphWorker: Project: /a/b/projects/config/tsconfig.json +Info 10 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/files/file1.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/config/node_modules/@types 1 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Type roots +Info 13 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/config/node_modules/@types 1 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Type roots +Info 14 [00:00:39.000] Finishing updateGraphWorker: Project: /a/b/projects/config/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:40.000] Project '/a/b/projects/config/tsconfig.json' (Configured) +Info 16 [00:00:41.000] Files (3) /a/lib/lib.d.ts /a/b/projects/files/file1.ts /a/b/projects/config/file.ts @@ -76,14 +75,14 @@ Info 17 [00:00:42.000] Files (3) file.ts Matched by default include pattern '**/*' -Info 18 [00:00:43.000] ----------------------------------------------- -Info 19 [00:00:44.000] Project '/a/b/projects/config/tsconfig.json' (Configured) -Info 19 [00:00:45.000] Files (3) +Info 17 [00:00:42.000] ----------------------------------------------- +Info 18 [00:00:43.000] Project '/a/b/projects/config/tsconfig.json' (Configured) +Info 18 [00:00:44.000] Files (3) -Info 19 [00:00:46.000] ----------------------------------------------- -Info 19 [00:00:47.000] Open files: -Info 19 [00:00:48.000] FileName: /a/b/projects/config/file.ts ProjectRootPath: undefined -Info 19 [00:00:49.000] Projects: /a/b/projects/config/tsconfig.json +Info 18 [00:00:45.000] ----------------------------------------------- +Info 18 [00:00:46.000] Open files: +Info 18 [00:00:47.000] FileName: /a/b/projects/config/file.ts ProjectRootPath: undefined +Info 18 [00:00:48.000] Projects: /a/b/projects/config/tsconfig.json After request PolledWatches:: @@ -102,11 +101,11 @@ FsWatchesRecursive:: /a/b/projects/config: {} -Info 19 [00:00:50.000] response: +Info 18 [00:00:49.000] response: { "responseRequired": false } -Info 20 [00:00:51.000] request: +Info 19 [00:00:50.000] request: { "command": "open", "arguments": { @@ -133,18 +132,18 @@ FsWatchesRecursive:: /a/b/projects/config: {} -Info 21 [00:00:52.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/files/file1.ts 500 undefined WatchType: Closed Script info -Info 22 [00:00:53.000] Search path: /a/b/projects/files -Info 23 [00:00:54.000] For info: /a/b/projects/files/file1.ts :: No config files found. -Info 24 [00:00:55.000] Project '/a/b/projects/config/tsconfig.json' (Configured) -Info 24 [00:00:56.000] Files (3) - -Info 24 [00:00:57.000] ----------------------------------------------- -Info 24 [00:00:58.000] Open files: -Info 24 [00:00:59.000] FileName: /a/b/projects/config/file.ts ProjectRootPath: undefined -Info 24 [00:01:00.000] Projects: /a/b/projects/config/tsconfig.json -Info 24 [00:01:01.000] FileName: /a/b/projects/files/file1.ts ProjectRootPath: undefined -Info 24 [00:01:02.000] Projects: /a/b/projects/config/tsconfig.json +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. +Info 23 [00:00:54.000] Project '/a/b/projects/config/tsconfig.json' (Configured) +Info 23 [00:00:55.000] Files (3) + +Info 23 [00:00:56.000] ----------------------------------------------- +Info 23 [00:00:57.000] Open files: +Info 23 [00:00:58.000] FileName: /a/b/projects/config/file.ts ProjectRootPath: undefined +Info 23 [00:00:59.000] Projects: /a/b/projects/config/tsconfig.json +Info 23 [00:01:00.000] FileName: /a/b/projects/files/file1.ts ProjectRootPath: undefined +Info 23 [00:01:01.000] Projects: /a/b/projects/config/tsconfig.json After request PolledWatches:: @@ -161,11 +160,11 @@ FsWatchesRecursive:: /a/b/projects/config: {} -Info 24 [00:01:03.000] response: +Info 23 [00:01:02.000] response: { "responseRequired": false } -Info 25 [00:01:04.000] request: +Info 24 [00:01:03.000] request: { "command": "close", "arguments": { @@ -190,14 +189,14 @@ FsWatchesRecursive:: /a/b/projects/config: {} -Info 26 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/config/file.ts 500 undefined WatchType: Closed Script info -Info 27 [00:01:06.000] Project '/a/b/projects/config/tsconfig.json' (Configured) -Info 27 [00:01:07.000] Files (3) +Info 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) -Info 27 [00:01:08.000] ----------------------------------------------- -Info 27 [00:01:09.000] Open files: -Info 27 [00:01:10.000] FileName: /a/b/projects/files/file1.ts ProjectRootPath: undefined -Info 27 [00:01:11.000] Projects: /a/b/projects/config/tsconfig.json +Info 26 [00:01:07.000] ----------------------------------------------- +Info 26 [00:01:08.000] Open files: +Info 26 [00:01:09.000] FileName: /a/b/projects/files/file1.ts ProjectRootPath: undefined +Info 26 [00:01:10.000] Projects: /a/b/projects/config/tsconfig.json After request PolledWatches:: @@ -216,11 +215,11 @@ FsWatchesRecursive:: /a/b/projects/config: {} -Info 27 [00:01:12.000] response: +Info 26 [00:01:11.000] response: { "responseRequired": false } -Info 28 [00:01:13.000] request: +Info 27 [00:01:12.000] request: { "command": "open", "arguments": { @@ -247,17 +246,16 @@ FsWatchesRecursive:: /a/b/projects/config: {} -Info 29 [00:01:14.000] Search path: /a/b/projects/files -Info 30 [00:01:15.000] For info: /a/b/projects/files/file2.ts :: No config files found. -Info 31 [00:01:16.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 32 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/files/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 33 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/files/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 34 [00:01:19.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 35 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/files/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 36 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/files/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 37 [00:01:22.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:23.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 39 [00:01:24.000] Files (2) +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 +Info 31 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/files/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 32 [00:01:17.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 33 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/files/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 34 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/files/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 35 [00:01:20.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:21.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 37 [00:01:22.000] Files (2) /a/lib/lib.d.ts /a/b/projects/files/file2.ts @@ -267,10 +265,10 @@ Info 39 [00:01:24.000] Files (2) file2.ts Root file specified for compilation -Info 40 [00:01:25.000] ----------------------------------------------- -Info 41 [00:01:26.000] `remove Project:: -Info 42 [00:01:27.000] Project '/a/b/projects/config/tsconfig.json' (Configured) -Info 43 [00:01:28.000] Files (3) +Info 38 [00:01:23.000] ----------------------------------------------- +Info 39 [00:01:24.000] `remove Project:: +Info 40 [00:01:25.000] Project '/a/b/projects/config/tsconfig.json' (Configured) +Info 41 [00:01:26.000] Files (3) /a/lib/lib.d.ts /a/b/projects/files/file1.ts /a/b/projects/config/file.ts @@ -283,22 +281,22 @@ Info 43 [00:01:28.000] Files (3) file.ts Matched by default include pattern '**/*' -Info 44 [00:01:29.000] ----------------------------------------------- -Info 45 [00:01:30.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/config 1 undefined Config: /a/b/projects/config/tsconfig.json WatchType: Wild card directory -Info 46 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/config 1 undefined Config: /a/b/projects/config/tsconfig.json WatchType: Wild card directory -Info 47 [00:01:32.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/config/tsconfig.json 2000 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Config file -Info 48 [00:01:33.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/config/node_modules/@types 1 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Type roots -Info 49 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/config/node_modules/@types 1 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Type roots -Info 50 [00:01:35.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/config/file.ts 500 undefined WatchType: Closed Script info -Info 51 [00:01:36.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 51 [00:01:37.000] Files (2) - -Info 51 [00:01:38.000] ----------------------------------------------- -Info 51 [00:01:39.000] Open files: -Info 51 [00:01:40.000] FileName: /a/b/projects/files/file1.ts ProjectRootPath: undefined -Info 51 [00:01:41.000] Projects: -Info 51 [00:01:42.000] FileName: /a/b/projects/files/file2.ts ProjectRootPath: undefined -Info 51 [00:01:43.000] Projects: /dev/null/inferredProject1* +Info 42 [00:01:27.000] ----------------------------------------------- +Info 43 [00:01:28.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/config 1 undefined Config: /a/b/projects/config/tsconfig.json WatchType: Wild card directory +Info 44 [00:01:29.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/config 1 undefined Config: /a/b/projects/config/tsconfig.json WatchType: Wild card directory +Info 45 [00:01:30.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/config/tsconfig.json 2000 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Config file +Info 46 [00:01:31.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/config/node_modules/@types 1 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Type roots +Info 47 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/projects/config/node_modules/@types 1 undefined Project: /a/b/projects/config/tsconfig.json WatchType: Type roots +Info 48 [00:01:33.000] FileWatcher:: Close:: WatchInfo: /a/b/projects/config/file.ts 500 undefined WatchType: Closed Script info +Info 49 [00:01:34.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 49 [00:01:35.000] Files (2) + +Info 49 [00:01:36.000] ----------------------------------------------- +Info 49 [00:01:37.000] Open files: +Info 49 [00:01:38.000] FileName: /a/b/projects/files/file1.ts ProjectRootPath: undefined +Info 49 [00:01:39.000] Projects: +Info 49 [00:01:40.000] FileName: /a/b/projects/files/file2.ts ProjectRootPath: undefined +Info 49 [00:01:41.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -315,11 +313,11 @@ FsWatches:: FsWatchesRecursive:: -Info 51 [00:01:44.000] response: +Info 49 [00:01:42.000] response: { "responseRequired": false } -Info 52 [00:01:45.000] request: +Info 50 [00:01:43.000] request: { "command": "occurrences", "arguments": { @@ -346,23 +344,22 @@ FsWatches:: FsWatchesRecursive:: -Info 53 [00:01:46.000] Before ensureProjectForOpenFiles: -Info 54 [00:01:47.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 54 [00:01:48.000] Files (2) - -Info 54 [00:01:49.000] ----------------------------------------------- -Info 54 [00:01:50.000] Open files: -Info 54 [00:01:51.000] FileName: /a/b/projects/files/file1.ts ProjectRootPath: undefined -Info 54 [00:01:52.000] Projects: -Info 54 [00:01:53.000] FileName: /a/b/projects/files/file2.ts ProjectRootPath: undefined -Info 54 [00:01:54.000] Projects: /dev/null/inferredProject1* -Info 54 [00:01:55.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 55 [00:01:56.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* -Info 56 [00:01:57.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/files/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 57 [00:01:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/files/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots -Info 58 [00:01:59.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 59 [00:02:00.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 60 [00:02:01.000] Files (2) +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) + +Info 52 [00:01:47.000] ----------------------------------------------- +Info 52 [00:01:48.000] Open files: +Info 52 [00:01:49.000] FileName: /a/b/projects/files/file1.ts ProjectRootPath: undefined +Info 52 [00:01:50.000] Projects: +Info 52 [00:01:51.000] FileName: /a/b/projects/files/file2.ts ProjectRootPath: undefined +Info 52 [00:01:52.000] Projects: /dev/null/inferredProject1* +Info 52 [00:01:53.000] Starting updateGraphWorker: Project: /dev/null/inferredProject2* +Info 53 [00:01:54.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/files/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 54 [00:01:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/files/node_modules/@types 1 undefined Project: /dev/null/inferredProject2* WatchType: Type roots +Info 55 [00:01:56.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject2* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 56 [00:01:57.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 57 [00:01:58.000] Files (2) /a/lib/lib.d.ts /a/b/projects/files/file1.ts @@ -372,21 +369,21 @@ Info 60 [00:02:01.000] Files (2) file1.ts Root file specified for compilation -Info 61 [00:02:02.000] ----------------------------------------------- -Info 62 [00:02:03.000] After ensureProjectForOpenFiles: -Info 63 [00:02:04.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 63 [00:02:05.000] Files (2) - -Info 63 [00:02:06.000] ----------------------------------------------- -Info 63 [00:02:07.000] Project '/dev/null/inferredProject2*' (Inferred) -Info 63 [00:02:08.000] Files (2) - -Info 63 [00:02:09.000] ----------------------------------------------- -Info 63 [00:02:10.000] Open files: -Info 63 [00:02:11.000] FileName: /a/b/projects/files/file1.ts ProjectRootPath: undefined -Info 63 [00:02:12.000] Projects: /dev/null/inferredProject2* -Info 63 [00:02:13.000] FileName: /a/b/projects/files/file2.ts ProjectRootPath: undefined -Info 63 [00:02:14.000] Projects: /dev/null/inferredProject1* +Info 58 [00:01:59.000] ----------------------------------------------- +Info 59 [00:02:00.000] After ensureProjectForOpenFiles: +Info 60 [00:02:01.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 60 [00:02:02.000] Files (2) + +Info 60 [00:02:03.000] ----------------------------------------------- +Info 60 [00:02:04.000] Project '/dev/null/inferredProject2*' (Inferred) +Info 60 [00:02:05.000] Files (2) + +Info 60 [00:02:06.000] ----------------------------------------------- +Info 60 [00:02:07.000] Open files: +Info 60 [00:02:08.000] FileName: /a/b/projects/files/file1.ts ProjectRootPath: undefined +Info 60 [00:02:09.000] Projects: /dev/null/inferredProject2* +Info 60 [00:02:10.000] FileName: /a/b/projects/files/file2.ts ProjectRootPath: undefined +Info 60 [00:02:11.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -403,7 +400,7 @@ FsWatches:: FsWatchesRecursive:: -Info 63 [00:02:15.000] response: +Info 60 [00:02:12.000] response: { "response": [], "responseRequired": true diff --git a/tests/baselines/reference/tsserver/projects/files-with-mixed-content-are-handled-correctly.js b/tests/baselines/reference/tsserver/projects/files-with-mixed-content-are-handled-correctly.js index 0feeee010598f..b3c40a4bec226 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 @@ -10,36 +10,35 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [00:00:10.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 2 [00:00:11.000] Starting updateGraphWorker: Project: projectFileName -Info 3 [00:00:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: projectFileName WatchType: Missing file -Info 4 [00:00:13.000] Finishing updateGraphWorker: Project: projectFileName Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 5 [00:00:14.000] Project 'projectFileName' (External) -Info 6 [00:00:15.000] Files (1) +Info 1 [00:00:10.000] Starting updateGraphWorker: Project: projectFileName +Info 2 [00:00:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: projectFileName WatchType: Missing file +Info 3 [00:00:12.000] Finishing updateGraphWorker: Project: projectFileName Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 4 [00:00:13.000] Project 'projectFileName' (External) +Info 5 [00:00:14.000] Files (1) /a/b/f1.html a/b/f1.html Root file specified for compilation -Info 7 [00:00:16.000] ----------------------------------------------- -Info 8 [00:00:17.000] Text of/a/b/f1.html: -Info 9 [00:00:18.000] Starting updateGraphWorker: Project: projectFileName -Info 10 [00:00:19.000] Finishing updateGraphWorker: Project: projectFileName Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 11 [00:00:20.000] Different program with same set of files -Info 12 [00:00:21.000] Project 'projectFileName' (External) -Info 12 [00:00:22.000] Files (1) - -Info 12 [00:00:23.000] ----------------------------------------------- -Info 12 [00:00:24.000] Open files: -Info 12 [00:00:25.000] FileName: /a/b/f1.html ProjectRootPath: undefined -Info 12 [00:00:26.000] Projects: projectFileName -Info 12 [00:00:27.000] Starting updateGraphWorker: Project: projectFileName -Info 13 [00:00:28.000] Finishing updateGraphWorker: Project: projectFileName Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 14 [00:00:29.000] QuickInfo : var -Info 15 [00:00:30.000] Project 'projectFileName' (External) -Info 15 [00:00:31.000] Files (1) - -Info 15 [00:00:32.000] ----------------------------------------------- -Info 15 [00:00:33.000] Open files: -Info 15 [00:00:34.000] Text of/a/b/f1.html: \ No newline at end of file +Info 6 [00:00:15.000] ----------------------------------------------- +Info 7 [00:00:16.000] Text of/a/b/f1.html: +Info 8 [00:00:17.000] Starting updateGraphWorker: Project: projectFileName +Info 9 [00:00:18.000] Finishing updateGraphWorker: Project: projectFileName Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 10 [00:00:19.000] Different program with same set of files +Info 11 [00:00:20.000] Project 'projectFileName' (External) +Info 11 [00:00:21.000] Files (1) + +Info 11 [00:00:22.000] ----------------------------------------------- +Info 11 [00:00:23.000] Open files: +Info 11 [00:00:24.000] FileName: /a/b/f1.html ProjectRootPath: undefined +Info 11 [00:00:25.000] Projects: projectFileName +Info 11 [00:00:26.000] Starting updateGraphWorker: Project: projectFileName +Info 12 [00:00:27.000] Finishing updateGraphWorker: Project: projectFileName Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 13 [00:00:28.000] QuickInfo : var +Info 14 [00:00:29.000] Project 'projectFileName' (External) +Info 14 [00:00:30.000] Files (1) + +Info 14 [00:00:31.000] ----------------------------------------------- +Info 14 [00:00:32.000] Open files: +Info 14 [00:00:33.000] Text of/a/b/f1.html: \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projects/getting-errors-from-closed-script-info-does-not-throw-exception-because-of-getting-project-from-orphan-script-info.js b/tests/baselines/reference/tsserver/projects/getting-errors-from-closed-script-info-does-not-throw-exception-because-of-getting-project-from-orphan-script-info.js index 0a49f5c54650c..45459aebdc561 100644 --- a/tests/baselines/reference/tsserver/projects/getting-errors-from-closed-script-info-does-not-throw-exception-because-of-getting-project-from-orphan-script-info.js +++ b/tests/baselines/reference/tsserver/projects/getting-errors-from-closed-script-info-does-not-throw-exception-because-of-getting-project-from-orphan-script-info.js @@ -49,14 +49,13 @@ Info 6 [00:00:21.000] Config: /a/b/tsconfig.json : { } Info 7 [00:00:22.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory Info 8 [00:00:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:24.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:25.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 11 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 13 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [00:00:29.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 15 [00:00:30.000] Project '/a/b/tsconfig.json' (Configured) -Info 16 [00:00:31.000] Files (2) +Info 9 [00:00:24.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 10 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:26.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 12 [00:00:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 13 [00:00:28.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 14 [00:00:29.000] Project '/a/b/tsconfig.json' (Configured) +Info 15 [00:00:30.000] Files (2) /a/lib/lib.d.ts /a/b/app.ts @@ -66,14 +65,14 @@ Info 16 [00:00:31.000] Files (2) app.ts Matched by default include pattern '**/*' -Info 17 [00:00:32.000] ----------------------------------------------- -Info 18 [00:00:33.000] Project '/a/b/tsconfig.json' (Configured) -Info 18 [00:00:34.000] Files (2) +Info 16 [00:00:31.000] ----------------------------------------------- +Info 17 [00:00:32.000] Project '/a/b/tsconfig.json' (Configured) +Info 17 [00:00:33.000] Files (2) -Info 18 [00:00:35.000] ----------------------------------------------- -Info 18 [00:00:36.000] Open files: -Info 18 [00:00:37.000] FileName: /a/b/app.ts ProjectRootPath: undefined -Info 18 [00:00:38.000] Projects: /a/b/tsconfig.json +Info 17 [00:00:34.000] ----------------------------------------------- +Info 17 [00:00:35.000] Open files: +Info 17 [00:00:36.000] FileName: /a/b/app.ts ProjectRootPath: undefined +Info 17 [00:00:37.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -90,11 +89,11 @@ FsWatchesRecursive:: /a/b: {} -Info 18 [00:00:39.000] response: +Info 17 [00:00:38.000] response: { "responseRequired": false } -Info 19 [00:00:40.000] request: +Info 18 [00:00:39.000] request: { "command": "close", "arguments": { @@ -119,12 +118,12 @@ FsWatchesRecursive:: /a/b: {} -Info 20 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /a/b/app.ts 500 undefined WatchType: Closed Script info -Info 21 [00:00:42.000] Project '/a/b/tsconfig.json' (Configured) -Info 21 [00:00:43.000] Files (2) +Info 19 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/b/app.ts 500 undefined WatchType: Closed Script info +Info 20 [00:00:41.000] Project '/a/b/tsconfig.json' (Configured) +Info 20 [00:00:42.000] Files (2) -Info 21 [00:00:44.000] ----------------------------------------------- -Info 21 [00:00:45.000] Open files: +Info 20 [00:00:43.000] ----------------------------------------------- +Info 20 [00:00:44.000] Open files: After request PolledWatches:: @@ -143,11 +142,11 @@ FsWatchesRecursive:: /a/b: {} -Info 21 [00:00:46.000] response: +Info 20 [00:00:45.000] response: { "responseRequired": false } -Info 22 [00:00:47.000] request: +Info 21 [00:00:46.000] request: { "command": "geterr", "arguments": { @@ -195,7 +194,7 @@ FsWatchesRecursive:: /a/b: {} -Info 23 [00:00:48.000] response: +Info 22 [00:00:47.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projects/handles-delayed-directory-watch-invoke-on-file-creation.js b/tests/baselines/reference/tsserver/projects/handles-delayed-directory-watch-invoke-on-file-creation.js index ebbbaf5c9cce7..a2353fd3845f7 100644 --- a/tests/baselines/reference/tsserver/projects/handles-delayed-directory-watch-invoke-on-file-creation.js +++ b/tests/baselines/reference/tsserver/projects/handles-delayed-directory-watch-invoke-on-file-creation.js @@ -56,15 +56,14 @@ Info 7 [00:00:32.000] Config: /users/username/projects/project/tsconfig.json } Info 8 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Info 9 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:35.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/sub/a.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:37.000] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info 13 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots -Info 15 [00:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots -Info 16 [00:00:41.000] Finishing updateGraphWorker: Project: /users/username/projects/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 17 [00:00:42.000] Project '/users/username/projects/project/tsconfig.json' (Configured) -Info 18 [00:00:43.000] Files (3) +Info 10 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/sub/a.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:36.000] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json +Info 12 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots +Info 14 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Type roots +Info 15 [00:00:40.000] Finishing updateGraphWorker: Project: /users/username/projects/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 16 [00:00:41.000] Project '/users/username/projects/project/tsconfig.json' (Configured) +Info 17 [00:00:42.000] Files (3) /a/lib/lib.d.ts /users/username/projects/project/b.ts /users/username/projects/project/sub/a.ts @@ -77,20 +76,20 @@ Info 18 [00:00:43.000] Files (3) sub/a.ts Matched by default include pattern '**/*' -Info 19 [00:00:44.000] ----------------------------------------------- -Info 20 [00:00:45.000] event: +Info 18 [00:00:43.000] ----------------------------------------------- +Info 19 [00:00:44.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/users/username/projects/project/tsconfig.json"}} -Info 21 [00:00:46.000] event: +Info 20 [00:00:45.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"5b0be5fc7f7235edf5a31bffe614b4e0819e55ec5f118558864b1f882e283c0d","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":2,"tsSize":40,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 22 [00:00:47.000] event: +Info 21 [00:00:46.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/users/username/projects/project/b.ts","configFile":"/users/username/projects/project/tsconfig.json","diagnostics":[]}} -Info 23 [00:00:48.000] Project '/users/username/projects/project/tsconfig.json' (Configured) -Info 23 [00:00:49.000] Files (3) +Info 22 [00:00:47.000] Project '/users/username/projects/project/tsconfig.json' (Configured) +Info 22 [00:00:48.000] Files (3) -Info 23 [00:00:50.000] ----------------------------------------------- -Info 23 [00:00:51.000] Open files: -Info 23 [00:00:52.000] FileName: /users/username/projects/project/b.ts ProjectRootPath: /users/username/projects/project -Info 23 [00:00:53.000] Projects: /users/username/projects/project/tsconfig.json +Info 22 [00:00:49.000] ----------------------------------------------- +Info 22 [00:00:50.000] Open files: +Info 22 [00:00:51.000] FileName: /users/username/projects/project/b.ts ProjectRootPath: /users/username/projects/project +Info 22 [00:00:52.000] Projects: /users/username/projects/project/tsconfig.json After request PolledWatches:: @@ -109,11 +108,11 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 23 [00:00:54.000] response: +Info 22 [00:00:53.000] response: { "responseRequired": false } -Info 24 [00:00:55.000] request: +Info 23 [00:00:54.000] request: { "seq": 0, "type": "request", @@ -141,18 +140,18 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 25 [00:00:56.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/project/sub/a.ts 500 undefined WatchType: Closed Script info -Info 26 [00:00:57.000] Search path: /users/username/projects/project/sub -Info 27 [00:00:58.000] For info: /users/username/projects/project/sub/a.ts :: Config file name: /users/username/projects/project/tsconfig.json -Info 28 [00:00:59.000] Project '/users/username/projects/project/tsconfig.json' (Configured) -Info 28 [00:01:00.000] Files (3) +Info 24 [00:00:55.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/project/sub/a.ts 500 undefined WatchType: Closed Script info +Info 25 [00:00:56.000] Search path: /users/username/projects/project/sub +Info 26 [00:00:57.000] For info: /users/username/projects/project/sub/a.ts :: Config file name: /users/username/projects/project/tsconfig.json +Info 27 [00:00:58.000] Project '/users/username/projects/project/tsconfig.json' (Configured) +Info 27 [00:00:59.000] Files (3) -Info 28 [00:01:01.000] ----------------------------------------------- -Info 28 [00:01:02.000] Open files: -Info 28 [00:01:03.000] FileName: /users/username/projects/project/b.ts ProjectRootPath: /users/username/projects/project -Info 28 [00:01:04.000] Projects: /users/username/projects/project/tsconfig.json -Info 28 [00:01:05.000] FileName: /users/username/projects/project/sub/a.ts ProjectRootPath: /users/username/projects/project -Info 28 [00:01:06.000] Projects: /users/username/projects/project/tsconfig.json +Info 27 [00:01:00.000] ----------------------------------------------- +Info 27 [00:01:01.000] Open files: +Info 27 [00:01:02.000] FileName: /users/username/projects/project/b.ts ProjectRootPath: /users/username/projects/project +Info 27 [00:01:03.000] Projects: /users/username/projects/project/tsconfig.json +Info 27 [00:01:04.000] FileName: /users/username/projects/project/sub/a.ts ProjectRootPath: /users/username/projects/project +Info 27 [00:01:05.000] Projects: /users/username/projects/project/tsconfig.json After request PolledWatches:: @@ -169,7 +168,7 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 28 [00:01:07.000] response: +Info 27 [00:01:06.000] response: { "responseRequired": false } @@ -205,16 +204,16 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 29 [00:01:09.000] DirectoryWatcher:: Triggered with /users/username/projects/project/sub/a.ts :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory -Info 30 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/project/sub/a.ts :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory -Info 31 [00:01:12.000] DirectoryWatcher:: Triggered with /users/username/projects/project/sub :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory -Info 32 [00:01:13.000] Scheduled: /users/username/projects/project/tsconfig.json -Info 33 [00:01:14.000] Scheduled: *ensureProjectForOpenFiles* -Info 34 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/project/sub :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory -Info 35 [00:01:18.000] DirectoryWatcher:: Triggered with /users/username/projects/project/a.ts :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory -Info 36 [00:01:19.000] Scheduled: /users/username/projects/project/tsconfig.json, Cancelled earlier one -Info 37 [00:01:20.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 38 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/project/a.ts :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory +Info 28 [00:01:08.000] DirectoryWatcher:: Triggered with /users/username/projects/project/sub/a.ts :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory +Info 29 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/project/sub/a.ts :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory +Info 30 [00:01:11.000] DirectoryWatcher:: Triggered with /users/username/projects/project/sub :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory +Info 31 [00:01:12.000] Scheduled: /users/username/projects/project/tsconfig.json +Info 32 [00:01:13.000] Scheduled: *ensureProjectForOpenFiles* +Info 33 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/project/sub :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:17.000] DirectoryWatcher:: Triggered with /users/username/projects/project/a.ts :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory +Info 35 [00:01:18.000] Scheduled: /users/username/projects/project/tsconfig.json, Cancelled earlier one +Info 36 [00:01:19.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 37 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/project/a.ts :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Checking timeout queue length: 2 //// [/users/username/projects/project/a.ts] export const a = 10; @@ -235,7 +234,7 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 39 [00:01:22.000] request: +Info 38 [00:01:21.000] request: { "seq": 0, "type": "request", @@ -260,15 +259,15 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 40 [00:01:23.000] Scheduled: /users/username/projects/project/tsconfig.json, Cancelled earlier one -Info 41 [00:01:24.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 42 [00:01:25.000] Project '/users/username/projects/project/tsconfig.json' (Configured) -Info 42 [00:01:26.000] Files (3) +Info 39 [00:01:22.000] Scheduled: /users/username/projects/project/tsconfig.json, Cancelled earlier one +Info 40 [00:01:23.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 41 [00:01:24.000] Project '/users/username/projects/project/tsconfig.json' (Configured) +Info 41 [00:01:25.000] Files (3) -Info 42 [00:01:27.000] ----------------------------------------------- -Info 42 [00:01:28.000] Open files: -Info 42 [00:01:29.000] FileName: /users/username/projects/project/b.ts ProjectRootPath: /users/username/projects/project -Info 42 [00:01:30.000] Projects: /users/username/projects/project/tsconfig.json +Info 41 [00:01:26.000] ----------------------------------------------- +Info 41 [00:01:27.000] Open files: +Info 41 [00:01:28.000] FileName: /users/username/projects/project/b.ts ProjectRootPath: /users/username/projects/project +Info 41 [00:01:29.000] Projects: /users/username/projects/project/tsconfig.json After request PolledWatches:: @@ -285,7 +284,7 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 42 [00:01:31.000] response: +Info 41 [00:01:30.000] response: { "responseRequired": false } @@ -305,7 +304,7 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 43 [00:01:32.000] request: +Info 42 [00:01:31.000] request: { "seq": 0, "type": "request", @@ -331,12 +330,12 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 44 [00:01:33.000] Search path: /users/username/projects/project -Info 45 [00:01:34.000] For info: /users/username/projects/project/a.ts :: Config file name: /users/username/projects/project/tsconfig.json -Info 46 [00:01:35.000] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info 47 [00:01:36.000] Finishing updateGraphWorker: Project: /users/username/projects/project/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 48 [00:01:37.000] Project '/users/username/projects/project/tsconfig.json' (Configured) -Info 49 [00:01:38.000] Files (3) +Info 43 [00:01:32.000] Search path: /users/username/projects/project +Info 44 [00:01:33.000] For info: /users/username/projects/project/a.ts :: Config file name: /users/username/projects/project/tsconfig.json +Info 45 [00:01:34.000] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json +Info 46 [00:01:35.000] Finishing updateGraphWorker: Project: /users/username/projects/project/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 47 [00:01:36.000] Project '/users/username/projects/project/tsconfig.json' (Configured) +Info 48 [00:01:37.000] Files (3) /a/lib/lib.d.ts /users/username/projects/project/b.ts /users/username/projects/project/a.ts @@ -349,16 +348,16 @@ Info 49 [00:01:38.000] Files (3) a.ts Matched by default include pattern '**/*' -Info 50 [00:01:39.000] ----------------------------------------------- -Info 51 [00:01:40.000] Project '/users/username/projects/project/tsconfig.json' (Configured) -Info 51 [00:01:41.000] Files (3) +Info 49 [00:01:38.000] ----------------------------------------------- +Info 50 [00:01:39.000] Project '/users/username/projects/project/tsconfig.json' (Configured) +Info 50 [00:01:40.000] Files (3) -Info 51 [00:01:42.000] ----------------------------------------------- -Info 51 [00:01:43.000] Open files: -Info 51 [00:01:44.000] FileName: /users/username/projects/project/b.ts ProjectRootPath: /users/username/projects/project -Info 51 [00:01:45.000] Projects: /users/username/projects/project/tsconfig.json -Info 51 [00:01:46.000] FileName: /users/username/projects/project/a.ts ProjectRootPath: /users/username/projects/project -Info 51 [00:01:47.000] Projects: /users/username/projects/project/tsconfig.json +Info 50 [00:01:41.000] ----------------------------------------------- +Info 50 [00:01:42.000] Open files: +Info 50 [00:01:43.000] FileName: /users/username/projects/project/b.ts ProjectRootPath: /users/username/projects/project +Info 50 [00:01:44.000] Projects: /users/username/projects/project/tsconfig.json +Info 50 [00:01:45.000] FileName: /users/username/projects/project/a.ts ProjectRootPath: /users/username/projects/project +Info 50 [00:01:46.000] Projects: /users/username/projects/project/tsconfig.json After request PolledWatches:: @@ -375,7 +374,7 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 51 [00:01:48.000] response: +Info 50 [00:01:47.000] response: { "responseRequired": false } @@ -395,30 +394,30 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 52 [00:01:49.000] Running: /users/username/projects/project/tsconfig.json -Info 53 [00:01:50.000] Running: *ensureProjectForOpenFiles* -Info 54 [00:01:51.000] Before ensureProjectForOpenFiles: -Info 55 [00:01:52.000] Project '/users/username/projects/project/tsconfig.json' (Configured) -Info 55 [00:01:53.000] Files (3) - -Info 55 [00:01:54.000] ----------------------------------------------- -Info 55 [00:01:55.000] Open files: -Info 55 [00:01:56.000] FileName: /users/username/projects/project/b.ts ProjectRootPath: /users/username/projects/project -Info 55 [00:01:57.000] Projects: /users/username/projects/project/tsconfig.json -Info 55 [00:01:58.000] FileName: /users/username/projects/project/a.ts ProjectRootPath: /users/username/projects/project -Info 55 [00:01:59.000] Projects: /users/username/projects/project/tsconfig.json -Info 55 [00:02:00.000] After ensureProjectForOpenFiles: -Info 56 [00:02:01.000] Project '/users/username/projects/project/tsconfig.json' (Configured) -Info 56 [00:02:02.000] Files (3) - -Info 56 [00:02:03.000] ----------------------------------------------- -Info 56 [00:02:04.000] Open files: -Info 56 [00:02:05.000] FileName: /users/username/projects/project/b.ts ProjectRootPath: /users/username/projects/project -Info 56 [00:02:06.000] Projects: /users/username/projects/project/tsconfig.json -Info 56 [00:02:07.000] FileName: /users/username/projects/project/a.ts ProjectRootPath: /users/username/projects/project -Info 56 [00:02:08.000] Projects: /users/username/projects/project/tsconfig.json -Info 56 [00:02:09.000] got projects updated in background, updating diagnostics for /users/username/projects/project/b.ts,/users/username/projects/project/a.ts -Info 57 [00:02:10.000] event: +Info 51 [00:01:48.000] Running: /users/username/projects/project/tsconfig.json +Info 52 [00:01:49.000] Running: *ensureProjectForOpenFiles* +Info 53 [00:01:50.000] Before ensureProjectForOpenFiles: +Info 54 [00:01:51.000] Project '/users/username/projects/project/tsconfig.json' (Configured) +Info 54 [00:01:52.000] Files (3) + +Info 54 [00:01:53.000] ----------------------------------------------- +Info 54 [00:01:54.000] Open files: +Info 54 [00:01:55.000] FileName: /users/username/projects/project/b.ts ProjectRootPath: /users/username/projects/project +Info 54 [00:01:56.000] Projects: /users/username/projects/project/tsconfig.json +Info 54 [00:01:57.000] FileName: /users/username/projects/project/a.ts ProjectRootPath: /users/username/projects/project +Info 54 [00:01:58.000] Projects: /users/username/projects/project/tsconfig.json +Info 54 [00:01:59.000] After ensureProjectForOpenFiles: +Info 55 [00:02:00.000] Project '/users/username/projects/project/tsconfig.json' (Configured) +Info 55 [00:02:01.000] Files (3) + +Info 55 [00:02:02.000] ----------------------------------------------- +Info 55 [00:02:03.000] Open files: +Info 55 [00:02:04.000] FileName: /users/username/projects/project/b.ts ProjectRootPath: /users/username/projects/project +Info 55 [00:02:05.000] Projects: /users/username/projects/project/tsconfig.json +Info 55 [00:02:06.000] FileName: /users/username/projects/project/a.ts ProjectRootPath: /users/username/projects/project +Info 55 [00:02:07.000] Projects: /users/username/projects/project/tsconfig.json +Info 55 [00:02:08.000] got projects updated in background, updating diagnostics for /users/username/projects/project/b.ts,/users/username/projects/project/a.ts +Info 56 [00:02:09.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/users/username/projects/project/b.ts","/users/username/projects/project/a.ts"]}} After checking timeout queue length (2) and running @@ -436,7 +435,7 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 58 [00:02:11.000] request: +Info 57 [00:02:10.000] request: { "seq": 0, "type": "request", @@ -461,15 +460,15 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 59 [00:02:12.000] Scheduled: /users/username/projects/project/tsconfig.json -Info 60 [00:02:13.000] Scheduled: *ensureProjectForOpenFiles* -Info 61 [00:02:14.000] Project '/users/username/projects/project/tsconfig.json' (Configured) -Info 61 [00:02:15.000] Files (3) +Info 58 [00:02:11.000] Scheduled: /users/username/projects/project/tsconfig.json +Info 59 [00:02:12.000] Scheduled: *ensureProjectForOpenFiles* +Info 60 [00:02:13.000] Project '/users/username/projects/project/tsconfig.json' (Configured) +Info 60 [00:02:14.000] Files (3) -Info 61 [00:02:16.000] ----------------------------------------------- -Info 61 [00:02:17.000] Open files: -Info 61 [00:02:18.000] FileName: /users/username/projects/project/b.ts ProjectRootPath: /users/username/projects/project -Info 61 [00:02:19.000] Projects: /users/username/projects/project/tsconfig.json +Info 60 [00:02:15.000] ----------------------------------------------- +Info 60 [00:02:16.000] Open files: +Info 60 [00:02:17.000] FileName: /users/username/projects/project/b.ts ProjectRootPath: /users/username/projects/project +Info 60 [00:02:18.000] Projects: /users/username/projects/project/tsconfig.json After request PolledWatches:: @@ -486,7 +485,7 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 61 [00:02:20.000] response: +Info 60 [00:02:19.000] response: { "responseRequired": false } @@ -506,7 +505,7 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 62 [00:02:21.000] request: +Info 61 [00:02:20.000] request: { "seq": 0, "type": "request", @@ -532,13 +531,13 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 63 [00:02:22.000] Search path: /users/username/projects/project/sub -Info 64 [00:02:23.000] For info: /users/username/projects/project/sub/a.ts :: Config file name: /users/username/projects/project/tsconfig.json -Info 65 [00:02:24.000] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info 66 [00:02:25.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/a.ts 500 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Missing file -Info 67 [00:02:26.000] Finishing updateGraphWorker: Project: /users/username/projects/project/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 68 [00:02:27.000] Project '/users/username/projects/project/tsconfig.json' (Configured) -Info 69 [00:02:28.000] Files (2) +Info 62 [00:02:21.000] Search path: /users/username/projects/project/sub +Info 63 [00:02:22.000] For info: /users/username/projects/project/sub/a.ts :: Config file name: /users/username/projects/project/tsconfig.json +Info 64 [00:02:23.000] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json +Info 65 [00:02:24.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/a.ts 500 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Missing file +Info 66 [00:02:25.000] Finishing updateGraphWorker: Project: /users/username/projects/project/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 67 [00:02:26.000] Project '/users/username/projects/project/tsconfig.json' (Configured) +Info 68 [00:02:27.000] Files (2) /a/lib/lib.d.ts /users/username/projects/project/b.ts @@ -548,21 +547,20 @@ Info 69 [00:02:28.000] Files (2) b.ts Matched by default include pattern '**/*' -Info 70 [00:02:29.000] ----------------------------------------------- -Info 71 [00:02:30.000] event: +Info 69 [00:02:28.000] ----------------------------------------------- +Info 70 [00:02:29.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/users/username/projects/project/sub/a.ts","configFile":"/users/username/projects/project/tsconfig.json","diagnostics":[{"text":"File '/users/username/projects/project/a.ts' not found.\n The file is in the program because:\n Matched by default include pattern '**/*'","code":6053,"category":"error"}]}} -Info 72 [00:02:31.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 73 [00:02:32.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 74 [00:02:33.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 75 [00:02:34.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 76 [00:02:35.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 77 [00:02:36.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 78 [00:02:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 79 [00:02:38.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 80 [00:02:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 81 [00:02:40.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 82 [00:02:41.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 83 [00:02:42.000] Files (2) +Info 71 [00:02:30.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 72 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 73 [00:02:32.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 74 [00:02:33.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 75 [00:02:34.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 76 [00:02:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/sub/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 77 [00:02:36.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 78 [00:02:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 79 [00:02:38.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 80 [00:02:39.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 81 [00:02:40.000] Files (2) /a/lib/lib.d.ts /users/username/projects/project/sub/a.ts @@ -572,20 +570,20 @@ Info 83 [00:02:42.000] Files (2) a.ts Root file specified for compilation -Info 84 [00:02:43.000] ----------------------------------------------- -Info 85 [00:02:44.000] Project '/users/username/projects/project/tsconfig.json' (Configured) -Info 85 [00:02:45.000] Files (2) +Info 82 [00:02:41.000] ----------------------------------------------- +Info 83 [00:02:42.000] Project '/users/username/projects/project/tsconfig.json' (Configured) +Info 83 [00:02:43.000] Files (2) -Info 85 [00:02:46.000] ----------------------------------------------- -Info 85 [00:02:47.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 85 [00:02:48.000] Files (2) +Info 83 [00:02:44.000] ----------------------------------------------- +Info 83 [00:02:45.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 83 [00:02:46.000] Files (2) -Info 85 [00:02:49.000] ----------------------------------------------- -Info 85 [00:02:50.000] Open files: -Info 85 [00:02:51.000] FileName: /users/username/projects/project/b.ts ProjectRootPath: /users/username/projects/project -Info 85 [00:02:52.000] Projects: /users/username/projects/project/tsconfig.json -Info 85 [00:02:53.000] FileName: /users/username/projects/project/sub/a.ts ProjectRootPath: /users/username/projects/project -Info 85 [00:02:54.000] Projects: /dev/null/inferredProject1* +Info 83 [00:02:47.000] ----------------------------------------------- +Info 83 [00:02:48.000] Open files: +Info 83 [00:02:49.000] FileName: /users/username/projects/project/b.ts ProjectRootPath: /users/username/projects/project +Info 83 [00:02:50.000] Projects: /users/username/projects/project/tsconfig.json +Info 83 [00:02:51.000] FileName: /users/username/projects/project/sub/a.ts ProjectRootPath: /users/username/projects/project +Info 83 [00:02:52.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -612,7 +610,7 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 85 [00:02:55.000] response: +Info 83 [00:02:53.000] response: { "responseRequired": false } @@ -642,38 +640,38 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 86 [00:02:56.000] Running: /users/username/projects/project/tsconfig.json -Info 87 [00:02:57.000] Running: *ensureProjectForOpenFiles* -Info 88 [00:02:58.000] Before ensureProjectForOpenFiles: -Info 89 [00:02:59.000] Project '/users/username/projects/project/tsconfig.json' (Configured) -Info 89 [00:03:00.000] Files (2) - -Info 89 [00:03:01.000] ----------------------------------------------- -Info 89 [00:03:02.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 89 [00:03:03.000] Files (2) - -Info 89 [00:03:04.000] ----------------------------------------------- -Info 89 [00:03:05.000] Open files: -Info 89 [00:03:06.000] FileName: /users/username/projects/project/b.ts ProjectRootPath: /users/username/projects/project -Info 89 [00:03:07.000] Projects: /users/username/projects/project/tsconfig.json -Info 89 [00:03:08.000] FileName: /users/username/projects/project/sub/a.ts ProjectRootPath: /users/username/projects/project -Info 89 [00:03:09.000] Projects: /dev/null/inferredProject1* -Info 89 [00:03:10.000] After ensureProjectForOpenFiles: -Info 90 [00:03:11.000] Project '/users/username/projects/project/tsconfig.json' (Configured) -Info 90 [00:03:12.000] Files (2) - -Info 90 [00:03:13.000] ----------------------------------------------- -Info 90 [00:03:14.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 90 [00:03:15.000] Files (2) - -Info 90 [00:03:16.000] ----------------------------------------------- -Info 90 [00:03:17.000] Open files: -Info 90 [00:03:18.000] FileName: /users/username/projects/project/b.ts ProjectRootPath: /users/username/projects/project -Info 90 [00:03:19.000] Projects: /users/username/projects/project/tsconfig.json -Info 90 [00:03:20.000] FileName: /users/username/projects/project/sub/a.ts ProjectRootPath: /users/username/projects/project -Info 90 [00:03:21.000] Projects: /dev/null/inferredProject1* -Info 90 [00:03:22.000] got projects updated in background, updating diagnostics for /users/username/projects/project/b.ts,/users/username/projects/project/sub/a.ts -Info 91 [00:03:23.000] event: +Info 84 [00:02:54.000] Running: /users/username/projects/project/tsconfig.json +Info 85 [00:02:55.000] Running: *ensureProjectForOpenFiles* +Info 86 [00:02:56.000] Before ensureProjectForOpenFiles: +Info 87 [00:02:57.000] Project '/users/username/projects/project/tsconfig.json' (Configured) +Info 87 [00:02:58.000] Files (2) + +Info 87 [00:02:59.000] ----------------------------------------------- +Info 87 [00:03:00.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 87 [00:03:01.000] Files (2) + +Info 87 [00:03:02.000] ----------------------------------------------- +Info 87 [00:03:03.000] Open files: +Info 87 [00:03:04.000] FileName: /users/username/projects/project/b.ts ProjectRootPath: /users/username/projects/project +Info 87 [00:03:05.000] Projects: /users/username/projects/project/tsconfig.json +Info 87 [00:03:06.000] FileName: /users/username/projects/project/sub/a.ts ProjectRootPath: /users/username/projects/project +Info 87 [00:03:07.000] Projects: /dev/null/inferredProject1* +Info 87 [00:03:08.000] After ensureProjectForOpenFiles: +Info 88 [00:03:09.000] Project '/users/username/projects/project/tsconfig.json' (Configured) +Info 88 [00:03:10.000] Files (2) + +Info 88 [00:03:11.000] ----------------------------------------------- +Info 88 [00:03:12.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 88 [00:03:13.000] Files (2) + +Info 88 [00:03:14.000] ----------------------------------------------- +Info 88 [00:03:15.000] Open files: +Info 88 [00:03:16.000] FileName: /users/username/projects/project/b.ts ProjectRootPath: /users/username/projects/project +Info 88 [00:03:17.000] Projects: /users/username/projects/project/tsconfig.json +Info 88 [00:03:18.000] FileName: /users/username/projects/project/sub/a.ts ProjectRootPath: /users/username/projects/project +Info 88 [00:03:19.000] Projects: /dev/null/inferredProject1* +Info 88 [00:03:20.000] got projects updated in background, updating diagnostics for /users/username/projects/project/b.ts,/users/username/projects/project/sub/a.ts +Info 89 [00:03:21.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/users/username/projects/project/b.ts","/users/username/projects/project/sub/a.ts"]}} After checking timeout queue length (2) and running @@ -701,18 +699,18 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 92 [00:03:25.000] DirectoryWatcher:: Triggered with /users/username/projects/project/a.ts :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory -Info 93 [00:03:26.000] Scheduled: /users/username/projects/project/tsconfig.json -Info 94 [00:03:27.000] Scheduled: *ensureProjectForOpenFiles* -Info 95 [00:03:28.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/project/a.ts :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory -Info 96 [00:03:32.000] DirectoryWatcher:: Triggered with /users/username/projects/project/sub :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory -Info 97 [00:03:33.000] Scheduled: /users/username/projects/project/tsconfig.json, Cancelled earlier one -Info 98 [00:03:34.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 99 [00:03:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/project/sub :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory -Info 100 [00:03:37.000] DirectoryWatcher:: Triggered with /users/username/projects/project/sub/a.ts :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory -Info 101 [00:03:38.000] Scheduled: /users/username/projects/project/tsconfig.json, Cancelled earlier one -Info 102 [00:03:39.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 103 [00:03:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/project/sub/a.ts :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory +Info 90 [00:03:23.000] DirectoryWatcher:: Triggered with /users/username/projects/project/a.ts :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory +Info 91 [00:03:24.000] Scheduled: /users/username/projects/project/tsconfig.json +Info 92 [00:03:25.000] Scheduled: *ensureProjectForOpenFiles* +Info 93 [00:03:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/project/a.ts :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory +Info 94 [00:03:30.000] DirectoryWatcher:: Triggered with /users/username/projects/project/sub :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory +Info 95 [00:03:31.000] Scheduled: /users/username/projects/project/tsconfig.json, Cancelled earlier one +Info 96 [00:03:32.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 97 [00:03:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/project/sub :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory +Info 98 [00:03:35.000] DirectoryWatcher:: Triggered with /users/username/projects/project/sub/a.ts :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory +Info 99 [00:03:36.000] Scheduled: /users/username/projects/project/tsconfig.json, Cancelled earlier one +Info 100 [00:03:37.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 101 [00:03:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/project/sub/a.ts :: WatchInfo: /users/username/projects/project 1 undefined Config: /users/username/projects/project/tsconfig.json WatchType: Wild card directory Checking timeout queue length: 2 //// [/users/username/projects/project/sub/a.ts] export const a = 10; @@ -743,7 +741,7 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 104 [00:03:41.000] request: +Info 102 [00:03:39.000] request: { "command": "geterr", "arguments": { @@ -808,7 +806,7 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 105 [00:03:42.000] response: +Info 103 [00:03:40.000] response: { "responseRequired": false } @@ -864,14 +862,14 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 106 [00:03:43.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/project/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 107 [00:03:44.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/project/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 108 [00:03:45.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 109 [00:03:46.000] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json -Info 110 [00:03:47.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/project/a.ts 500 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Missing file -Info 111 [00:03:48.000] Finishing updateGraphWorker: Project: /users/username/projects/project/tsconfig.json Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 112 [00:03:49.000] Project '/users/username/projects/project/tsconfig.json' (Configured) -Info 113 [00:03:50.000] Files (3) +Info 104 [00:03:41.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/project/sub/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 105 [00:03:42.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/project/sub/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 106 [00:03:43.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 107 [00:03:44.000] Starting updateGraphWorker: Project: /users/username/projects/project/tsconfig.json +Info 108 [00:03:45.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/project/a.ts 500 undefined Project: /users/username/projects/project/tsconfig.json WatchType: Missing file +Info 109 [00:03:46.000] Finishing updateGraphWorker: Project: /users/username/projects/project/tsconfig.json Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 110 [00:03:47.000] Project '/users/username/projects/project/tsconfig.json' (Configured) +Info 111 [00:03:48.000] Files (3) /a/lib/lib.d.ts /users/username/projects/project/b.ts /users/username/projects/project/sub/a.ts @@ -884,8 +882,8 @@ Info 113 [00:03:50.000] Files (3) sub/a.ts Matched by default include pattern '**/*' -Info 114 [00:03:51.000] ----------------------------------------------- -Info 115 [00:03:52.000] event: +Info 112 [00:03:49.000] ----------------------------------------------- +Info 113 [00:03:50.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/project/b.ts","diagnostics":[]}} After running timeout callback15 @@ -923,7 +921,7 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 116 [00:03:53.000] event: +Info 114 [00:03:51.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/users/username/projects/project/b.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -961,7 +959,7 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 117 [00:03:54.000] event: +Info 115 [00:03:52.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/users/username/projects/project/b.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -1017,7 +1015,7 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 118 [00:03:55.000] event: +Info 116 [00:03:53.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/project/sub/a.ts","diagnostics":[]}} After running timeout callback16 @@ -1055,7 +1053,7 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 119 [00:03:56.000] event: +Info 117 [00:03:54.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/users/username/projects/project/sub/a.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -1093,9 +1091,9 @@ FsWatchesRecursive:: /users/username/projects/project: {} -Info 120 [00:03:57.000] event: +Info 118 [00:03:55.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/users/username/projects/project/sub/a.ts","diagnostics":[]}} -Info 121 [00:03:58.000] event: +Info 119 [00:03:56.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":1}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/projects/handles-the-missing-files-added-with-tripleslash-ref.js b/tests/baselines/reference/tsserver/projects/handles-the-missing-files-added-with-tripleslash-ref.js index a4f5c7bd84275..0a51005fdca12 100644 --- a/tests/baselines/reference/tsserver/projects/handles-the-missing-files-added-with-tripleslash-ref.js +++ b/tests/baselines/reference/tsserver/projects/handles-the-missing-files-added-with-tripleslash-ref.js @@ -35,15 +35,14 @@ FsWatchesRecursive:: Info 2 [00:00:15.000] Search path: /a/b Info 3 [00:00:16.000] For info: /a/b/commonFile1.ts :: No config files found. -Info 4 [00:00:17.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 5 [00:00:18.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 6 [00:00:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 7 [00:00:20.000] FileWatcher:: Added:: WatchInfo: /a/b/commonfile2.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 8 [00:00:21.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 9 [00:00:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 10 [00:00:23.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 11 [00:00:24.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 12 [00:00:25.000] Files (2) +Info 4 [00:00:17.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 5 [00:00:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 6 [00:00:19.000] FileWatcher:: Added:: WatchInfo: /a/b/commonfile2.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 7 [00:00:20.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 8 [00:00:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 9 [00:00:22.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 10 [00:00:23.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 11 [00:00:24.000] Files (2) /a/lib/lib.d.ts /a/b/commonFile1.ts @@ -53,14 +52,14 @@ Info 12 [00:00:25.000] Files (2) commonFile1.ts Root file specified for compilation -Info 13 [00:00:26.000] ----------------------------------------------- -Info 14 [00:00:27.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 14 [00:00:28.000] Files (2) +Info 12 [00:00:25.000] ----------------------------------------------- +Info 13 [00:00:26.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 13 [00:00:27.000] Files (2) -Info 14 [00:00:29.000] ----------------------------------------------- -Info 14 [00:00:30.000] Open files: -Info 14 [00:00:31.000] FileName: /a/b/commonFile1.ts ProjectRootPath: undefined -Info 14 [00:00:32.000] Projects: /dev/null/inferredProject1* +Info 13 [00:00:28.000] ----------------------------------------------- +Info 13 [00:00:29.000] Open files: +Info 13 [00:00:30.000] FileName: /a/b/commonFile1.ts ProjectRootPath: undefined +Info 13 [00:00:31.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -75,11 +74,11 @@ FsWatches:: FsWatchesRecursive:: -Info 14 [00:00:33.000] response: +Info 13 [00:00:32.000] response: { "responseRequired": false } -Info 15 [00:00:34.000] request: +Info 14 [00:00:33.000] request: { "seq": 0, "type": "request", @@ -116,7 +115,7 @@ FsWatches:: FsWatchesRecursive:: -Info 16 [00:00:35.000] response: +Info 15 [00:00:34.000] response: { "response": [ { @@ -148,11 +147,11 @@ Info 16 [00:00:35.000] response: ], "responseRequired": true } -Info 17 [00:00:38.000] FileWatcher:: Triggered with /a/b/commonfile2.ts 0:: WatchInfo: /a/b/commonfile2.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 18 [00:00:39.000] FileWatcher:: Close:: WatchInfo: /a/b/commonfile2.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 19 [00:00:40.000] Scheduled: /dev/null/inferredProject1* -Info 20 [00:00:41.000] Scheduled: *ensureProjectForOpenFiles* -Info 21 [00:00:42.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/commonfile2.ts 0:: WatchInfo: /a/b/commonfile2.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 16 [00:00:37.000] FileWatcher:: Triggered with /a/b/commonfile2.ts 0:: WatchInfo: /a/b/commonfile2.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 17 [00:00:38.000] FileWatcher:: Close:: WatchInfo: /a/b/commonfile2.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 18 [00:00:39.000] Scheduled: /dev/null/inferredProject1* +Info 19 [00:00:40.000] Scheduled: *ensureProjectForOpenFiles* +Info 20 [00:00:41.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/commonfile2.ts 0:: WatchInfo: /a/b/commonfile2.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file Before running timeout callbacks //// [/a/b/commonFile2.ts] let y = 1 @@ -168,12 +167,12 @@ FsWatches:: FsWatchesRecursive:: -Info 22 [00:00:43.000] Running: /dev/null/inferredProject1* -Info 23 [00:00:44.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 24 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /a/b/commonFile2.ts 500 undefined WatchType: Closed Script info -Info 25 [00:00:46.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 26 [00:00:47.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 27 [00:00:48.000] Files (3) +Info 21 [00:00:42.000] Running: /dev/null/inferredProject1* +Info 22 [00:00:43.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 23 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /a/b/commonFile2.ts 500 undefined WatchType: Closed Script info +Info 24 [00:00:45.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 25 [00:00:46.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 26 [00:00:47.000] Files (3) /a/lib/lib.d.ts /a/b/commonFile2.ts /a/b/commonFile1.ts @@ -186,24 +185,24 @@ Info 27 [00:00:48.000] Files (3) commonFile1.ts Root file specified for compilation -Info 28 [00:00:49.000] ----------------------------------------------- -Info 29 [00:00:50.000] Running: *ensureProjectForOpenFiles* -Info 30 [00:00:51.000] Before ensureProjectForOpenFiles: -Info 31 [00:00:52.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 31 [00:00:53.000] Files (3) - -Info 31 [00:00:54.000] ----------------------------------------------- -Info 31 [00:00:55.000] Open files: -Info 31 [00:00:56.000] FileName: /a/b/commonFile1.ts ProjectRootPath: undefined -Info 31 [00:00:57.000] Projects: /dev/null/inferredProject1* -Info 31 [00:00:58.000] After ensureProjectForOpenFiles: -Info 32 [00:00:59.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 32 [00:01:00.000] Files (3) - -Info 32 [00:01:01.000] ----------------------------------------------- -Info 32 [00:01:02.000] Open files: -Info 32 [00:01:03.000] FileName: /a/b/commonFile1.ts ProjectRootPath: undefined -Info 32 [00:01:04.000] Projects: /dev/null/inferredProject1* +Info 27 [00:00:48.000] ----------------------------------------------- +Info 28 [00:00:49.000] Running: *ensureProjectForOpenFiles* +Info 29 [00:00:50.000] Before ensureProjectForOpenFiles: +Info 30 [00:00:51.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 30 [00:00:52.000] Files (3) + +Info 30 [00:00:53.000] ----------------------------------------------- +Info 30 [00:00:54.000] Open files: +Info 30 [00:00:55.000] FileName: /a/b/commonFile1.ts ProjectRootPath: undefined +Info 30 [00:00:56.000] Projects: /dev/null/inferredProject1* +Info 30 [00:00:57.000] After ensureProjectForOpenFiles: +Info 31 [00:00:58.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 31 [00:00:59.000] Files (3) + +Info 31 [00:01:00.000] ----------------------------------------------- +Info 31 [00:01:01.000] Open files: +Info 31 [00:01:02.000] FileName: /a/b/commonFile1.ts ProjectRootPath: undefined +Info 31 [00:01:03.000] Projects: /dev/null/inferredProject1* After running timeout callbacks PolledWatches:: @@ -218,7 +217,7 @@ FsWatches:: FsWatchesRecursive:: -Info 32 [00:01:05.000] request: +Info 31 [00:01:04.000] request: { "seq": 0, "type": "request", @@ -255,7 +254,7 @@ FsWatches:: FsWatchesRecursive:: -Info 33 [00:01:06.000] response: +Info 32 [00:01:05.000] response: { "response": [], "responseRequired": true diff --git a/tests/baselines/reference/tsserver/projects/js-file-opened-is-in-configured-project-that-will-be-removed.js b/tests/baselines/reference/tsserver/projects/js-file-opened-is-in-configured-project-that-will-be-removed.js index bfbb1d3c0fcf4..9163aac2bc80a 100644 --- a/tests/baselines/reference/tsserver/projects/js-file-opened-is-in-configured-project-that-will-be-removed.js +++ b/tests/baselines/reference/tsserver/projects/js-file-opened-is-in-configured-project-that-will-be-removed.js @@ -63,16 +63,15 @@ Info 7 [00:00:44.000] Config: /user/username/projects/myproject/tsconfig.json } Info 8 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 9 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/scripts/createConfigVariable.js 500 undefined WatchType: Closed Script info -Info 12 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/src/src.js 500 undefined WatchType: Closed Script info -Info 13 [00:00:50.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 14 [00:00:51.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 16 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 17 [00:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 18 [00:00:55.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 19 [00:00:56.000] Files (4) +Info 10 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/scripts/createConfigVariable.js 500 undefined WatchType: Closed Script info +Info 11 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/src/src.js 500 undefined WatchType: Closed Script info +Info 12 [00:00:49.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 13 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 15 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 16 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:00:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 18 [00:00:55.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/apps/editor/scripts/createConfigVariable.js /user/username/projects/myproject/apps/editor/src/src.js @@ -88,20 +87,20 @@ Info 19 [00:00:56.000] Files (4) mocks/cssMock.js Matched by default include pattern '**/*' -Info 20 [00:00:57.000] ----------------------------------------------- -Info 21 [00:00:58.000] event: +Info 19 [00:00:56.000] ----------------------------------------------- +Info 20 [00:00:57.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/tsconfig.json"}} -Info 22 [00:00:59.000] event: +Info 21 [00:00:58.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"4a33d78ee40d836c4f4e64c59aed976628aea0013be9585c5ff171dfc41baf98","fileStats":{"js":3,"jsSize":57,"jsx":0,"jsxSize":0,"ts":0,"tsSize":0,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"allowJs":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":false,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 23 [00:01:00.000] event: +Info 22 [00:00:59.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/user/username/projects/myproject/mocks/cssMock.js","configFile":"/user/username/projects/myproject/tsconfig.json","diagnostics":[{"text":"Cannot write file '/user/username/projects/myproject/apps/editor/scripts/createConfigVariable.js' because it would overwrite input file.","code":5055,"category":"error"},{"text":"Cannot write file '/user/username/projects/myproject/apps/editor/src/src.js' because it would overwrite input file.","code":5055,"category":"error"},{"text":"Cannot write file '/user/username/projects/myproject/mocks/cssMock.js' because it would overwrite input file.","code":5055,"category":"error"}]}} -Info 24 [00:01:01.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 24 [00:01:02.000] Files (4) +Info 23 [00:01:00.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 23 [00:01:01.000] Files (4) -Info 24 [00:01:03.000] ----------------------------------------------- -Info 24 [00:01:04.000] Open files: -Info 24 [00:01:05.000] FileName: /user/username/projects/myproject/mocks/cssMock.js ProjectRootPath: undefined -Info 24 [00:01:06.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 23 [00:01:02.000] ----------------------------------------------- +Info 23 [00:01:03.000] Open files: +Info 23 [00:01:04.000] FileName: /user/username/projects/myproject/mocks/cssMock.js ProjectRootPath: undefined +Info 23 [00:01:05.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -122,11 +121,11 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 24 [00:01:07.000] response: +Info 23 [00:01:06.000] response: { "responseRequired": false } -Info 25 [00:01:08.000] request: +Info 24 [00:01:07.000] request: { "seq": 0, "type": "request", @@ -155,12 +154,12 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 26 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/mocks/cssMock.js 500 undefined WatchType: Closed Script info -Info 27 [00:01:10.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 27 [00:01:11.000] Files (4) +Info 25 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/mocks/cssMock.js 500 undefined WatchType: Closed Script info +Info 26 [00:01:09.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 26 [00:01:10.000] Files (4) -Info 27 [00:01:12.000] ----------------------------------------------- -Info 27 [00:01:13.000] Open files: +Info 26 [00:01:11.000] ----------------------------------------------- +Info 26 [00:01:12.000] Open files: After request PolledWatches:: @@ -183,11 +182,11 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 27 [00:01:14.000] response: +Info 26 [00:01:13.000] response: { "responseRequired": false } -Info 28 [00:01:15.000] request: +Info 27 [00:01:14.000] request: { "seq": 0, "type": "request", @@ -218,14 +217,14 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 29 [00:01:16.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/apps/editor/scripts/createConfigVariable.js 500 undefined WatchType: Closed Script info -Info 30 [00:01:17.000] Search path: /user/username/projects/myproject/apps/editor/scripts -Info 31 [00:01:18.000] For info: /user/username/projects/myproject/apps/editor/scripts/createConfigVariable.js :: Config file name: /user/username/projects/myproject/apps/editor/tsconfig.json -Info 32 [00:01:19.000] Creating configuration project /user/username/projects/myproject/apps/editor/tsconfig.json -Info 33 [00:01:20.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Config file -Info 34 [00:01:21.000] event: +Info 28 [00:01:15.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/apps/editor/scripts/createConfigVariable.js 500 undefined WatchType: Closed Script info +Info 29 [00:01:16.000] Search path: /user/username/projects/myproject/apps/editor/scripts +Info 30 [00:01:17.000] For info: /user/username/projects/myproject/apps/editor/scripts/createConfigVariable.js :: Config file name: /user/username/projects/myproject/apps/editor/tsconfig.json +Info 31 [00:01:18.000] Creating configuration project /user/username/projects/myproject/apps/editor/tsconfig.json +Info 32 [00:01:19.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Config file +Info 33 [00:01:20.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/user/username/projects/myproject/apps/editor/tsconfig.json","reason":"Creating possible configured project for /user/username/projects/myproject/apps/editor/scripts/createConfigVariable.js to open"}} -Info 35 [00:01:22.000] Config: /user/username/projects/myproject/apps/editor/tsconfig.json : { +Info 34 [00:01:21.000] Config: /user/username/projects/myproject/apps/editor/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/apps/editor/src/src.js" ], @@ -234,20 +233,19 @@ Info 35 [00:01:22.000] Config: /user/username/projects/myproject/apps/editor/t "configFilePath": "/user/username/projects/myproject/apps/editor/tsconfig.json" } } -Info 36 [00:01:23.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Config: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Extended config file -Info 37 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/src 1 undefined Config: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Wild card directory -Info 38 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/src 1 undefined Config: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Wild card directory -Info 39 [00:01:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 40 [00:01:27.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/apps/editor/tsconfig.json -Info 41 [00:01:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/node_modules/@types 1 undefined Project: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Type roots -Info 42 [00:01:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/node_modules/@types 1 undefined Project: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Type roots -Info 43 [00:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/node_modules/@types 1 undefined Project: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Type roots -Info 44 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/node_modules/@types 1 undefined Project: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Type roots -Info 45 [00:01:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Type roots -Info 46 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Type roots -Info 47 [00:01:34.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/apps/editor/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 48 [00:01:35.000] Project '/user/username/projects/myproject/apps/editor/tsconfig.json' (Configured) -Info 49 [00:01:36.000] Files (2) +Info 35 [00:01:22.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Config: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Extended config file +Info 36 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/src 1 undefined Config: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Wild card directory +Info 37 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/src 1 undefined Config: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Wild card directory +Info 38 [00:01:25.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/apps/editor/tsconfig.json +Info 39 [00:01:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/node_modules/@types 1 undefined Project: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Type roots +Info 40 [00:01:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/node_modules/@types 1 undefined Project: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Type roots +Info 41 [00:01:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/node_modules/@types 1 undefined Project: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Type roots +Info 42 [00:01:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/node_modules/@types 1 undefined Project: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Type roots +Info 43 [00:01:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Type roots +Info 44 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/apps/editor/tsconfig.json WatchType: Type roots +Info 45 [00:01:32.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/apps/editor/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 46 [00:01:33.000] Project '/user/username/projects/myproject/apps/editor/tsconfig.json' (Configured) +Info 47 [00:01:34.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/apps/editor/src/src.js @@ -257,14 +255,14 @@ Info 49 [00:01:36.000] Files (2) src/src.js Matched by include pattern './src' in 'tsconfig.json' -Info 50 [00:01:37.000] ----------------------------------------------- -Info 51 [00:01:38.000] event: +Info 48 [00:01:35.000] ----------------------------------------------- +Info 49 [00:01:36.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/user/username/projects/myproject/apps/editor/tsconfig.json"}} -Info 52 [00:01:39.000] event: +Info 50 [00:01:37.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"3a35a87188335633b0bee242201aa5e01b96dbee6cfae401ebff6e26120b2aa7","fileStats":{"js":1,"jsSize":21,"jsx":0,"jsxSize":0,"ts":0,"tsSize":0,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"allowJs":true},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":true,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 53 [00:01:40.000] `remove Project:: -Info 54 [00:01:41.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 55 [00:01:42.000] Files (4) +Info 51 [00:01:38.000] `remove Project:: +Info 52 [00:01:39.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 53 [00:01:40.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/apps/editor/scripts/createConfigVariable.js /user/username/projects/myproject/apps/editor/src/src.js @@ -280,41 +278,40 @@ Info 55 [00:01:42.000] Files (4) mocks/cssMock.js Matched by default include pattern '**/*' -Info 56 [00:01:43.000] ----------------------------------------------- -Info 57 [00:01:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 58 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 59 [00:01:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file -Info 60 [00:01:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 61 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 62 [00:01:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/mocks/cssMock.js 500 undefined WatchType: Closed Script info -Info 63 [00:01:50.000] Before ensureProjectForOpenFiles: -Info 64 [00:01:51.000] Project '/user/username/projects/myproject/apps/editor/tsconfig.json' (Configured) -Info 64 [00:01:52.000] Files (2) - -Info 64 [00:01:53.000] ----------------------------------------------- -Info 64 [00:01:54.000] Open files: -Info 64 [00:01:55.000] FileName: /user/username/projects/myproject/apps/editor/scripts/createConfigVariable.js ProjectRootPath: undefined -Info 64 [00:01:56.000] Projects: -Info 64 [00:01:57.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 65 [00:01:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/scripts/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 66 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/scripts/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 67 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 68 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 69 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 70 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 71 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 72 [00:02:05.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 73 [00:02:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/scripts/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 74 [00:02:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/scripts/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 75 [00:02:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 76 [00:02:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 77 [00:02:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 78 [00:02:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 79 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 80 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 81 [00:02:14.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 82 [00:02:15.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 83 [00:02:16.000] Files (2) +Info 54 [00:01:41.000] ----------------------------------------------- +Info 55 [00:01:42.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 56 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 57 [00:01:44.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file +Info 58 [00:01:45.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 59 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 60 [00:01:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/mocks/cssMock.js 500 undefined WatchType: Closed Script info +Info 61 [00:01:48.000] Before ensureProjectForOpenFiles: +Info 62 [00:01:49.000] Project '/user/username/projects/myproject/apps/editor/tsconfig.json' (Configured) +Info 62 [00:01:50.000] Files (2) + +Info 62 [00:01:51.000] ----------------------------------------------- +Info 62 [00:01:52.000] Open files: +Info 62 [00:01:53.000] FileName: /user/username/projects/myproject/apps/editor/scripts/createConfigVariable.js ProjectRootPath: undefined +Info 62 [00:01:54.000] Projects: +Info 62 [00:01:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/scripts/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/apps/editor/scripts/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 64 [00:01:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 65 [00:01:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 66 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 67 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 68 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 69 [00:02:02.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 70 [00:02:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/scripts/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 71 [00:02:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/scripts/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 72 [00:02:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 73 [00:02:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/editor/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 74 [00:02:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 75 [00:02:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/apps/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 76 [00:02:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 77 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 78 [00:02:11.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 79 [00:02:12.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 80 [00:02:13.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/apps/editor/scripts/createConfigVariable.js @@ -324,30 +321,30 @@ Info 83 [00:02:16.000] Files (2) createConfigVariable.js Root file specified for compilation -Info 84 [00:02:17.000] ----------------------------------------------- -Info 85 [00:02:18.000] After ensureProjectForOpenFiles: -Info 86 [00:02:19.000] Project '/user/username/projects/myproject/apps/editor/tsconfig.json' (Configured) -Info 86 [00:02:20.000] Files (2) - -Info 86 [00:02:21.000] ----------------------------------------------- -Info 86 [00:02:22.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 86 [00:02:23.000] Files (2) - -Info 86 [00:02:24.000] ----------------------------------------------- -Info 86 [00:02:25.000] Open files: -Info 86 [00:02:26.000] FileName: /user/username/projects/myproject/apps/editor/scripts/createConfigVariable.js ProjectRootPath: undefined -Info 86 [00:02:27.000] Projects: /dev/null/inferredProject1* -Info 86 [00:02:28.000] Project '/user/username/projects/myproject/apps/editor/tsconfig.json' (Configured) -Info 86 [00:02:29.000] Files (2) - -Info 86 [00:02:30.000] ----------------------------------------------- -Info 86 [00:02:31.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 86 [00:02:32.000] Files (2) - -Info 86 [00:02:33.000] ----------------------------------------------- -Info 86 [00:02:34.000] Open files: -Info 86 [00:02:35.000] FileName: /user/username/projects/myproject/apps/editor/scripts/createConfigVariable.js ProjectRootPath: undefined -Info 86 [00:02:36.000] Projects: /dev/null/inferredProject1* +Info 81 [00:02:14.000] ----------------------------------------------- +Info 82 [00:02:15.000] After ensureProjectForOpenFiles: +Info 83 [00:02:16.000] Project '/user/username/projects/myproject/apps/editor/tsconfig.json' (Configured) +Info 83 [00:02:17.000] Files (2) + +Info 83 [00:02:18.000] ----------------------------------------------- +Info 83 [00:02:19.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 83 [00:02:20.000] Files (2) + +Info 83 [00:02:21.000] ----------------------------------------------- +Info 83 [00:02:22.000] Open files: +Info 83 [00:02:23.000] FileName: /user/username/projects/myproject/apps/editor/scripts/createConfigVariable.js ProjectRootPath: undefined +Info 83 [00:02:24.000] Projects: /dev/null/inferredProject1* +Info 83 [00:02:25.000] Project '/user/username/projects/myproject/apps/editor/tsconfig.json' (Configured) +Info 83 [00:02:26.000] Files (2) + +Info 83 [00:02:27.000] ----------------------------------------------- +Info 83 [00:02:28.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 83 [00:02:29.000] Files (2) + +Info 83 [00:02:30.000] ----------------------------------------------- +Info 83 [00:02:31.000] Open files: +Info 83 [00:02:32.000] FileName: /user/username/projects/myproject/apps/editor/scripts/createConfigVariable.js ProjectRootPath: undefined +Info 83 [00:02:33.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -390,7 +387,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/apps/editor/src: {} -Info 86 [00:02:37.000] response: +Info 83 [00:02:34.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/projects/references-on-file-opened-is-in-configured-project-that-will-be-removed.js b/tests/baselines/reference/tsserver/projects/references-on-file-opened-is-in-configured-project-that-will-be-removed.js index 89a72f9fefea0..ac66f0f6dd0a6 100644 --- a/tests/baselines/reference/tsserver/projects/references-on-file-opened-is-in-configured-project-that-will-be-removed.js +++ b/tests/baselines/reference/tsserver/projects/references-on-file-opened-is-in-configured-project-that-will-be-removed.js @@ -60,18 +60,17 @@ Info 6 [00:00:41.000] Config: /user/username/projects/myproject/playground/ts } Info 7 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground 1 undefined Config: /user/username/projects/myproject/playground/tsconfig.json WatchType: Wild card directory Info 8 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground 1 undefined Config: /user/username/projects/myproject/playground/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/src/src.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig.json -Info 13 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 15 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 16 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 17 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 18 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [00:00:54.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) -Info 20 [00:00:55.000] Files (4) +Info 9 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/src/src.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig.json +Info 12 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 14 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 15 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 16 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 17 [00:00:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 18 [00:00:53.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) +Info 19 [00:00:54.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/playground/tests.ts /user/username/projects/myproject/playground/tsconfig-json/src/src.ts @@ -87,14 +86,14 @@ Info 20 [00:00:55.000] Files (4) tsconfig-json/tests/spec.ts Matched by default include pattern '**/*' -Info 21 [00:00:56.000] ----------------------------------------------- -Info 22 [00:00:57.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) -Info 22 [00:00:58.000] Files (4) +Info 20 [00:00:55.000] ----------------------------------------------- +Info 21 [00:00:56.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) +Info 21 [00:00:57.000] Files (4) -Info 22 [00:00:59.000] ----------------------------------------------- -Info 22 [00:01:00.000] Open files: -Info 22 [00:01:01.000] FileName: /user/username/projects/myproject/playground/tests.ts ProjectRootPath: undefined -Info 22 [00:01:02.000] Projects: /user/username/projects/myproject/playground/tsconfig.json +Info 21 [00:00:58.000] ----------------------------------------------- +Info 21 [00:00:59.000] Open files: +Info 21 [00:01:00.000] FileName: /user/username/projects/myproject/playground/tests.ts ProjectRootPath: undefined +Info 21 [00:01:01.000] Projects: /user/username/projects/myproject/playground/tsconfig.json After request PolledWatches:: @@ -117,11 +116,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/playground: {} -Info 22 [00:01:03.000] response: +Info 21 [00:01:02.000] response: { "responseRequired": false } -Info 23 [00:01:04.000] request: +Info 22 [00:01:03.000] request: { "seq": 0, "type": "request", @@ -152,12 +151,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/playground: {} -Info 24 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tests.ts 500 undefined WatchType: Closed Script info -Info 25 [00:01:06.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) -Info 25 [00:01:07.000] Files (4) +Info 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) -Info 25 [00:01:08.000] ----------------------------------------------- -Info 25 [00:01:09.000] Open files: +Info 24 [00:01:07.000] ----------------------------------------------- +Info 24 [00:01:08.000] Open files: After request PolledWatches:: @@ -182,11 +181,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/playground: {} -Info 25 [00:01:10.000] response: +Info 24 [00:01:09.000] response: { "responseRequired": false } -Info 26 [00:01:11.000] request: +Info 25 [00:01:10.000] request: { "seq": 0, "type": "request", @@ -219,12 +218,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/playground: {} -Info 27 [00:01:12.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts 500 undefined WatchType: Closed Script info -Info 28 [00:01:13.000] Search path: /user/username/projects/myproject/playground/tsconfig-json/tests -Info 29 [00:01:14.000] For info: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts :: Config file name: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json -Info 30 [00:01:15.000] Creating configuration project /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json -Info 31 [00:01:16.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Config file -Info 32 [00:01:17.000] Config: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json : { +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 +Info 29 [00:01:14.000] Creating configuration project /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json +Info 30 [00:01:15.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Config file +Info 31 [00:01:16.000] Config: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/playground/tsconfig-json/src/src.ts" ], @@ -232,19 +231,18 @@ Info 32 [00:01:17.000] Config: /user/username/projects/myproject/playground/ts "configFilePath": "/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json" } } -Info 33 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/src 1 undefined Config: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Wild card directory -Info 34 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/src 1 undefined Config: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Wild card directory -Info 35 [00:01:20.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 36 [00:01:21.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json -Info 37 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info 38 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info 39 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info 40 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info 41 [00:01:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info 42 [00:01:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots -Info 43 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 44 [00:01:29.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) -Info 45 [00:01:30.000] Files (2) +Info 32 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/src 1 undefined Config: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Wild card directory +Info 33 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/src 1 undefined Config: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Wild card directory +Info 34 [00:01:19.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json +Info 35 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots +Info 36 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots +Info 37 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots +Info 38 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots +Info 39 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots +Info 40 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json WatchType: Type roots +Info 41 [00:01:26.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/playground/tsconfig-json/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:27.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) +Info 43 [00:01:28.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/playground/tsconfig-json/src/src.ts @@ -254,10 +252,10 @@ Info 45 [00:01:30.000] Files (2) src/src.ts Matched by include pattern './src' in 'tsconfig.json' -Info 46 [00:01:31.000] ----------------------------------------------- -Info 47 [00:01:32.000] `remove Project:: -Info 48 [00:01:33.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) -Info 49 [00:01:34.000] Files (4) +Info 44 [00:01:29.000] ----------------------------------------------- +Info 45 [00:01:30.000] `remove Project:: +Info 46 [00:01:31.000] Project '/user/username/projects/myproject/playground/tsconfig.json' (Configured) +Info 47 [00:01:32.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/playground/tests.ts /user/username/projects/myproject/playground/tsconfig-json/src/src.ts @@ -273,22 +271,22 @@ Info 49 [00:01:34.000] Files (4) tsconfig-json/tests/spec.ts Matched by default include pattern '**/*' -Info 50 [00:01:35.000] ----------------------------------------------- -Info 51 [00:01:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground 1 undefined Config: /user/username/projects/myproject/playground/tsconfig.json WatchType: Wild card directory -Info 52 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground 1 undefined Config: /user/username/projects/myproject/playground/tsconfig.json WatchType: Wild card directory -Info 53 [00:01:38.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Config file -Info 54 [00:01:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 55 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 56 [00:01:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 57 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots -Info 58 [00:01:43.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/tests.ts 500 undefined WatchType: Closed Script info -Info 59 [00:01:44.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) -Info 59 [00:01:45.000] Files (2) - -Info 59 [00:01:46.000] ----------------------------------------------- -Info 59 [00:01:47.000] Open files: -Info 59 [00:01:48.000] FileName: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts ProjectRootPath: undefined -Info 59 [00:01:49.000] Projects: +Info 48 [00:01:33.000] ----------------------------------------------- +Info 49 [00:01:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground 1 undefined Config: /user/username/projects/myproject/playground/tsconfig.json WatchType: Wild card directory +Info 50 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground 1 undefined Config: /user/username/projects/myproject/playground/tsconfig.json WatchType: Wild card directory +Info 51 [00:01:36.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Config file +Info 52 [00:01:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 53 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 54 [00:01:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 55 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/playground/tsconfig.json WatchType: Type roots +Info 56 [00:01:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/playground/tests.ts 500 undefined WatchType: Closed Script info +Info 57 [00:01:42.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) +Info 57 [00:01:43.000] Files (2) + +Info 57 [00:01:44.000] ----------------------------------------------- +Info 57 [00:01:45.000] Open files: +Info 57 [00:01:46.000] FileName: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts ProjectRootPath: undefined +Info 57 [00:01:47.000] Projects: After request PolledWatches:: @@ -311,11 +309,11 @@ FsWatchesRecursive:: /user/username/projects/myproject/playground/tsconfig-json/src: {} -Info 59 [00:01:50.000] response: +Info 57 [00:01:48.000] response: { "responseRequired": false } -Info 60 [00:01:51.000] request: +Info 58 [00:01:49.000] request: { "command": "references", "arguments": { @@ -348,34 +346,33 @@ FsWatchesRecursive:: /user/username/projects/myproject/playground/tsconfig-json/src: {} -Info 61 [00:01:52.000] Before ensureProjectForOpenFiles: -Info 62 [00:01:53.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) -Info 62 [00:01:54.000] Files (2) - -Info 62 [00:01:55.000] ----------------------------------------------- -Info 62 [00:01:56.000] Open files: -Info 62 [00:01:57.000] FileName: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts ProjectRootPath: undefined -Info 62 [00:01:58.000] Projects: -Info 62 [00:01:59.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 63 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 64 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 65 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 66 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 67 [00:02:04.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 68 [00:02:05.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 69 [00:02:06.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 70 [00:02:07.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 71 [00:02:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 72 [00:02:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 73 [00:02:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 74 [00:02:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 75 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 76 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 77 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 78 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 79 [00:02:16.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 80 [00:02:17.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 81 [00:02:18.000] Files (2) +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) + +Info 60 [00:01:53.000] ----------------------------------------------- +Info 60 [00:01:54.000] Open files: +Info 60 [00:01:55.000] FileName: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts ProjectRootPath: undefined +Info 60 [00:01:56.000] Projects: +Info 60 [00:01:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 61 [00:01:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 62 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 63 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 64 [00:02:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 65 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 66 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 67 [00:02:04.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 68 [00:02:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 69 [00:02:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 70 [00:02:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 71 [00:02:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 72 [00:02:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 73 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 74 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 75 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 76 [00:02:13.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 77 [00:02:14.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 78 [00:02:15.000] Files (2) /a/lib/lib.d.ts /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts @@ -385,21 +382,21 @@ Info 81 [00:02:18.000] Files (2) spec.ts Root file specified for compilation -Info 82 [00:02:19.000] ----------------------------------------------- -Info 83 [00:02:20.000] After ensureProjectForOpenFiles: -Info 84 [00:02:21.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) -Info 84 [00:02:22.000] Files (2) - -Info 84 [00:02:23.000] ----------------------------------------------- -Info 84 [00:02:24.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 84 [00:02:25.000] Files (2) - -Info 84 [00:02:26.000] ----------------------------------------------- -Info 84 [00:02:27.000] Open files: -Info 84 [00:02:28.000] FileName: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts ProjectRootPath: undefined -Info 84 [00:02:29.000] Projects: /dev/null/inferredProject1* -Info 84 [00:02:30.000] Finding references to /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts position 16 in project /dev/null/inferredProject1* -Info 85 [00:02:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.d.ts 2000 undefined Project: /dev/null/inferredProject1* WatchType: Missing generated file +Info 79 [00:02:16.000] ----------------------------------------------- +Info 80 [00:02:17.000] After ensureProjectForOpenFiles: +Info 81 [00:02:18.000] Project '/user/username/projects/myproject/playground/tsconfig-json/tsconfig.json' (Configured) +Info 81 [00:02:19.000] Files (2) + +Info 81 [00:02:20.000] ----------------------------------------------- +Info 81 [00:02:21.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 81 [00:02:22.000] Files (2) + +Info 81 [00:02:23.000] ----------------------------------------------- +Info 81 [00:02:24.000] Open files: +Info 81 [00:02:25.000] FileName: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts ProjectRootPath: undefined +Info 81 [00:02:26.000] Projects: /dev/null/inferredProject1* +Info 81 [00:02:27.000] Finding references to /user/username/projects/myproject/playground/tsconfig-json/tests/spec.ts position 16 in project /dev/null/inferredProject1* +Info 82 [00:02:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/playground/tsconfig-json/tests/spec.d.ts 2000 undefined Project: /dev/null/inferredProject1* WatchType: Missing generated file After request PolledWatches:: @@ -440,7 +437,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/playground/tsconfig-json/src: {} -Info 86 [00:02:32.000] response: +Info 83 [00:02:29.000] response: { "response": { "refs": [ diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/sample-project.js b/tests/baselines/reference/tsserver/projectsWithReferences/sample-project.js index ff8c2072a821f..f90f1a7559bba 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/sample-project.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/sample-project.js @@ -120,9 +120,8 @@ Info 5 [00:00:44.000] Config: /user/username/projects/sample1/tests/tsconfig. } ] } -Info 6 [00:00:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 7 [00:00:46.000] Starting updateGraphWorker: Project: /user/username/projects/sample1/tests/tsconfig.json -Info 8 [00:00:47.000] Config: /user/username/projects/sample1/core/tsconfig.json : { +Info 6 [00:00:45.000] Starting updateGraphWorker: Project: /user/username/projects/sample1/tests/tsconfig.json +Info 7 [00:00:46.000] Config: /user/username/projects/sample1/core/tsconfig.json : { "rootNames": [ "/user/username/projects/sample1/core/anotherModule.ts", "/user/username/projects/sample1/core/index.ts", @@ -136,10 +135,10 @@ Info 8 [00:00:47.000] Config: /user/username/projects/sample1/core/tsconfig.j "configFilePath": "/user/username/projects/sample1/core/tsconfig.json" } } -Info 9 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/sample1/core/tsconfig.json 2000 undefined Project: /user/username/projects/sample1/tests/tsconfig.json WatchType: Config file -Info 10 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/sample1/core 1 undefined Config: /user/username/projects/sample1/core/tsconfig.json WatchType: Wild card directory -Info 11 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/sample1/core 1 undefined Config: /user/username/projects/sample1/core/tsconfig.json WatchType: Wild card directory -Info 12 [00:00:51.000] Config: /user/username/projects/sample1/logic/tsconfig.json : { +Info 8 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/sample1/core/tsconfig.json 2000 undefined Project: /user/username/projects/sample1/tests/tsconfig.json WatchType: Config file +Info 9 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/sample1/core 1 undefined Config: /user/username/projects/sample1/core/tsconfig.json WatchType: Wild card directory +Info 10 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/sample1/core 1 undefined Config: /user/username/projects/sample1/core/tsconfig.json WatchType: Wild card directory +Info 11 [00:00:50.000] Config: /user/username/projects/sample1/logic/tsconfig.json : { "rootNames": [ "/user/username/projects/sample1/logic/index.ts" ], @@ -158,20 +157,20 @@ Info 12 [00:00:51.000] Config: /user/username/projects/sample1/logic/tsconfig. } ] } -Info 13 [00:00:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/sample1/logic/tsconfig.json 2000 undefined Project: /user/username/projects/sample1/tests/tsconfig.json WatchType: Config file -Info 14 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/sample1/logic 1 undefined Config: /user/username/projects/sample1/logic/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/sample1/logic 1 undefined Config: /user/username/projects/sample1/logic/tsconfig.json WatchType: Wild card directory -Info 16 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/sample1/core/index.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/sample1/logic/index.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/sample1/core/anotherModule.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 20 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/sample1/tests/node_modules/@types 1 undefined Project: /user/username/projects/sample1/tests/tsconfig.json WatchType: Type roots -Info 21 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/sample1/tests/node_modules/@types 1 undefined Project: /user/username/projects/sample1/tests/tsconfig.json WatchType: Type roots -Info 22 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/sample1/node_modules/@types 1 undefined Project: /user/username/projects/sample1/tests/tsconfig.json WatchType: Type roots -Info 23 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/sample1/node_modules/@types 1 undefined Project: /user/username/projects/sample1/tests/tsconfig.json WatchType: Type roots -Info 24 [00:01:03.000] Finishing updateGraphWorker: Project: /user/username/projects/sample1/tests/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 25 [00:01:04.000] Project '/user/username/projects/sample1/tests/tsconfig.json' (Configured) -Info 26 [00:01:05.000] Files (5) +Info 12 [00:00:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/sample1/logic/tsconfig.json 2000 undefined Project: /user/username/projects/sample1/tests/tsconfig.json WatchType: Config file +Info 13 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/sample1/logic 1 undefined Config: /user/username/projects/sample1/logic/tsconfig.json WatchType: Wild card directory +Info 14 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/sample1/logic 1 undefined Config: /user/username/projects/sample1/logic/tsconfig.json WatchType: Wild card directory +Info 15 [00:00:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/sample1/core/index.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/sample1/logic/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/sample1/core/anotherModule.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/sample1/tests/node_modules/@types 1 undefined Project: /user/username/projects/sample1/tests/tsconfig.json WatchType: Type roots +Info 20 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/sample1/tests/node_modules/@types 1 undefined Project: /user/username/projects/sample1/tests/tsconfig.json WatchType: Type roots +Info 21 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/sample1/node_modules/@types 1 undefined Project: /user/username/projects/sample1/tests/tsconfig.json WatchType: Type roots +Info 22 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/sample1/node_modules/@types 1 undefined Project: /user/username/projects/sample1/tests/tsconfig.json WatchType: Type roots +Info 23 [00:01:02.000] Finishing updateGraphWorker: Project: /user/username/projects/sample1/tests/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:01:03.000] Project '/user/username/projects/sample1/tests/tsconfig.json' (Configured) +Info 25 [00:01:04.000] Files (5) /a/lib/lib.d.ts /user/username/projects/sample1/core/index.ts /user/username/projects/sample1/core/anotherModule.ts @@ -192,20 +191,20 @@ Info 26 [00:01:05.000] Files (5) index.ts Part of 'files' list in tsconfig.json -Info 27 [00:01:06.000] ----------------------------------------------- -Info 28 [00:01:07.000] Search path: /user/username/projects/sample1/tests -Info 29 [00:01:08.000] For info: /user/username/projects/sample1/tests/tsconfig.json :: No config files found. -Info 30 [00:01:09.000] Project '/user/username/projects/sample1/tests/tsconfig.json' (Configured) -Info 30 [00:01:10.000] Files (5) - -Info 30 [00:01:11.000] ----------------------------------------------- -Info 30 [00:01:12.000] Open files: -Info 30 [00:01:13.000] FileName: /user/username/projects/sample1/tests/index.ts ProjectRootPath: undefined -Info 30 [00:01:14.000] Projects: /user/username/projects/sample1/tests/tsconfig.json -Info 30 [00:01:17.000] FileWatcher:: Triggered with /user/username/projects/sample1/logic/index.ts 1:: WatchInfo: /user/username/projects/sample1/logic/index.ts 500 undefined WatchType: Closed Script info -Info 31 [00:01:18.000] Scheduled: /user/username/projects/sample1/tests/tsconfig.json -Info 32 [00:01:19.000] Scheduled: *ensureProjectForOpenFiles* -Info 33 [00:01:20.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/sample1/logic/index.ts 1:: WatchInfo: /user/username/projects/sample1/logic/index.ts 500 undefined WatchType: Closed Script info +Info 26 [00:01:05.000] ----------------------------------------------- +Info 27 [00:01:06.000] Search path: /user/username/projects/sample1/tests +Info 28 [00:01:07.000] For info: /user/username/projects/sample1/tests/tsconfig.json :: No config files found. +Info 29 [00:01:08.000] Project '/user/username/projects/sample1/tests/tsconfig.json' (Configured) +Info 29 [00:01:09.000] Files (5) + +Info 29 [00:01:10.000] ----------------------------------------------- +Info 29 [00:01:11.000] Open files: +Info 29 [00:01:12.000] FileName: /user/username/projects/sample1/tests/index.ts ProjectRootPath: undefined +Info 29 [00:01:13.000] Projects: /user/username/projects/sample1/tests/tsconfig.json +Info 29 [00:01:16.000] FileWatcher:: Triggered with /user/username/projects/sample1/logic/index.ts 1:: WatchInfo: /user/username/projects/sample1/logic/index.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:17.000] Scheduled: /user/username/projects/sample1/tests/tsconfig.json +Info 31 [00:01:18.000] Scheduled: *ensureProjectForOpenFiles* +Info 32 [00:01:19.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/sample1/logic/index.ts 1:: WatchInfo: /user/username/projects/sample1/logic/index.ts 500 undefined WatchType: Closed Script info Before checking timeout queue length (2) and running //// [/user/username/projects/sample1/logic/index.ts] import * as c from '../core/index'; @@ -245,27 +244,27 @@ FsWatchesRecursive:: /user/username/projects/sample1/logic: {} -Info 34 [00:01:21.000] Running: /user/username/projects/sample1/tests/tsconfig.json -Info 35 [00:01:22.000] Starting updateGraphWorker: Project: /user/username/projects/sample1/tests/tsconfig.json -Info 36 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/sample1/tests/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 37 [00:01:24.000] Different program with same set of files -Info 38 [00:01:25.000] Running: *ensureProjectForOpenFiles* -Info 39 [00:01:26.000] Before ensureProjectForOpenFiles: -Info 40 [00:01:27.000] Project '/user/username/projects/sample1/tests/tsconfig.json' (Configured) -Info 40 [00:01:28.000] Files (5) - -Info 40 [00:01:29.000] ----------------------------------------------- -Info 40 [00:01:30.000] Open files: -Info 40 [00:01:31.000] FileName: /user/username/projects/sample1/tests/index.ts ProjectRootPath: undefined -Info 40 [00:01:32.000] Projects: /user/username/projects/sample1/tests/tsconfig.json -Info 40 [00:01:33.000] After ensureProjectForOpenFiles: -Info 41 [00:01:34.000] Project '/user/username/projects/sample1/tests/tsconfig.json' (Configured) -Info 41 [00:01:35.000] Files (5) - -Info 41 [00:01:36.000] ----------------------------------------------- -Info 41 [00:01:37.000] Open files: -Info 41 [00:01:38.000] FileName: /user/username/projects/sample1/tests/index.ts ProjectRootPath: undefined -Info 41 [00:01:39.000] Projects: /user/username/projects/sample1/tests/tsconfig.json +Info 33 [00:01:20.000] Running: /user/username/projects/sample1/tests/tsconfig.json +Info 34 [00:01:21.000] Starting updateGraphWorker: Project: /user/username/projects/sample1/tests/tsconfig.json +Info 35 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/sample1/tests/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 36 [00:01:23.000] Different program with same set of files +Info 37 [00:01:24.000] Running: *ensureProjectForOpenFiles* +Info 38 [00:01:25.000] Before ensureProjectForOpenFiles: +Info 39 [00:01:26.000] Project '/user/username/projects/sample1/tests/tsconfig.json' (Configured) +Info 39 [00:01:27.000] Files (5) + +Info 39 [00:01:28.000] ----------------------------------------------- +Info 39 [00:01:29.000] Open files: +Info 39 [00:01:30.000] FileName: /user/username/projects/sample1/tests/index.ts ProjectRootPath: undefined +Info 39 [00:01:31.000] Projects: /user/username/projects/sample1/tests/tsconfig.json +Info 39 [00:01:32.000] After ensureProjectForOpenFiles: +Info 40 [00:01:33.000] Project '/user/username/projects/sample1/tests/tsconfig.json' (Configured) +Info 40 [00:01:34.000] Files (5) + +Info 40 [00:01:35.000] ----------------------------------------------- +Info 40 [00:01:36.000] Open files: +Info 40 [00:01:37.000] FileName: /user/username/projects/sample1/tests/index.ts ProjectRootPath: undefined +Info 40 [00:01:38.000] Projects: /user/username/projects/sample1/tests/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -296,10 +295,10 @@ FsWatchesRecursive:: /user/username/projects/sample1/logic: {} -Info 41 [00:01:42.000] FileWatcher:: Triggered with /user/username/projects/sample1/logic/index.ts 1:: WatchInfo: /user/username/projects/sample1/logic/index.ts 500 undefined WatchType: Closed Script info -Info 42 [00:01:43.000] Scheduled: /user/username/projects/sample1/tests/tsconfig.json -Info 43 [00:01:44.000] Scheduled: *ensureProjectForOpenFiles* -Info 44 [00:01:45.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/sample1/logic/index.ts 1:: WatchInfo: /user/username/projects/sample1/logic/index.ts 500 undefined WatchType: Closed Script info +Info 40 [00:01:41.000] FileWatcher:: Triggered with /user/username/projects/sample1/logic/index.ts 1:: WatchInfo: /user/username/projects/sample1/logic/index.ts 500 undefined WatchType: Closed Script info +Info 41 [00:01:42.000] Scheduled: /user/username/projects/sample1/tests/tsconfig.json +Info 42 [00:01:43.000] Scheduled: *ensureProjectForOpenFiles* +Info 43 [00:01:44.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/sample1/logic/index.ts 1:: WatchInfo: /user/username/projects/sample1/logic/index.ts 500 undefined WatchType: Closed Script info Before checking timeout queue length (2) and running //// [/user/username/projects/sample1/logic/index.ts] import * as c from '../core/index'; @@ -339,27 +338,27 @@ FsWatchesRecursive:: /user/username/projects/sample1/logic: {} -Info 45 [00:01:46.000] Running: /user/username/projects/sample1/tests/tsconfig.json -Info 46 [00:01:47.000] Starting updateGraphWorker: Project: /user/username/projects/sample1/tests/tsconfig.json -Info 47 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/sample1/tests/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 48 [00:01:49.000] Different program with same set of files -Info 49 [00:01:50.000] Running: *ensureProjectForOpenFiles* -Info 50 [00:01:51.000] Before ensureProjectForOpenFiles: -Info 51 [00:01:52.000] Project '/user/username/projects/sample1/tests/tsconfig.json' (Configured) -Info 51 [00:01:53.000] Files (5) - -Info 51 [00:01:54.000] ----------------------------------------------- -Info 51 [00:01:55.000] Open files: -Info 51 [00:01:56.000] FileName: /user/username/projects/sample1/tests/index.ts ProjectRootPath: undefined -Info 51 [00:01:57.000] Projects: /user/username/projects/sample1/tests/tsconfig.json -Info 51 [00:01:58.000] After ensureProjectForOpenFiles: -Info 52 [00:01:59.000] Project '/user/username/projects/sample1/tests/tsconfig.json' (Configured) -Info 52 [00:02:00.000] Files (5) - -Info 52 [00:02:01.000] ----------------------------------------------- -Info 52 [00:02:02.000] Open files: -Info 52 [00:02:03.000] FileName: /user/username/projects/sample1/tests/index.ts ProjectRootPath: undefined -Info 52 [00:02:04.000] Projects: /user/username/projects/sample1/tests/tsconfig.json +Info 44 [00:01:45.000] Running: /user/username/projects/sample1/tests/tsconfig.json +Info 45 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/sample1/tests/tsconfig.json +Info 46 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/sample1/tests/tsconfig.json Version: 3 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 47 [00:01:48.000] Different program with same set of files +Info 48 [00:01:49.000] Running: *ensureProjectForOpenFiles* +Info 49 [00:01:50.000] Before ensureProjectForOpenFiles: +Info 50 [00:01:51.000] Project '/user/username/projects/sample1/tests/tsconfig.json' (Configured) +Info 50 [00:01:52.000] Files (5) + +Info 50 [00:01:53.000] ----------------------------------------------- +Info 50 [00:01:54.000] Open files: +Info 50 [00:01:55.000] FileName: /user/username/projects/sample1/tests/index.ts ProjectRootPath: undefined +Info 50 [00:01:56.000] Projects: /user/username/projects/sample1/tests/tsconfig.json +Info 50 [00:01:57.000] After ensureProjectForOpenFiles: +Info 51 [00:01:58.000] Project '/user/username/projects/sample1/tests/tsconfig.json' (Configured) +Info 51 [00:01:59.000] Files (5) + +Info 51 [00:02:00.000] ----------------------------------------------- +Info 51 [00:02:01.000] Open files: +Info 51 [00:02:02.000] FileName: /user/username/projects/sample1/tests/index.ts ProjectRootPath: undefined +Info 51 [00:02:03.000] Projects: /user/username/projects/sample1/tests/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -390,10 +389,10 @@ FsWatchesRecursive:: /user/username/projects/sample1/logic: {} -Info 52 [00:02:08.000] FileWatcher:: Triggered with /user/username/projects/sample1/logic/tsconfig.json 1:: WatchInfo: /user/username/projects/sample1/logic/tsconfig.json 2000 undefined Project: /user/username/projects/sample1/tests/tsconfig.json WatchType: Config file -Info 53 [00:02:09.000] Scheduled: /user/username/projects/sample1/tests/tsconfig.json -Info 54 [00:02:10.000] Scheduled: *ensureProjectForOpenFiles* -Info 55 [00:02:11.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/sample1/logic/tsconfig.json 1:: WatchInfo: /user/username/projects/sample1/logic/tsconfig.json 2000 undefined Project: /user/username/projects/sample1/tests/tsconfig.json WatchType: Config file +Info 51 [00:02:07.000] FileWatcher:: Triggered with /user/username/projects/sample1/logic/tsconfig.json 1:: WatchInfo: /user/username/projects/sample1/logic/tsconfig.json 2000 undefined Project: /user/username/projects/sample1/tests/tsconfig.json WatchType: Config file +Info 52 [00:02:08.000] Scheduled: /user/username/projects/sample1/tests/tsconfig.json +Info 53 [00:02:09.000] Scheduled: *ensureProjectForOpenFiles* +Info 54 [00:02:10.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/sample1/logic/tsconfig.json 1:: WatchInfo: /user/username/projects/sample1/logic/tsconfig.json 2000 undefined Project: /user/username/projects/sample1/tests/tsconfig.json WatchType: Config file Before checking timeout queue length (2) and running //// [/user/username/projects/sample1/logic/tsconfig.json] {"compilerOptions":{"composite":true,"declaration":true,"declarationDir":"decls"},"references":[{"path":"../core"}]} @@ -427,9 +426,9 @@ FsWatchesRecursive:: /user/username/projects/sample1/logic: {} -Info 56 [00:02:12.000] Running: /user/username/projects/sample1/tests/tsconfig.json -Info 57 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/sample1/tests/tsconfig.json -Info 58 [00:02:14.000] Config: /user/username/projects/sample1/logic/tsconfig.json : { +Info 55 [00:02:11.000] Running: /user/username/projects/sample1/tests/tsconfig.json +Info 56 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/sample1/tests/tsconfig.json +Info 57 [00:02:13.000] Config: /user/username/projects/sample1/logic/tsconfig.json : { "rootNames": [ "/user/username/projects/sample1/logic/index.ts" ], @@ -446,25 +445,25 @@ Info 58 [00:02:14.000] Config: /user/username/projects/sample1/logic/tsconfig. } ] } -Info 59 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/sample1/tests/tsconfig.json Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 60 [00:02:16.000] Different program with same set of files -Info 61 [00:02:17.000] Running: *ensureProjectForOpenFiles* -Info 62 [00:02:18.000] Before ensureProjectForOpenFiles: -Info 63 [00:02:19.000] Project '/user/username/projects/sample1/tests/tsconfig.json' (Configured) -Info 63 [00:02:20.000] Files (5) - -Info 63 [00:02:21.000] ----------------------------------------------- -Info 63 [00:02:22.000] Open files: -Info 63 [00:02:23.000] FileName: /user/username/projects/sample1/tests/index.ts ProjectRootPath: undefined -Info 63 [00:02:24.000] Projects: /user/username/projects/sample1/tests/tsconfig.json -Info 63 [00:02:25.000] After ensureProjectForOpenFiles: -Info 64 [00:02:26.000] Project '/user/username/projects/sample1/tests/tsconfig.json' (Configured) -Info 64 [00:02:27.000] Files (5) - -Info 64 [00:02:28.000] ----------------------------------------------- -Info 64 [00:02:29.000] Open files: -Info 64 [00:02:30.000] FileName: /user/username/projects/sample1/tests/index.ts ProjectRootPath: undefined -Info 64 [00:02:31.000] Projects: /user/username/projects/sample1/tests/tsconfig.json +Info 58 [00:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/sample1/tests/tsconfig.json Version: 4 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 59 [00:02:15.000] Different program with same set of files +Info 60 [00:02:16.000] Running: *ensureProjectForOpenFiles* +Info 61 [00:02:17.000] Before ensureProjectForOpenFiles: +Info 62 [00:02:18.000] Project '/user/username/projects/sample1/tests/tsconfig.json' (Configured) +Info 62 [00:02:19.000] Files (5) + +Info 62 [00:02:20.000] ----------------------------------------------- +Info 62 [00:02:21.000] Open files: +Info 62 [00:02:22.000] FileName: /user/username/projects/sample1/tests/index.ts ProjectRootPath: undefined +Info 62 [00:02:23.000] Projects: /user/username/projects/sample1/tests/tsconfig.json +Info 62 [00:02:24.000] After ensureProjectForOpenFiles: +Info 63 [00:02:25.000] Project '/user/username/projects/sample1/tests/tsconfig.json' (Configured) +Info 63 [00:02:26.000] Files (5) + +Info 63 [00:02:27.000] ----------------------------------------------- +Info 63 [00:02:28.000] Open files: +Info 63 [00:02:29.000] FileName: /user/username/projects/sample1/tests/index.ts ProjectRootPath: undefined +Info 63 [00:02:30.000] Projects: /user/username/projects/sample1/tests/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-referenced-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-referenced-config-file.js index a68f648025f5c..1932e161dd280 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-referenced-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-referenced-config-file.js @@ -71,9 +71,8 @@ Info 5 [00:00:44.000] Config: /user/username/projects/myproject/c/tsconfig.js } ] } -Info 6 [00:00:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 7 [00:00:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 8 [00:00:47.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 6 [00:00:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 7 [00:00:46.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/index.ts" ], @@ -95,8 +94,8 @@ Info 8 [00:00:47.000] Config: /user/username/projects/myproject/b/tsconfig.js } ] } -Info 9 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 10 [00:00:49.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 8 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 9 [00:00:48.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -105,26 +104,26 @@ Info 10 [00:00:49.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 11 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 12 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 20 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 25 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 26 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 27 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 28 [00:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 29 [00:01:08.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 30 [00:01:09.000] Files (5) +Info 10 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 11 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 24 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 25 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 26 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 27 [00:01:06.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 28 [00:01:07.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 29 [00:01:08.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/a/index.ts /user/username/projects/myproject/b/index.ts @@ -143,21 +142,21 @@ Info 30 [00:01:09.000] Files (5) index.ts Part of 'files' list in tsconfig.json -Info 31 [00:01:10.000] ----------------------------------------------- -Info 32 [00:01:11.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 32 [00:01:12.000] Files (5) - -Info 32 [00:01:13.000] ----------------------------------------------- -Info 32 [00:01:14.000] Open files: -Info 32 [00:01:15.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 32 [00:01:16.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 32 [00:01:18.000] FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 33 [00:01:19.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json -Info 34 [00:01:20.000] Scheduled: *ensureProjectForOpenFiles* -Info 35 [00:01:21.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 36 [00:01:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json :: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 37 [00:01:23.000] Scheduled: /user/username/projects/myproject/c/tsconfig.jsonFailedLookupInvalidation -Info 38 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json :: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 30 [00:01:09.000] ----------------------------------------------- +Info 31 [00:01:10.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 31 [00:01:11.000] Files (5) + +Info 31 [00:01:12.000] ----------------------------------------------- +Info 31 [00:01:13.000] Open files: +Info 31 [00:01:14.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 31 [00:01:15.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 31 [00:01:17.000] FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 32 [00:01:18.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json +Info 33 [00:01:19.000] Scheduled: *ensureProjectForOpenFiles* +Info 34 [00:01:20.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 35 [00:01:21.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json :: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 36 [00:01:22.000] Scheduled: /user/username/projects/myproject/c/tsconfig.jsonFailedLookupInvalidation +Info 37 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json :: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/b/tsconfig.json] deleted @@ -193,9 +192,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/a: {} -Info 39 [00:01:25.000] Running: /user/username/projects/myproject/c/tsconfig.json -Info 40 [00:01:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 41 [00:01:27.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 38 [00:01:24.000] Running: /user/username/projects/myproject/c/tsconfig.json +Info 39 [00:01:25.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 40 [00:01:26.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/index.ts" ], @@ -203,12 +202,12 @@ Info 41 [00:01:27.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 42 [00:01:28.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 43 [00:01:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 44 [00:01:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 45 [00:01:31.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 46 [00:01:32.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 47 [00:01:33.000] Files (4) +Info 41 [00:01:27.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 42 [00:01:28.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 43 [00:01:29.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 44 [00:01:30.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:31.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 46 [00:01:32.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/refs/a.d.ts /user/username/projects/myproject/b/index.ts @@ -225,24 +224,24 @@ Info 47 [00:01:33.000] Files (4) index.ts Part of 'files' list in tsconfig.json -Info 48 [00:01:34.000] ----------------------------------------------- -Info 49 [00:01:35.000] Running: *ensureProjectForOpenFiles* -Info 50 [00:01:36.000] Before ensureProjectForOpenFiles: -Info 51 [00:01:37.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 51 [00:01:38.000] Files (4) - -Info 51 [00:01:39.000] ----------------------------------------------- -Info 51 [00:01:40.000] Open files: -Info 51 [00:01:41.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 51 [00:01:42.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 51 [00:01:43.000] After ensureProjectForOpenFiles: -Info 52 [00:01:44.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 52 [00:01:45.000] Files (4) - -Info 52 [00:01:46.000] ----------------------------------------------- -Info 52 [00:01:47.000] Open files: -Info 52 [00:01:48.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 52 [00:01:49.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 47 [00:01:33.000] ----------------------------------------------- +Info 48 [00:01:34.000] Running: *ensureProjectForOpenFiles* +Info 49 [00:01:35.000] Before ensureProjectForOpenFiles: +Info 50 [00:01:36.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 50 [00:01:37.000] Files (4) + +Info 50 [00:01:38.000] ----------------------------------------------- +Info 50 [00:01:39.000] Open files: +Info 50 [00:01:40.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 50 [00:01:41.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 50 [00:01:42.000] After ensureProjectForOpenFiles: +Info 51 [00:01:43.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 51 [00:01:44.000] Files (4) + +Info 51 [00:01:45.000] ----------------------------------------------- +Info 51 [00:01:46.000] Open files: +Info 51 [00:01:47.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 51 [00:01:48.000] Projects: /user/username/projects/myproject/c/tsconfig.json After checking timeout queue length (3) and running PolledWatches:: @@ -273,13 +272,13 @@ FsWatchesRecursive:: /user/username/projects/myproject/refs: {} -Info 52 [00:01:52.000] FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 53 [00:01:53.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json -Info 54 [00:01:54.000] Scheduled: *ensureProjectForOpenFiles* -Info 55 [00:01:55.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 56 [00:01:56.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json :: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 57 [00:01:57.000] Scheduled: /user/username/projects/myproject/c/tsconfig.jsonFailedLookupInvalidation -Info 58 [00:01:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json :: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 51 [00:01:51.000] FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 52 [00:01:52.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json +Info 53 [00:01:53.000] Scheduled: *ensureProjectForOpenFiles* +Info 54 [00:01:54.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 55 [00:01:55.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json :: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 56 [00:01:56.000] Scheduled: /user/username/projects/myproject/c/tsconfig.jsonFailedLookupInvalidation +Info 57 [00:01:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json :: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/b/tsconfig.json] {"compilerOptions":{"composite":true,"baseUrl":"./","paths":{"@ref/*":["../*"]}},"files":["index.ts"],"references":[{"path":"../a"}]} @@ -313,9 +312,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/refs: {} -Info 59 [00:01:59.000] Running: /user/username/projects/myproject/c/tsconfig.json -Info 60 [00:02:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 61 [00:02:01.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 58 [00:01:58.000] Running: /user/username/projects/myproject/c/tsconfig.json +Info 59 [00:01:59.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 60 [00:02:00.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/index.ts" ], @@ -337,7 +336,7 @@ Info 61 [00:02:01.000] Config: /user/username/projects/myproject/b/tsconfig.js } ] } -Info 62 [00:02:02.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 61 [00:02:01.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -346,12 +345,12 @@ Info 62 [00:02:02.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 63 [00:02:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 64 [00:02:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 65 [00:02:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 66 [00:02:06.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 67 [00:02:07.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 68 [00:02:08.000] Files (5) +Info 62 [00:02:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 63 [00:02:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 64 [00:02:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:02:05.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 66 [00:02:06.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 67 [00:02:07.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/a/index.ts /user/username/projects/myproject/b/index.ts @@ -370,24 +369,24 @@ Info 68 [00:02:08.000] Files (5) index.ts Part of 'files' list in tsconfig.json -Info 69 [00:02:09.000] ----------------------------------------------- -Info 70 [00:02:10.000] Running: *ensureProjectForOpenFiles* -Info 71 [00:02:11.000] Before ensureProjectForOpenFiles: -Info 72 [00:02:12.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 72 [00:02:13.000] Files (5) - -Info 72 [00:02:14.000] ----------------------------------------------- -Info 72 [00:02:15.000] Open files: -Info 72 [00:02:16.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 72 [00:02:17.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 72 [00:02:18.000] After ensureProjectForOpenFiles: -Info 73 [00:02:19.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 73 [00:02:20.000] Files (5) - -Info 73 [00:02:21.000] ----------------------------------------------- -Info 73 [00:02:22.000] Open files: -Info 73 [00:02:23.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 73 [00:02:24.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 68 [00:02:08.000] ----------------------------------------------- +Info 69 [00:02:09.000] Running: *ensureProjectForOpenFiles* +Info 70 [00:02:10.000] Before ensureProjectForOpenFiles: +Info 71 [00:02:11.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 71 [00:02:12.000] Files (5) + +Info 71 [00:02:13.000] ----------------------------------------------- +Info 71 [00:02:14.000] Open files: +Info 71 [00:02:15.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 71 [00:02:16.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 71 [00:02:17.000] After ensureProjectForOpenFiles: +Info 72 [00:02:18.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 72 [00:02:19.000] Files (5) + +Info 72 [00:02:20.000] ----------------------------------------------- +Info 72 [00:02:21.000] Open files: +Info 72 [00:02:22.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 72 [00:02:23.000] Projects: /user/username/projects/myproject/c/tsconfig.json After checking timeout queue length (3) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-transitively-referenced-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-transitively-referenced-config-file.js index 23a443931ac13..e108ea07fa267 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-transitively-referenced-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-deleting-transitively-referenced-config-file.js @@ -71,9 +71,8 @@ Info 5 [00:00:44.000] Config: /user/username/projects/myproject/c/tsconfig.js } ] } -Info 6 [00:00:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 7 [00:00:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 8 [00:00:47.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 6 [00:00:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 7 [00:00:46.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/index.ts" ], @@ -95,8 +94,8 @@ Info 8 [00:00:47.000] Config: /user/username/projects/myproject/b/tsconfig.js } ] } -Info 9 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 10 [00:00:49.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 8 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 9 [00:00:48.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -105,26 +104,26 @@ Info 10 [00:00:49.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 11 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 12 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 20 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 25 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 26 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 27 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 28 [00:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 29 [00:01:08.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 30 [00:01:09.000] Files (5) +Info 10 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 11 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 24 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 25 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 26 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 27 [00:01:06.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 28 [00:01:07.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 29 [00:01:08.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/a/index.ts /user/username/projects/myproject/b/index.ts @@ -143,21 +142,21 @@ Info 30 [00:01:09.000] Files (5) index.ts Part of 'files' list in tsconfig.json -Info 31 [00:01:10.000] ----------------------------------------------- -Info 32 [00:01:11.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 32 [00:01:12.000] Files (5) - -Info 32 [00:01:13.000] ----------------------------------------------- -Info 32 [00:01:14.000] Open files: -Info 32 [00:01:15.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 32 [00:01:16.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 32 [00:01:18.000] FileWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 33 [00:01:19.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json -Info 34 [00:01:20.000] Scheduled: *ensureProjectForOpenFiles* -Info 35 [00:01:21.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 36 [00:01:22.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json :: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 37 [00:01:23.000] Scheduled: /user/username/projects/myproject/c/tsconfig.jsonFailedLookupInvalidation -Info 38 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json :: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 30 [00:01:09.000] ----------------------------------------------- +Info 31 [00:01:10.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 31 [00:01:11.000] Files (5) + +Info 31 [00:01:12.000] ----------------------------------------------- +Info 31 [00:01:13.000] Open files: +Info 31 [00:01:14.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 31 [00:01:15.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 31 [00:01:17.000] FileWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 32 [00:01:18.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json +Info 33 [00:01:19.000] Scheduled: *ensureProjectForOpenFiles* +Info 34 [00:01:20.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 35 [00:01:21.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json :: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 36 [00:01:22.000] Scheduled: /user/username/projects/myproject/c/tsconfig.jsonFailedLookupInvalidation +Info 37 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json :: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/a/tsconfig.json] deleted @@ -193,9 +192,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/a: {} -Info 39 [00:01:25.000] Running: /user/username/projects/myproject/c/tsconfig.json -Info 40 [00:01:26.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 41 [00:01:27.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 38 [00:01:24.000] Running: /user/username/projects/myproject/c/tsconfig.json +Info 39 [00:01:25.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 40 [00:01:26.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -203,25 +202,25 @@ Info 41 [00:01:27.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 42 [00:01:28.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 43 [00:01:29.000] Different program with same set of files -Info 44 [00:01:30.000] Running: *ensureProjectForOpenFiles* -Info 45 [00:01:31.000] Before ensureProjectForOpenFiles: -Info 46 [00:01:32.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 46 [00:01:33.000] Files (5) - -Info 46 [00:01:34.000] ----------------------------------------------- -Info 46 [00:01:35.000] Open files: -Info 46 [00:01:36.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 46 [00:01:37.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 46 [00:01:38.000] After ensureProjectForOpenFiles: -Info 47 [00:01:39.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 47 [00:01:40.000] Files (5) - -Info 47 [00:01:41.000] ----------------------------------------------- -Info 47 [00:01:42.000] Open files: -Info 47 [00:01:43.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 47 [00:01:44.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 41 [00:01:27.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:28.000] Different program with same set of files +Info 43 [00:01:29.000] Running: *ensureProjectForOpenFiles* +Info 44 [00:01:30.000] Before ensureProjectForOpenFiles: +Info 45 [00:01:31.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 45 [00:01:32.000] Files (5) + +Info 45 [00:01:33.000] ----------------------------------------------- +Info 45 [00:01:34.000] Open files: +Info 45 [00:01:35.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 45 [00:01:36.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 45 [00:01:37.000] After ensureProjectForOpenFiles: +Info 46 [00:01:38.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 46 [00:01:39.000] Files (5) + +Info 46 [00:01:40.000] ----------------------------------------------- +Info 46 [00:01:41.000] Open files: +Info 46 [00:01:42.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 46 [00:01:43.000] Projects: /user/username/projects/myproject/c/tsconfig.json After checking timeout queue length (3) and running PolledWatches:: @@ -256,13 +255,13 @@ FsWatchesRecursive:: /user/username/projects/myproject/a: {} -Info 47 [00:01:47.000] FileWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 48 [00:01:48.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json -Info 49 [00:01:49.000] Scheduled: *ensureProjectForOpenFiles* -Info 50 [00:01:50.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 51 [00:01:51.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json :: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 52 [00:01:52.000] Scheduled: /user/username/projects/myproject/c/tsconfig.jsonFailedLookupInvalidation -Info 53 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json :: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 46 [00:01:46.000] FileWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 47 [00:01:47.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json +Info 48 [00:01:48.000] Scheduled: *ensureProjectForOpenFiles* +Info 49 [00:01:49.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 50 [00:01:50.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json :: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 51 [00:01:51.000] Scheduled: /user/username/projects/myproject/c/tsconfig.jsonFailedLookupInvalidation +Info 52 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json :: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/a/tsconfig.json] {"compilerOptions":{"composite":true},"files":["index.ts"]} @@ -300,9 +299,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/a: {} -Info 54 [00:01:54.000] Running: /user/username/projects/myproject/c/tsconfig.json -Info 55 [00:01:55.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 56 [00:01:56.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 53 [00:01:53.000] Running: /user/username/projects/myproject/c/tsconfig.json +Info 54 [00:01:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 55 [00:01:55.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -311,25 +310,25 @@ Info 56 [00:01:56.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 57 [00:01:57.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 58 [00:01:58.000] Different program with same set of files -Info 59 [00:01:59.000] Running: *ensureProjectForOpenFiles* -Info 60 [00:02:00.000] Before ensureProjectForOpenFiles: -Info 61 [00:02:01.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 61 [00:02:02.000] Files (5) - -Info 61 [00:02:03.000] ----------------------------------------------- -Info 61 [00:02:04.000] Open files: -Info 61 [00:02:05.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 61 [00:02:06.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 61 [00:02:07.000] After ensureProjectForOpenFiles: -Info 62 [00:02:08.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 62 [00:02:09.000] Files (5) - -Info 62 [00:02:10.000] ----------------------------------------------- -Info 62 [00:02:11.000] Open files: -Info 62 [00:02:12.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 62 [00:02:13.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 56 [00:01:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 57 [00:01:57.000] Different program with same set of files +Info 58 [00:01:58.000] Running: *ensureProjectForOpenFiles* +Info 59 [00:01:59.000] Before ensureProjectForOpenFiles: +Info 60 [00:02:00.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 60 [00:02:01.000] Files (5) + +Info 60 [00:02:02.000] ----------------------------------------------- +Info 60 [00:02:03.000] Open files: +Info 60 [00:02:04.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 60 [00:02:05.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 60 [00:02:06.000] After ensureProjectForOpenFiles: +Info 61 [00:02:07.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 61 [00:02:08.000] Files (5) + +Info 61 [00:02:09.000] ----------------------------------------------- +Info 61 [00:02:10.000] Open files: +Info 61 [00:02:11.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 61 [00:02:12.000] Projects: /user/username/projects/myproject/c/tsconfig.json After checking timeout queue length (3) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-in-referenced-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-in-referenced-config-file.js index 27b0838fd0cf6..8b077947138cc 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-in-referenced-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-in-referenced-config-file.js @@ -71,9 +71,8 @@ Info 5 [00:00:44.000] Config: /user/username/projects/myproject/c/tsconfig.js } ] } -Info 6 [00:00:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 7 [00:00:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 8 [00:00:47.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 6 [00:00:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 7 [00:00:46.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/index.ts" ], @@ -95,8 +94,8 @@ Info 8 [00:00:47.000] Config: /user/username/projects/myproject/b/tsconfig.js } ] } -Info 9 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 10 [00:00:49.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 8 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 9 [00:00:48.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -105,26 +104,26 @@ Info 10 [00:00:49.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 11 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 12 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 20 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 25 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 26 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 27 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 28 [00:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 29 [00:01:08.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 30 [00:01:09.000] Files (5) +Info 10 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 11 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 24 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 25 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 26 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 27 [00:01:06.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 28 [00:01:07.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 29 [00:01:08.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/a/index.ts /user/username/projects/myproject/b/index.ts @@ -143,20 +142,20 @@ Info 30 [00:01:09.000] Files (5) index.ts Part of 'files' list in tsconfig.json -Info 31 [00:01:10.000] ----------------------------------------------- -Info 32 [00:01:11.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 32 [00:01:12.000] Files (5) - -Info 32 [00:01:13.000] ----------------------------------------------- -Info 32 [00:01:14.000] Open files: -Info 32 [00:01:15.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 32 [00:01:16.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 32 [00:01:20.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/nrefs :: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 33 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/nrefs :: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 34 [00:01:26.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/c/tsconfig.json WatchType: Config file -Info 35 [00:01:27.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json -Info 36 [00:01:28.000] Scheduled: *ensureProjectForOpenFiles* -Info 37 [00:01:29.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 30 [00:01:09.000] ----------------------------------------------- +Info 31 [00:01:10.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 31 [00:01:11.000] Files (5) + +Info 31 [00:01:12.000] ----------------------------------------------- +Info 31 [00:01:13.000] Open files: +Info 31 [00:01:14.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 31 [00:01:15.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 31 [00:01:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/nrefs :: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 32 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/nrefs :: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 33 [00:01:25.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/c/tsconfig.json WatchType: Config file +Info 34 [00:01:26.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json +Info 35 [00:01:27.000] Scheduled: *ensureProjectForOpenFiles* +Info 36 [00:01:28.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/b/tsconfig.json] {"compilerOptions":{"composite":true,"baseUrl":"./","paths":{"@ref/*":["../nrefs/*"]}},"files":["index.ts"],"references":[{"path":"../a"}]} @@ -198,9 +197,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/a: {} -Info 38 [00:01:30.000] Running: /user/username/projects/myproject/c/tsconfig.json -Info 39 [00:01:31.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 40 [00:01:32.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 37 [00:01:29.000] Running: /user/username/projects/myproject/c/tsconfig.json +Info 38 [00:01:30.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 39 [00:01:31.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/index.ts" ], @@ -222,14 +221,14 @@ Info 40 [00:01:32.000] Config: /user/username/projects/myproject/b/tsconfig.js } ] } -Info 41 [00:01:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs/a.d.ts 500 undefined WatchType: Closed Script info -Info 42 [00:01:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 43 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 44 [00:01:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 45 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 46 [00:01:38.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 47 [00:01:39.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 48 [00:01:40.000] Files (5) +Info 40 [00:01:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs/a.d.ts 500 undefined WatchType: Closed Script info +Info 41 [00:01:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 42 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 43 [00:01:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 44 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 45 [00:01:37.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 46 [00:01:38.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 47 [00:01:39.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/nrefs/a.d.ts /user/username/projects/myproject/b/index.ts @@ -248,24 +247,24 @@ Info 48 [00:01:40.000] Files (5) index.ts Part of 'files' list in tsconfig.json -Info 49 [00:01:41.000] ----------------------------------------------- -Info 50 [00:01:42.000] Running: *ensureProjectForOpenFiles* -Info 51 [00:01:43.000] Before ensureProjectForOpenFiles: -Info 52 [00:01:44.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 52 [00:01:45.000] Files (5) - -Info 52 [00:01:46.000] ----------------------------------------------- -Info 52 [00:01:47.000] Open files: -Info 52 [00:01:48.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 52 [00:01:49.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 52 [00:01:50.000] After ensureProjectForOpenFiles: -Info 53 [00:01:51.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 53 [00:01:52.000] Files (5) - -Info 53 [00:01:53.000] ----------------------------------------------- -Info 53 [00:01:54.000] Open files: -Info 53 [00:01:55.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 53 [00:01:56.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 48 [00:01:40.000] ----------------------------------------------- +Info 49 [00:01:41.000] Running: *ensureProjectForOpenFiles* +Info 50 [00:01:42.000] Before ensureProjectForOpenFiles: +Info 51 [00:01:43.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 51 [00:01:44.000] Files (5) + +Info 51 [00:01:45.000] ----------------------------------------------- +Info 51 [00:01:46.000] Open files: +Info 51 [00:01:47.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 51 [00:01:48.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 51 [00:01:49.000] After ensureProjectForOpenFiles: +Info 52 [00:01:50.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 52 [00:01:51.000] Files (5) + +Info 52 [00:01:52.000] ----------------------------------------------- +Info 52 [00:01:53.000] Open files: +Info 52 [00:01:54.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 52 [00:01:55.000] Projects: /user/username/projects/myproject/c/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -302,10 +301,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/nrefs: {} -Info 53 [00:02:00.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/c/tsconfig.json WatchType: Config file -Info 54 [00:02:01.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json -Info 55 [00:02:02.000] Scheduled: *ensureProjectForOpenFiles* -Info 56 [00:02:03.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 52 [00:01:59.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/c/tsconfig.json WatchType: Config file +Info 53 [00:02:00.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json +Info 54 [00:02:01.000] Scheduled: *ensureProjectForOpenFiles* +Info 55 [00:02:02.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/b/tsconfig.json] {"compilerOptions":{"composite":true,"baseUrl":"./","paths":{"@ref/*":["../*"]}},"files":["index.ts"],"references":[{"path":"../a"}]} @@ -345,9 +344,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/nrefs: {} -Info 57 [00:02:04.000] Running: /user/username/projects/myproject/c/tsconfig.json -Info 58 [00:02:05.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 59 [00:02:06.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 56 [00:02:03.000] Running: /user/username/projects/myproject/c/tsconfig.json +Info 57 [00:02:04.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 58 [00:02:05.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/index.ts" ], @@ -369,13 +368,13 @@ Info 59 [00:02:06.000] Config: /user/username/projects/myproject/b/tsconfig.js } ] } -Info 60 [00:02:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 61 [00:02:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 62 [00:02:09.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 63 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 64 [00:02:11.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 65 [00:02:12.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 66 [00:02:13.000] Files (5) +Info 59 [00:02:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 60 [00:02:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 61 [00:02:08.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 62 [00:02:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 63 [00:02:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 64 [00:02:11.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 65 [00:02:12.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/a/index.ts /user/username/projects/myproject/b/index.ts @@ -394,24 +393,24 @@ Info 66 [00:02:13.000] Files (5) index.ts Part of 'files' list in tsconfig.json -Info 67 [00:02:14.000] ----------------------------------------------- -Info 68 [00:02:15.000] Running: *ensureProjectForOpenFiles* -Info 69 [00:02:16.000] Before ensureProjectForOpenFiles: -Info 70 [00:02:17.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 70 [00:02:18.000] Files (5) - -Info 70 [00:02:19.000] ----------------------------------------------- -Info 70 [00:02:20.000] Open files: -Info 70 [00:02:21.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 70 [00:02:22.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 70 [00:02:23.000] After ensureProjectForOpenFiles: -Info 71 [00:02:24.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 71 [00:02:25.000] Files (5) - -Info 71 [00:02:26.000] ----------------------------------------------- -Info 71 [00:02:27.000] Open files: -Info 71 [00:02:28.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 71 [00:02:29.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 66 [00:02:13.000] ----------------------------------------------- +Info 67 [00:02:14.000] Running: *ensureProjectForOpenFiles* +Info 68 [00:02:15.000] Before ensureProjectForOpenFiles: +Info 69 [00:02:16.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 69 [00:02:17.000] Files (5) + +Info 69 [00:02:18.000] ----------------------------------------------- +Info 69 [00:02:19.000] Open files: +Info 69 [00:02:20.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 69 [00:02:21.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 69 [00:02:22.000] After ensureProjectForOpenFiles: +Info 70 [00:02:23.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 70 [00:02:24.000] Files (5) + +Info 70 [00:02:25.000] ----------------------------------------------- +Info 70 [00:02:26.000] Open files: +Info 70 [00:02:27.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 70 [00:02:28.000] Projects: /user/username/projects/myproject/c/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-on-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-on-config-file.js index b484ffff800df..e56764ccbf7f7 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-on-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-edit-on-config-file.js @@ -71,9 +71,8 @@ Info 5 [00:00:44.000] Config: /user/username/projects/myproject/c/tsconfig.js } ] } -Info 6 [00:00:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 7 [00:00:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 8 [00:00:47.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 6 [00:00:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 7 [00:00:46.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/index.ts" ], @@ -95,8 +94,8 @@ Info 8 [00:00:47.000] Config: /user/username/projects/myproject/b/tsconfig.js } ] } -Info 9 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 10 [00:00:49.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 8 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 9 [00:00:48.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -105,26 +104,26 @@ Info 10 [00:00:49.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 11 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 12 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 20 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 25 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 26 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 27 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 28 [00:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 29 [00:01:08.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 30 [00:01:09.000] Files (5) +Info 10 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 11 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 24 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 25 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 26 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 27 [00:01:06.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 28 [00:01:07.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 29 [00:01:08.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/a/index.ts /user/username/projects/myproject/b/index.ts @@ -143,20 +142,20 @@ Info 30 [00:01:09.000] Files (5) index.ts Part of 'files' list in tsconfig.json -Info 31 [00:01:10.000] ----------------------------------------------- -Info 32 [00:01:11.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 32 [00:01:12.000] Files (5) - -Info 32 [00:01:13.000] ----------------------------------------------- -Info 32 [00:01:14.000] Open files: -Info 32 [00:01:15.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 32 [00:01:16.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 32 [00:01:20.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/nrefs :: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 33 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/nrefs :: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 34 [00:01:26.000] FileWatcher:: Triggered with /user/username/projects/myproject/c/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/c/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 35 [00:01:27.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json -Info 36 [00:01:28.000] Scheduled: *ensureProjectForOpenFiles* -Info 37 [00:01:29.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/c/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/c/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 30 [00:01:09.000] ----------------------------------------------- +Info 31 [00:01:10.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 31 [00:01:11.000] Files (5) + +Info 31 [00:01:12.000] ----------------------------------------------- +Info 31 [00:01:13.000] Open files: +Info 31 [00:01:14.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 31 [00:01:15.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 31 [00:01:19.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/nrefs :: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 32 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/nrefs :: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 33 [00:01:25.000] FileWatcher:: Triggered with /user/username/projects/myproject/c/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/c/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 34 [00:01:26.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json +Info 35 [00:01:27.000] Scheduled: *ensureProjectForOpenFiles* +Info 36 [00:01:28.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/c/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/c/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/c/tsconfig.json] {"compilerOptions":{"baseUrl":"./","paths":{"@ref/*":["../nrefs/*"]}},"files":["index.ts"],"references":[{"path":"../b"}]} @@ -198,9 +197,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/a: {} -Info 38 [00:01:30.000] Running: /user/username/projects/myproject/c/tsconfig.json -Info 39 [00:01:31.000] Reloading configured project /user/username/projects/myproject/c/tsconfig.json -Info 40 [00:01:32.000] Config: /user/username/projects/myproject/c/tsconfig.json : { +Info 37 [00:01:29.000] Running: /user/username/projects/myproject/c/tsconfig.json +Info 38 [00:01:30.000] Reloading configured project /user/username/projects/myproject/c/tsconfig.json +Info 39 [00:01:31.000] Config: /user/username/projects/myproject/c/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/c/index.ts" ], @@ -221,36 +220,35 @@ Info 40 [00:01:32.000] Config: /user/username/projects/myproject/c/tsconfig.js } ] } -Info 41 [00:01:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 42 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 43 [00:01:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 44 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 45 [00:01:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 46 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 47 [00:01:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 48 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 49 [00:01:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 50 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 51 [00:01:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 52 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 53 [00:01:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 54 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 55 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 56 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 57 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 58 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 59 [00:01:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs/a.d.ts 500 undefined WatchType: Closed Script info -Info 60 [00:01:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 61 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 62 [00:01:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 63 [00:01:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 64 [00:01:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 65 [00:01:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 66 [00:01:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 67 [00:01:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 68 [00:02:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 69 [00:02:01.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 70 [00:02:02.000] Files (5) +Info 40 [00:01:32.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 41 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 42 [00:01:34.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 43 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 44 [00:01:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 45 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 46 [00:01:38.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 47 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 48 [00:01:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 49 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 50 [00:01:42.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 51 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 52 [00:01:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 53 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 54 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 55 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 56 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 57 [00:01:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs/a.d.ts 500 undefined WatchType: Closed Script info +Info 58 [00:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 59 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 60 [00:01:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 61 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 62 [00:01:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 63 [00:01:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 64 [00:01:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 65 [00:01:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 66 [00:01:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 67 [00:01:59.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 68 [00:02:00.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/a/index.ts /user/username/projects/myproject/b/index.ts @@ -269,24 +267,24 @@ Info 70 [00:02:02.000] Files (5) index.ts Part of 'files' list in tsconfig.json -Info 71 [00:02:03.000] ----------------------------------------------- -Info 72 [00:02:04.000] Running: *ensureProjectForOpenFiles* -Info 73 [00:02:05.000] Before ensureProjectForOpenFiles: -Info 74 [00:02:06.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 74 [00:02:07.000] Files (5) - -Info 74 [00:02:08.000] ----------------------------------------------- -Info 74 [00:02:09.000] Open files: -Info 74 [00:02:10.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 74 [00:02:11.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 74 [00:02:12.000] After ensureProjectForOpenFiles: -Info 75 [00:02:13.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 75 [00:02:14.000] Files (5) - -Info 75 [00:02:15.000] ----------------------------------------------- -Info 75 [00:02:16.000] Open files: -Info 75 [00:02:17.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 75 [00:02:18.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 69 [00:02:01.000] ----------------------------------------------- +Info 70 [00:02:02.000] Running: *ensureProjectForOpenFiles* +Info 71 [00:02:03.000] Before ensureProjectForOpenFiles: +Info 72 [00:02:04.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 72 [00:02:05.000] Files (5) + +Info 72 [00:02:06.000] ----------------------------------------------- +Info 72 [00:02:07.000] Open files: +Info 72 [00:02:08.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 72 [00:02:09.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 72 [00:02:10.000] After ensureProjectForOpenFiles: +Info 73 [00:02:11.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 73 [00:02:12.000] Files (5) + +Info 73 [00:02:13.000] ----------------------------------------------- +Info 73 [00:02:14.000] Open files: +Info 73 [00:02:15.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 73 [00:02:16.000] Projects: /user/username/projects/myproject/c/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -323,10 +321,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/a: {} -Info 75 [00:02:22.000] FileWatcher:: Triggered with /user/username/projects/myproject/c/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/c/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 76 [00:02:23.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json -Info 77 [00:02:24.000] Scheduled: *ensureProjectForOpenFiles* -Info 78 [00:02:25.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/c/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/c/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 73 [00:02:20.000] FileWatcher:: Triggered with /user/username/projects/myproject/c/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/c/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 74 [00:02:21.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json +Info 75 [00:02:22.000] Scheduled: *ensureProjectForOpenFiles* +Info 76 [00:02:23.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/c/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/c/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/c/tsconfig.json] {"compilerOptions":{"baseUrl":"./","paths":{"@ref/*":["../refs/*"]}},"files":["index.ts"],"references":[{"path":"../b"}]} @@ -366,9 +364,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/a: {} -Info 79 [00:02:26.000] Running: /user/username/projects/myproject/c/tsconfig.json -Info 80 [00:02:27.000] Reloading configured project /user/username/projects/myproject/c/tsconfig.json -Info 81 [00:02:28.000] Config: /user/username/projects/myproject/c/tsconfig.json : { +Info 77 [00:02:24.000] Running: /user/username/projects/myproject/c/tsconfig.json +Info 78 [00:02:25.000] Reloading configured project /user/username/projects/myproject/c/tsconfig.json +Info 79 [00:02:26.000] Config: /user/username/projects/myproject/c/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/c/index.ts" ], @@ -389,35 +387,34 @@ Info 81 [00:02:28.000] Config: /user/username/projects/myproject/c/tsconfig.js } ] } -Info 82 [00:02:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 83 [00:02:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 84 [00:02:31.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 85 [00:02:32.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 86 [00:02:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 87 [00:02:34.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 88 [00:02:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 89 [00:02:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 90 [00:02:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 91 [00:02:38.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 92 [00:02:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 93 [00:02:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 94 [00:02:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 95 [00:02:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 96 [00:02:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 97 [00:02:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 98 [00:02:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 99 [00:02:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 100 [00:02:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 101 [00:02:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 102 [00:02:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 103 [00:02:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 104 [00:02:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 105 [00:02:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 106 [00:02:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 107 [00:02:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 108 [00:02:55.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 109 [00:02:56.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 110 [00:02:57.000] Files (5) +Info 80 [00:02:27.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 81 [00:02:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 82 [00:02:29.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 83 [00:02:30.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 84 [00:02:31.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 85 [00:02:32.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 86 [00:02:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 87 [00:02:34.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 88 [00:02:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 89 [00:02:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 90 [00:02:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 91 [00:02:38.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 92 [00:02:39.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 93 [00:02:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 94 [00:02:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 95 [00:02:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 96 [00:02:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 97 [00:02:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 98 [00:02:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 99 [00:02:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 100 [00:02:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 101 [00:02:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 102 [00:02:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 103 [00:02:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 104 [00:02:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 105 [00:02:52.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 106 [00:02:53.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 107 [00:02:54.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/a/index.ts /user/username/projects/myproject/b/index.ts @@ -436,24 +433,24 @@ Info 110 [00:02:57.000] Files (5) index.ts Part of 'files' list in tsconfig.json -Info 111 [00:02:58.000] ----------------------------------------------- -Info 112 [00:02:59.000] Running: *ensureProjectForOpenFiles* -Info 113 [00:03:00.000] Before ensureProjectForOpenFiles: -Info 114 [00:03:01.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 114 [00:03:02.000] Files (5) - -Info 114 [00:03:03.000] ----------------------------------------------- -Info 114 [00:03:04.000] Open files: -Info 114 [00:03:05.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 114 [00:03:06.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 114 [00:03:07.000] After ensureProjectForOpenFiles: -Info 115 [00:03:08.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 115 [00:03:09.000] Files (5) - -Info 115 [00:03:10.000] ----------------------------------------------- -Info 115 [00:03:11.000] Open files: -Info 115 [00:03:12.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 115 [00:03:13.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 108 [00:02:55.000] ----------------------------------------------- +Info 109 [00:02:56.000] Running: *ensureProjectForOpenFiles* +Info 110 [00:02:57.000] Before ensureProjectForOpenFiles: +Info 111 [00:02:58.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 111 [00:02:59.000] Files (5) + +Info 111 [00:03:00.000] ----------------------------------------------- +Info 111 [00:03:01.000] Open files: +Info 111 [00:03:02.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 111 [00:03:03.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 111 [00:03:04.000] After ensureProjectForOpenFiles: +Info 112 [00:03:05.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 112 [00:03:06.000] Files (5) + +Info 112 [00:03:07.000] ----------------------------------------------- +Info 112 [00:03:08.000] Open files: +Info 112 [00:03:09.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 112 [00:03:10.000] Projects: /user/username/projects/myproject/c/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-non-local-edit.js b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-non-local-edit.js index 9d5b812e0a9a7..938762cedb992 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-non-local-edit.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/transitive-references-with-non-local-edit.js @@ -71,9 +71,8 @@ Info 5 [00:00:44.000] Config: /user/username/projects/myproject/c/tsconfig.js } ] } -Info 6 [00:00:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 7 [00:00:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 8 [00:00:47.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 6 [00:00:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 7 [00:00:46.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/index.ts" ], @@ -95,8 +94,8 @@ Info 8 [00:00:47.000] Config: /user/username/projects/myproject/b/tsconfig.js } ] } -Info 9 [00:00:48.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 10 [00:00:49.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 8 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 9 [00:00:48.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -105,26 +104,26 @@ Info 10 [00:00:49.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 11 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 12 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 20 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 25 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 26 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 27 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 28 [00:01:07.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 29 [00:01:08.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 30 [00:01:09.000] Files (5) +Info 10 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 11 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 19 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 24 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 25 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 26 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 27 [00:01:06.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 28 [00:01:07.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 29 [00:01:08.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/a/index.ts /user/username/projects/myproject/b/index.ts @@ -143,18 +142,18 @@ Info 30 [00:01:09.000] Files (5) index.ts Part of 'files' list in tsconfig.json -Info 31 [00:01:10.000] ----------------------------------------------- -Info 32 [00:01:11.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 32 [00:01:12.000] Files (5) - -Info 32 [00:01:13.000] ----------------------------------------------- -Info 32 [00:01:14.000] Open files: -Info 32 [00:01:15.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 32 [00:01:16.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 32 [00:01:19.000] FileWatcher:: Triggered with /user/username/projects/myproject/b/index.ts 1:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 33 [00:01:20.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json -Info 34 [00:01:21.000] Scheduled: *ensureProjectForOpenFiles* -Info 35 [00:01:22.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/index.ts 1:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 30 [00:01:09.000] ----------------------------------------------- +Info 31 [00:01:10.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 31 [00:01:11.000] Files (5) + +Info 31 [00:01:12.000] ----------------------------------------------- +Info 31 [00:01:13.000] Open files: +Info 31 [00:01:14.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 31 [00:01:15.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 31 [00:01:18.000] FileWatcher:: Triggered with /user/username/projects/myproject/b/index.ts 1:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:19.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json +Info 33 [00:01:20.000] Scheduled: *ensureProjectForOpenFiles* +Info 34 [00:01:21.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/index.ts 1:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/b/index.ts] import {A} from '@ref/a'; @@ -193,27 +192,27 @@ FsWatchesRecursive:: /user/username/projects/myproject/a: {} -Info 36 [00:01:23.000] Running: /user/username/projects/myproject/c/tsconfig.json -Info 37 [00:01:24.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 38 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 39 [00:01:26.000] Different program with same set of files -Info 40 [00:01:27.000] Running: *ensureProjectForOpenFiles* -Info 41 [00:01:28.000] Before ensureProjectForOpenFiles: -Info 42 [00:01:29.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 42 [00:01:30.000] Files (5) - -Info 42 [00:01:31.000] ----------------------------------------------- -Info 42 [00:01:32.000] Open files: -Info 42 [00:01:33.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 42 [00:01:34.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 42 [00:01:35.000] After ensureProjectForOpenFiles: -Info 43 [00:01:36.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 43 [00:01:37.000] Files (5) - -Info 43 [00:01:38.000] ----------------------------------------------- -Info 43 [00:01:39.000] Open files: -Info 43 [00:01:40.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 43 [00:01:41.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 35 [00:01:22.000] Running: /user/username/projects/myproject/c/tsconfig.json +Info 36 [00:01:23.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 37 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 38 [00:01:25.000] Different program with same set of files +Info 39 [00:01:26.000] Running: *ensureProjectForOpenFiles* +Info 40 [00:01:27.000] Before ensureProjectForOpenFiles: +Info 41 [00:01:28.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 41 [00:01:29.000] Files (5) + +Info 41 [00:01:30.000] ----------------------------------------------- +Info 41 [00:01:31.000] Open files: +Info 41 [00:01:32.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 41 [00:01:33.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 41 [00:01:34.000] After ensureProjectForOpenFiles: +Info 42 [00:01:35.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 42 [00:01:36.000] Files (5) + +Info 42 [00:01:37.000] ----------------------------------------------- +Info 42 [00:01:38.000] Open files: +Info 42 [00:01:39.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 42 [00:01:40.000] Projects: /user/username/projects/myproject/c/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-referenced-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-referenced-config-file.js index dda99f2422b70..71773553735e9 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-referenced-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-referenced-config-file.js @@ -73,9 +73,8 @@ Info 5 [00:00:44.000] Config: /user/username/projects/myproject/c/tsconfig.js } Info 6 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c 1 undefined Config: /user/username/projects/myproject/c/tsconfig.json WatchType: Wild card directory Info 7 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c 1 undefined Config: /user/username/projects/myproject/c/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 10 [00:00:49.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 8 [00:00:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 9 [00:00:48.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/index.ts" ], @@ -97,10 +96,10 @@ Info 10 [00:00:49.000] Config: /user/username/projects/myproject/b/tsconfig.js } ] } -Info 11 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 12 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 13 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:53.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 10 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 11 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 12 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:52.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -109,28 +108,28 @@ Info 14 [00:00:53.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 15 [00:00:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 16 [00:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 17 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 18 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 23 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info -Info 24 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info -Info 25 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 26 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 28 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 29 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 30 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 31 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 32 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 33 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 34 [00:01:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:14.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 36 [00:01:15.000] Files (5) +Info 14 [00:00:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 15 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 16 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 17 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 22 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info +Info 23 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info +Info 24 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 25 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 28 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 29 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 30 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 31 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 32 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 33 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:13.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 35 [00:01:14.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/a/index.ts /user/username/projects/myproject/b/index.ts @@ -149,24 +148,24 @@ Info 36 [00:01:15.000] Files (5) index.ts Matched by default include pattern '**/*' -Info 37 [00:01:16.000] ----------------------------------------------- -Info 38 [00:01:17.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 38 [00:01:18.000] Files (5) - -Info 38 [00:01:19.000] ----------------------------------------------- -Info 38 [00:01:20.000] Open files: -Info 38 [00:01:21.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 38 [00:01:22.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 38 [00:01:24.000] FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 39 [00:01:25.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json -Info 40 [00:01:26.000] Scheduled: *ensureProjectForOpenFiles* -Info 41 [00:01:27.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 42 [00:01:28.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json :: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 43 [00:01:29.000] Project: /user/username/projects/myproject/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/b/tsconfig.json -Info 44 [00:01:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json :: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 45 [00:01:31.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json :: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 46 [00:01:32.000] Scheduled: /user/username/projects/myproject/c/tsconfig.jsonFailedLookupInvalidation -Info 47 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json :: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 36 [00:01:15.000] ----------------------------------------------- +Info 37 [00:01:16.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 37 [00:01:17.000] Files (5) + +Info 37 [00:01:18.000] ----------------------------------------------- +Info 37 [00:01:19.000] Open files: +Info 37 [00:01:20.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 37 [00:01:21.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 37 [00:01:23.000] FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 38 [00:01:24.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json +Info 39 [00:01:25.000] Scheduled: *ensureProjectForOpenFiles* +Info 40 [00:01:26.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 41 [00:01:27.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json :: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 42 [00:01:28.000] Project: /user/username/projects/myproject/b/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/b/tsconfig.json +Info 43 [00:01:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json :: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 44 [00:01:30.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json :: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 45 [00:01:31.000] Scheduled: /user/username/projects/myproject/c/tsconfig.jsonFailedLookupInvalidation +Info 46 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json :: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/b/tsconfig.json] deleted @@ -204,9 +203,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/refs: {} -Info 48 [00:01:34.000] Running: /user/username/projects/myproject/c/tsconfig.json -Info 49 [00:01:35.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 50 [00:01:36.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 47 [00:01:33.000] Running: /user/username/projects/myproject/c/tsconfig.json +Info 48 [00:01:34.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 49 [00:01:35.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/index.ts" ], @@ -214,16 +213,16 @@ Info 50 [00:01:36.000] Config: /user/username/projects/myproject/b/tsconfig.js "configFilePath": "/user/username/projects/myproject/b/tsconfig.json" } } -Info 51 [00:01:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 52 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 53 [00:01:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 54 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 55 [00:01:41.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 56 [00:01:42.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 57 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 58 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 59 [00:01:45.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 60 [00:01:46.000] Files (4) +Info 50 [00:01:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 51 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 52 [00:01:38.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 53 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 54 [00:01:40.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 55 [00:01:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 56 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 57 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 58 [00:01:44.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 59 [00:01:45.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/refs/a.d.ts /user/username/projects/myproject/b/index.ts @@ -240,24 +239,24 @@ Info 60 [00:01:46.000] Files (4) index.ts Matched by default include pattern '**/*' -Info 61 [00:01:47.000] ----------------------------------------------- -Info 62 [00:01:48.000] Running: *ensureProjectForOpenFiles* -Info 63 [00:01:49.000] Before ensureProjectForOpenFiles: -Info 64 [00:01:50.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 64 [00:01:51.000] Files (4) - -Info 64 [00:01:52.000] ----------------------------------------------- -Info 64 [00:01:53.000] Open files: -Info 64 [00:01:54.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 64 [00:01:55.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 64 [00:01:56.000] After ensureProjectForOpenFiles: -Info 65 [00:01:57.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 65 [00:01:58.000] Files (4) - -Info 65 [00:01:59.000] ----------------------------------------------- -Info 65 [00:02:00.000] Open files: -Info 65 [00:02:01.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 65 [00:02:02.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 60 [00:01:46.000] ----------------------------------------------- +Info 61 [00:01:47.000] Running: *ensureProjectForOpenFiles* +Info 62 [00:01:48.000] Before ensureProjectForOpenFiles: +Info 63 [00:01:49.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 63 [00:01:50.000] Files (4) + +Info 63 [00:01:51.000] ----------------------------------------------- +Info 63 [00:01:52.000] Open files: +Info 63 [00:01:53.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 63 [00:01:54.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 63 [00:01:55.000] After ensureProjectForOpenFiles: +Info 64 [00:01:56.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 64 [00:01:57.000] Files (4) + +Info 64 [00:01:58.000] ----------------------------------------------- +Info 64 [00:01:59.000] Open files: +Info 64 [00:02:00.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 64 [00:02:01.000] Projects: /user/username/projects/myproject/c/tsconfig.json After checking timeout queue length (3) and running PolledWatches:: @@ -290,13 +289,13 @@ FsWatchesRecursive:: /user/username/projects/myproject/refs: {} -Info 65 [00:02:05.000] FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 66 [00:02:06.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json -Info 67 [00:02:07.000] Scheduled: *ensureProjectForOpenFiles* -Info 68 [00:02:08.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 69 [00:02:09.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json :: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [00:02:10.000] Scheduled: /user/username/projects/myproject/c/tsconfig.jsonFailedLookupInvalidation -Info 71 [00:02:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json :: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 64 [00:02:04.000] FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 65 [00:02:05.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json +Info 66 [00:02:06.000] Scheduled: *ensureProjectForOpenFiles* +Info 67 [00:02:07.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 68 [00:02:08.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json :: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 69 [00:02:09.000] Scheduled: /user/username/projects/myproject/c/tsconfig.jsonFailedLookupInvalidation +Info 70 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json :: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/b/tsconfig.json] {"compilerOptions":{"composite":true,"baseUrl":"./","paths":{"@ref/*":["../*"]}},"references":[{"path":"../a"}]} @@ -332,9 +331,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/refs: {} -Info 72 [00:02:12.000] Running: /user/username/projects/myproject/c/tsconfig.json -Info 73 [00:02:13.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 74 [00:02:14.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 71 [00:02:11.000] Running: /user/username/projects/myproject/c/tsconfig.json +Info 72 [00:02:12.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 73 [00:02:13.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/index.ts" ], @@ -356,9 +355,9 @@ Info 74 [00:02:14.000] Config: /user/username/projects/myproject/b/tsconfig.js } ] } -Info 75 [00:02:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 76 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 77 [00:02:17.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 74 [00:02:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 75 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 76 [00:02:16.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -367,14 +366,14 @@ Info 77 [00:02:17.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 78 [00:02:18.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 79 [00:02:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 80 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 81 [00:02:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 82 [00:02:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 83 [00:02:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 84 [00:02:24.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 85 [00:02:25.000] Files (5) +Info 77 [00:02:17.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 78 [00:02:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 79 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 80 [00:02:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 81 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 82 [00:02:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 83 [00:02:23.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 84 [00:02:24.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/a/index.ts /user/username/projects/myproject/b/index.ts @@ -393,24 +392,24 @@ Info 85 [00:02:25.000] Files (5) index.ts Matched by default include pattern '**/*' -Info 86 [00:02:26.000] ----------------------------------------------- -Info 87 [00:02:27.000] Running: *ensureProjectForOpenFiles* -Info 88 [00:02:28.000] Before ensureProjectForOpenFiles: -Info 89 [00:02:29.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 89 [00:02:30.000] Files (5) - -Info 89 [00:02:31.000] ----------------------------------------------- -Info 89 [00:02:32.000] Open files: -Info 89 [00:02:33.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 89 [00:02:34.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 89 [00:02:35.000] After ensureProjectForOpenFiles: -Info 90 [00:02:36.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 90 [00:02:37.000] Files (5) - -Info 90 [00:02:38.000] ----------------------------------------------- -Info 90 [00:02:39.000] Open files: -Info 90 [00:02:40.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 90 [00:02:41.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 85 [00:02:25.000] ----------------------------------------------- +Info 86 [00:02:26.000] Running: *ensureProjectForOpenFiles* +Info 87 [00:02:27.000] Before ensureProjectForOpenFiles: +Info 88 [00:02:28.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 88 [00:02:29.000] Files (5) + +Info 88 [00:02:30.000] ----------------------------------------------- +Info 88 [00:02:31.000] Open files: +Info 88 [00:02:32.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 88 [00:02:33.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 88 [00:02:34.000] After ensureProjectForOpenFiles: +Info 89 [00:02:35.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 89 [00:02:36.000] Files (5) + +Info 89 [00:02:37.000] ----------------------------------------------- +Info 89 [00:02:38.000] Open files: +Info 89 [00:02:39.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 89 [00:02:40.000] Projects: /user/username/projects/myproject/c/tsconfig.json After checking timeout queue length (3) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-transitively-referenced-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-transitively-referenced-config-file.js index a4ca047037bd7..dcdd4ecf8e0c8 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-transitively-referenced-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-deleting-transitively-referenced-config-file.js @@ -73,9 +73,8 @@ Info 5 [00:00:44.000] Config: /user/username/projects/myproject/c/tsconfig.js } Info 6 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c 1 undefined Config: /user/username/projects/myproject/c/tsconfig.json WatchType: Wild card directory Info 7 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c 1 undefined Config: /user/username/projects/myproject/c/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 10 [00:00:49.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 8 [00:00:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 9 [00:00:48.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/index.ts" ], @@ -97,10 +96,10 @@ Info 10 [00:00:49.000] Config: /user/username/projects/myproject/b/tsconfig.js } ] } -Info 11 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 12 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 13 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:53.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 10 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 11 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 12 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:52.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -109,28 +108,28 @@ Info 14 [00:00:53.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 15 [00:00:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 16 [00:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 17 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 18 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 23 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info -Info 24 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info -Info 25 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 26 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 28 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 29 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 30 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 31 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 32 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 33 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 34 [00:01:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:14.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 36 [00:01:15.000] Files (5) +Info 14 [00:00:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 15 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 16 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 17 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 22 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info +Info 23 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info +Info 24 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 25 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 28 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 29 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 30 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 31 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 32 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 33 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:13.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 35 [00:01:14.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/a/index.ts /user/username/projects/myproject/b/index.ts @@ -149,24 +148,24 @@ Info 36 [00:01:15.000] Files (5) index.ts Matched by default include pattern '**/*' -Info 37 [00:01:16.000] ----------------------------------------------- -Info 38 [00:01:17.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 38 [00:01:18.000] Files (5) - -Info 38 [00:01:19.000] ----------------------------------------------- -Info 38 [00:01:20.000] Open files: -Info 38 [00:01:21.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 38 [00:01:22.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 38 [00:01:24.000] FileWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 39 [00:01:25.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json -Info 40 [00:01:26.000] Scheduled: *ensureProjectForOpenFiles* -Info 41 [00:01:27.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 42 [00:01:28.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json :: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 43 [00:01:29.000] Project: /user/username/projects/myproject/a/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/a/tsconfig.json -Info 44 [00:01:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json :: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 45 [00:01:31.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json :: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 46 [00:01:32.000] Scheduled: /user/username/projects/myproject/c/tsconfig.jsonFailedLookupInvalidation -Info 47 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json :: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 36 [00:01:15.000] ----------------------------------------------- +Info 37 [00:01:16.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 37 [00:01:17.000] Files (5) + +Info 37 [00:01:18.000] ----------------------------------------------- +Info 37 [00:01:19.000] Open files: +Info 37 [00:01:20.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 37 [00:01:21.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 37 [00:01:23.000] FileWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 38 [00:01:24.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json +Info 39 [00:01:25.000] Scheduled: *ensureProjectForOpenFiles* +Info 40 [00:01:26.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json 2:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 41 [00:01:27.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json :: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 42 [00:01:28.000] Project: /user/username/projects/myproject/a/tsconfig.json Detected file add/remove of non supported extension: /user/username/projects/myproject/a/tsconfig.json +Info 43 [00:01:29.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json :: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 44 [00:01:30.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json :: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 45 [00:01:31.000] Scheduled: /user/username/projects/myproject/c/tsconfig.jsonFailedLookupInvalidation +Info 46 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json :: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/a/tsconfig.json] deleted @@ -204,9 +203,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/refs: {} -Info 48 [00:01:34.000] Running: /user/username/projects/myproject/c/tsconfig.json -Info 49 [00:01:35.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 50 [00:01:36.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 47 [00:01:33.000] Running: /user/username/projects/myproject/c/tsconfig.json +Info 48 [00:01:34.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 49 [00:01:35.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -214,27 +213,27 @@ Info 50 [00:01:36.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 51 [00:01:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 52 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 53 [00:01:39.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 54 [00:01:40.000] Different program with same set of files -Info 55 [00:01:41.000] Running: *ensureProjectForOpenFiles* -Info 56 [00:01:42.000] Before ensureProjectForOpenFiles: -Info 57 [00:01:43.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 57 [00:01:44.000] Files (5) - -Info 57 [00:01:45.000] ----------------------------------------------- -Info 57 [00:01:46.000] Open files: -Info 57 [00:01:47.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 57 [00:01:48.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 57 [00:01:49.000] After ensureProjectForOpenFiles: -Info 58 [00:01:50.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 58 [00:01:51.000] Files (5) - -Info 58 [00:01:52.000] ----------------------------------------------- -Info 58 [00:01:53.000] Open files: -Info 58 [00:01:54.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 58 [00:01:55.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 50 [00:01:36.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 51 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 52 [00:01:38.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 53 [00:01:39.000] Different program with same set of files +Info 54 [00:01:40.000] Running: *ensureProjectForOpenFiles* +Info 55 [00:01:41.000] Before ensureProjectForOpenFiles: +Info 56 [00:01:42.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 56 [00:01:43.000] Files (5) + +Info 56 [00:01:44.000] ----------------------------------------------- +Info 56 [00:01:45.000] Open files: +Info 56 [00:01:46.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 56 [00:01:47.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 56 [00:01:48.000] After ensureProjectForOpenFiles: +Info 57 [00:01:49.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 57 [00:01:50.000] Files (5) + +Info 57 [00:01:51.000] ----------------------------------------------- +Info 57 [00:01:52.000] Open files: +Info 57 [00:01:53.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 57 [00:01:54.000] Projects: /user/username/projects/myproject/c/tsconfig.json After checking timeout queue length (3) and running PolledWatches:: @@ -271,13 +270,13 @@ FsWatchesRecursive:: /user/username/projects/myproject/refs: {} -Info 58 [00:01:58.000] FileWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 59 [00:01:59.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json -Info 60 [00:02:00.000] Scheduled: *ensureProjectForOpenFiles* -Info 61 [00:02:01.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 62 [00:02:02.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json :: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 63 [00:02:03.000] Scheduled: /user/username/projects/myproject/c/tsconfig.jsonFailedLookupInvalidation -Info 64 [00:02:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json :: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 57 [00:01:57.000] FileWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 58 [00:01:58.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json +Info 59 [00:01:59.000] Scheduled: *ensureProjectForOpenFiles* +Info 60 [00:02:00.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json 0:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 61 [00:02:01.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json :: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 62 [00:02:02.000] Scheduled: /user/username/projects/myproject/c/tsconfig.jsonFailedLookupInvalidation +Info 63 [00:02:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/a/tsconfig.json :: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations Before checking timeout queue length (3) and running //// [/user/username/projects/myproject/a/tsconfig.json] {"compilerOptions":{"composite":true}} @@ -317,9 +316,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/refs: {} -Info 65 [00:02:05.000] Running: /user/username/projects/myproject/c/tsconfig.json -Info 66 [00:02:06.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 67 [00:02:07.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 64 [00:02:04.000] Running: /user/username/projects/myproject/c/tsconfig.json +Info 65 [00:02:05.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 66 [00:02:06.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -328,27 +327,27 @@ Info 67 [00:02:07.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 68 [00:02:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 69 [00:02:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 70 [00:02:10.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 71 [00:02:11.000] Different program with same set of files -Info 72 [00:02:12.000] Running: *ensureProjectForOpenFiles* -Info 73 [00:02:13.000] Before ensureProjectForOpenFiles: -Info 74 [00:02:14.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 74 [00:02:15.000] Files (5) - -Info 74 [00:02:16.000] ----------------------------------------------- -Info 74 [00:02:17.000] Open files: -Info 74 [00:02:18.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 74 [00:02:19.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 74 [00:02:20.000] After ensureProjectForOpenFiles: -Info 75 [00:02:21.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 75 [00:02:22.000] Files (5) - -Info 75 [00:02:23.000] ----------------------------------------------- -Info 75 [00:02:24.000] Open files: -Info 75 [00:02:25.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 75 [00:02:26.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 67 [00:02:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 68 [00:02:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 69 [00:02:09.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 70 [00:02:10.000] Different program with same set of files +Info 71 [00:02:11.000] Running: *ensureProjectForOpenFiles* +Info 72 [00:02:12.000] Before ensureProjectForOpenFiles: +Info 73 [00:02:13.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 73 [00:02:14.000] Files (5) + +Info 73 [00:02:15.000] ----------------------------------------------- +Info 73 [00:02:16.000] Open files: +Info 73 [00:02:17.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 73 [00:02:18.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 73 [00:02:19.000] After ensureProjectForOpenFiles: +Info 74 [00:02:20.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 74 [00:02:21.000] Files (5) + +Info 74 [00:02:22.000] ----------------------------------------------- +Info 74 [00:02:23.000] Open files: +Info 74 [00:02:24.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 74 [00:02:25.000] Projects: /user/username/projects/myproject/c/tsconfig.json After checking timeout queue length (3) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-in-referenced-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-in-referenced-config-file.js index b3d8e172bb843..cad284e0a509f 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-in-referenced-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-in-referenced-config-file.js @@ -73,9 +73,8 @@ Info 5 [00:00:44.000] Config: /user/username/projects/myproject/c/tsconfig.js } Info 6 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c 1 undefined Config: /user/username/projects/myproject/c/tsconfig.json WatchType: Wild card directory Info 7 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c 1 undefined Config: /user/username/projects/myproject/c/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 10 [00:00:49.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 8 [00:00:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 9 [00:00:48.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/index.ts" ], @@ -97,10 +96,10 @@ Info 10 [00:00:49.000] Config: /user/username/projects/myproject/b/tsconfig.js } ] } -Info 11 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 12 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 13 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:53.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 10 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 11 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 12 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:52.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -109,28 +108,28 @@ Info 14 [00:00:53.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 15 [00:00:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 16 [00:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 17 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 18 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 23 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info -Info 24 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info -Info 25 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 26 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 28 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 29 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 30 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 31 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 32 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 33 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 34 [00:01:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:14.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 36 [00:01:15.000] Files (5) +Info 14 [00:00:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 15 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 16 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 17 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 22 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info +Info 23 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info +Info 24 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 25 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 28 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 29 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 30 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 31 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 32 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 33 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:13.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 35 [00:01:14.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/a/index.ts /user/username/projects/myproject/b/index.ts @@ -149,20 +148,20 @@ Info 36 [00:01:15.000] Files (5) index.ts Matched by default include pattern '**/*' -Info 37 [00:01:16.000] ----------------------------------------------- -Info 38 [00:01:17.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 38 [00:01:18.000] Files (5) - -Info 38 [00:01:19.000] ----------------------------------------------- -Info 38 [00:01:20.000] Open files: -Info 38 [00:01:21.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 38 [00:01:22.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 38 [00:01:26.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/nrefs :: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 39 [00:01:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/nrefs :: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 40 [00:01:32.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/c/tsconfig.json WatchType: Config file -Info 41 [00:01:33.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json -Info 42 [00:01:34.000] Scheduled: *ensureProjectForOpenFiles* -Info 43 [00:01:35.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 36 [00:01:15.000] ----------------------------------------------- +Info 37 [00:01:16.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 37 [00:01:17.000] Files (5) + +Info 37 [00:01:18.000] ----------------------------------------------- +Info 37 [00:01:19.000] Open files: +Info 37 [00:01:20.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 37 [00:01:21.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 37 [00:01:25.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/nrefs :: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 38 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/nrefs :: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 39 [00:01:31.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/c/tsconfig.json WatchType: Config file +Info 40 [00:01:32.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json +Info 41 [00:01:33.000] Scheduled: *ensureProjectForOpenFiles* +Info 42 [00:01:34.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/b/tsconfig.json] {"compilerOptions":{"composite":true,"baseUrl":"./","paths":{"@ref/*":["../nrefs/*"]}},"references":[{"path":"../a"}]} @@ -206,9 +205,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/refs: {} -Info 44 [00:01:36.000] Running: /user/username/projects/myproject/c/tsconfig.json -Info 45 [00:01:37.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 46 [00:01:38.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 43 [00:01:35.000] Running: /user/username/projects/myproject/c/tsconfig.json +Info 44 [00:01:36.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 45 [00:01:37.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/index.ts" ], @@ -230,14 +229,14 @@ Info 46 [00:01:38.000] Config: /user/username/projects/myproject/b/tsconfig.js } ] } -Info 47 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs/a.d.ts 500 undefined WatchType: Closed Script info -Info 48 [00:01:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 49 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 50 [00:01:42.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 51 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 52 [00:01:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 53 [00:01:45.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 54 [00:01:46.000] Files (5) +Info 46 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs/a.d.ts 500 undefined WatchType: Closed Script info +Info 47 [00:01:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 48 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 49 [00:01:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 50 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 51 [00:01:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 52 [00:01:44.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 53 [00:01:45.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/nrefs/a.d.ts /user/username/projects/myproject/b/index.ts @@ -256,24 +255,24 @@ Info 54 [00:01:46.000] Files (5) index.ts Matched by default include pattern '**/*' -Info 55 [00:01:47.000] ----------------------------------------------- -Info 56 [00:01:48.000] Running: *ensureProjectForOpenFiles* -Info 57 [00:01:49.000] Before ensureProjectForOpenFiles: -Info 58 [00:01:50.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 58 [00:01:51.000] Files (5) - -Info 58 [00:01:52.000] ----------------------------------------------- -Info 58 [00:01:53.000] Open files: -Info 58 [00:01:54.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 58 [00:01:55.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 58 [00:01:56.000] After ensureProjectForOpenFiles: -Info 59 [00:01:57.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 59 [00:01:58.000] Files (5) - -Info 59 [00:01:59.000] ----------------------------------------------- -Info 59 [00:02:00.000] Open files: -Info 59 [00:02:01.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 59 [00:02:02.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 54 [00:01:46.000] ----------------------------------------------- +Info 55 [00:01:47.000] Running: *ensureProjectForOpenFiles* +Info 56 [00:01:48.000] Before ensureProjectForOpenFiles: +Info 57 [00:01:49.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 57 [00:01:50.000] Files (5) + +Info 57 [00:01:51.000] ----------------------------------------------- +Info 57 [00:01:52.000] Open files: +Info 57 [00:01:53.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 57 [00:01:54.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 57 [00:01:55.000] After ensureProjectForOpenFiles: +Info 58 [00:01:56.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 58 [00:01:57.000] Files (5) + +Info 58 [00:01:58.000] ----------------------------------------------- +Info 58 [00:01:59.000] Open files: +Info 58 [00:02:00.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 58 [00:02:01.000] Projects: /user/username/projects/myproject/c/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -314,10 +313,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/nrefs: {} -Info 59 [00:02:06.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/c/tsconfig.json WatchType: Config file -Info 60 [00:02:07.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json -Info 61 [00:02:08.000] Scheduled: *ensureProjectForOpenFiles* -Info 62 [00:02:09.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 58 [00:02:05.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/c/tsconfig.json WatchType: Config file +Info 59 [00:02:06.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json +Info 60 [00:02:07.000] Scheduled: *ensureProjectForOpenFiles* +Info 61 [00:02:08.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/b/tsconfig.json] {"compilerOptions":{"composite":true,"baseUrl":"./","paths":{"@ref/*":["../*"]}},"references":[{"path":"../a"}]} @@ -361,9 +360,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/nrefs: {} -Info 63 [00:02:10.000] Running: /user/username/projects/myproject/c/tsconfig.json -Info 64 [00:02:11.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 65 [00:02:12.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 62 [00:02:09.000] Running: /user/username/projects/myproject/c/tsconfig.json +Info 63 [00:02:10.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 64 [00:02:11.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/index.ts" ], @@ -385,13 +384,13 @@ Info 65 [00:02:12.000] Config: /user/username/projects/myproject/b/tsconfig.js } ] } -Info 66 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 67 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 68 [00:02:15.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [00:02:17.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 71 [00:02:18.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 72 [00:02:19.000] Files (5) +Info 65 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 66 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 67 [00:02:14.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 68 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 69 [00:02:16.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 70 [00:02:17.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 71 [00:02:18.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/a/index.ts /user/username/projects/myproject/b/index.ts @@ -410,24 +409,24 @@ Info 72 [00:02:19.000] Files (5) index.ts Matched by default include pattern '**/*' -Info 73 [00:02:20.000] ----------------------------------------------- -Info 74 [00:02:21.000] Running: *ensureProjectForOpenFiles* -Info 75 [00:02:22.000] Before ensureProjectForOpenFiles: -Info 76 [00:02:23.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 76 [00:02:24.000] Files (5) - -Info 76 [00:02:25.000] ----------------------------------------------- -Info 76 [00:02:26.000] Open files: -Info 76 [00:02:27.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 76 [00:02:28.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 76 [00:02:29.000] After ensureProjectForOpenFiles: -Info 77 [00:02:30.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 77 [00:02:31.000] Files (5) - -Info 77 [00:02:32.000] ----------------------------------------------- -Info 77 [00:02:33.000] Open files: -Info 77 [00:02:34.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 77 [00:02:35.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 72 [00:02:19.000] ----------------------------------------------- +Info 73 [00:02:20.000] Running: *ensureProjectForOpenFiles* +Info 74 [00:02:21.000] Before ensureProjectForOpenFiles: +Info 75 [00:02:22.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 75 [00:02:23.000] Files (5) + +Info 75 [00:02:24.000] ----------------------------------------------- +Info 75 [00:02:25.000] Open files: +Info 75 [00:02:26.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 75 [00:02:27.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 75 [00:02:28.000] After ensureProjectForOpenFiles: +Info 76 [00:02:29.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 76 [00:02:30.000] Files (5) + +Info 76 [00:02:31.000] ----------------------------------------------- +Info 76 [00:02:32.000] Open files: +Info 76 [00:02:33.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 76 [00:02:34.000] Projects: /user/username/projects/myproject/c/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-on-config-file.js b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-on-config-file.js index 181dc95e32eae..784ddc48a7e48 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-on-config-file.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-edit-on-config-file.js @@ -73,9 +73,8 @@ Info 5 [00:00:44.000] Config: /user/username/projects/myproject/c/tsconfig.js } Info 6 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c 1 undefined Config: /user/username/projects/myproject/c/tsconfig.json WatchType: Wild card directory Info 7 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c 1 undefined Config: /user/username/projects/myproject/c/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 10 [00:00:49.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 8 [00:00:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 9 [00:00:48.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/index.ts" ], @@ -97,10 +96,10 @@ Info 10 [00:00:49.000] Config: /user/username/projects/myproject/b/tsconfig.js } ] } -Info 11 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 12 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 13 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:53.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 10 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 11 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 12 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:52.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -109,28 +108,28 @@ Info 14 [00:00:53.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 15 [00:00:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 16 [00:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 17 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 18 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 23 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info -Info 24 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info -Info 25 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 26 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 28 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 29 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 30 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 31 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 32 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 33 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 34 [00:01:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:14.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 36 [00:01:15.000] Files (5) +Info 14 [00:00:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 15 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 16 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 17 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 22 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info +Info 23 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info +Info 24 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 25 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 28 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 29 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 30 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 31 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 32 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 33 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:13.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 35 [00:01:14.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/a/index.ts /user/username/projects/myproject/b/index.ts @@ -149,20 +148,20 @@ Info 36 [00:01:15.000] Files (5) index.ts Matched by default include pattern '**/*' -Info 37 [00:01:16.000] ----------------------------------------------- -Info 38 [00:01:17.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 38 [00:01:18.000] Files (5) - -Info 38 [00:01:19.000] ----------------------------------------------- -Info 38 [00:01:20.000] Open files: -Info 38 [00:01:21.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 38 [00:01:22.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 38 [00:01:26.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/nrefs :: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 39 [00:01:27.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/nrefs :: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 40 [00:01:32.000] FileWatcher:: Triggered with /user/username/projects/myproject/c/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/c/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 41 [00:01:33.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json -Info 42 [00:01:34.000] Scheduled: *ensureProjectForOpenFiles* -Info 43 [00:01:35.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/c/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/c/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 36 [00:01:15.000] ----------------------------------------------- +Info 37 [00:01:16.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 37 [00:01:17.000] Files (5) + +Info 37 [00:01:18.000] ----------------------------------------------- +Info 37 [00:01:19.000] Open files: +Info 37 [00:01:20.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 37 [00:01:21.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 37 [00:01:25.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/nrefs :: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 38 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/nrefs :: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 39 [00:01:31.000] FileWatcher:: Triggered with /user/username/projects/myproject/c/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/c/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 40 [00:01:32.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json +Info 41 [00:01:33.000] Scheduled: *ensureProjectForOpenFiles* +Info 42 [00:01:34.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/c/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/c/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/c/tsconfig.json] {"compilerOptions":{"baseUrl":"./","paths":{"@ref/*":["../nrefs/*"]}},"references":[{"path":"../b"}]} @@ -206,9 +205,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/refs: {} -Info 44 [00:01:36.000] Running: /user/username/projects/myproject/c/tsconfig.json -Info 45 [00:01:37.000] Reloading configured project /user/username/projects/myproject/c/tsconfig.json -Info 46 [00:01:38.000] Config: /user/username/projects/myproject/c/tsconfig.json : { +Info 43 [00:01:35.000] Running: /user/username/projects/myproject/c/tsconfig.json +Info 44 [00:01:36.000] Reloading configured project /user/username/projects/myproject/c/tsconfig.json +Info 45 [00:01:37.000] Config: /user/username/projects/myproject/c/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/c/index.ts" ], @@ -229,36 +228,35 @@ Info 46 [00:01:38.000] Config: /user/username/projects/myproject/c/tsconfig.js } ] } -Info 47 [00:01:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 48 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 49 [00:01:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 50 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 51 [00:01:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 52 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 53 [00:01:45.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 54 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 55 [00:01:47.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 56 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 57 [00:01:49.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 58 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 59 [00:01:51.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 60 [00:01:52.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 61 [00:01:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 62 [00:01:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 63 [00:01:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 64 [00:01:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 65 [00:01:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs/a.d.ts 500 undefined WatchType: Closed Script info -Info 66 [00:01:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 67 [00:01:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 68 [00:02:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [00:02:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [00:02:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 71 [00:02:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 72 [00:02:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 73 [00:02:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 74 [00:02:06.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 75 [00:02:07.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 76 [00:02:08.000] Files (5) +Info 46 [00:01:38.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 47 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 48 [00:01:40.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 49 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 50 [00:01:42.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 51 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 52 [00:01:44.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 53 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 54 [00:01:46.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 55 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 56 [00:01:48.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 57 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 58 [00:01:50.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 59 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 60 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 61 [00:01:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 62 [00:01:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 63 [00:01:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs/a.d.ts 500 undefined WatchType: Closed Script info +Info 64 [00:01:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:01:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 66 [00:01:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 67 [00:01:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 68 [00:02:00.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 69 [00:02:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 70 [00:02:02.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 71 [00:02:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 72 [00:02:04.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 73 [00:02:05.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 74 [00:02:06.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/a/index.ts /user/username/projects/myproject/b/index.ts @@ -277,24 +275,24 @@ Info 76 [00:02:08.000] Files (5) index.ts Matched by default include pattern '**/*' -Info 77 [00:02:09.000] ----------------------------------------------- -Info 78 [00:02:10.000] Running: *ensureProjectForOpenFiles* -Info 79 [00:02:11.000] Before ensureProjectForOpenFiles: -Info 80 [00:02:12.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 80 [00:02:13.000] Files (5) - -Info 80 [00:02:14.000] ----------------------------------------------- -Info 80 [00:02:15.000] Open files: -Info 80 [00:02:16.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 80 [00:02:17.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 80 [00:02:18.000] After ensureProjectForOpenFiles: -Info 81 [00:02:19.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 81 [00:02:20.000] Files (5) - -Info 81 [00:02:21.000] ----------------------------------------------- -Info 81 [00:02:22.000] Open files: -Info 81 [00:02:23.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 81 [00:02:24.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 75 [00:02:07.000] ----------------------------------------------- +Info 76 [00:02:08.000] Running: *ensureProjectForOpenFiles* +Info 77 [00:02:09.000] Before ensureProjectForOpenFiles: +Info 78 [00:02:10.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 78 [00:02:11.000] Files (5) + +Info 78 [00:02:12.000] ----------------------------------------------- +Info 78 [00:02:13.000] Open files: +Info 78 [00:02:14.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 78 [00:02:15.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 78 [00:02:16.000] After ensureProjectForOpenFiles: +Info 79 [00:02:17.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 79 [00:02:18.000] Files (5) + +Info 79 [00:02:19.000] ----------------------------------------------- +Info 79 [00:02:20.000] Open files: +Info 79 [00:02:21.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 79 [00:02:22.000] Projects: /user/username/projects/myproject/c/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: @@ -333,10 +331,10 @@ FsWatchesRecursive:: /user/username/projects/myproject/nrefs: {} -Info 81 [00:02:28.000] FileWatcher:: Triggered with /user/username/projects/myproject/c/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/c/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 82 [00:02:29.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json -Info 83 [00:02:30.000] Scheduled: *ensureProjectForOpenFiles* -Info 84 [00:02:31.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/c/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/c/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 79 [00:02:26.000] FileWatcher:: Triggered with /user/username/projects/myproject/c/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/c/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 80 [00:02:27.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json +Info 81 [00:02:28.000] Scheduled: *ensureProjectForOpenFiles* +Info 82 [00:02:29.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/c/tsconfig.json 1:: WatchInfo: /user/username/projects/myproject/c/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/c/tsconfig.json] {"compilerOptions":{"baseUrl":"./","paths":{"@ref/*":["../refs/*"]}},"references":[{"path":"../b"}]} @@ -378,9 +376,9 @@ FsWatchesRecursive:: /user/username/projects/myproject/nrefs: {} -Info 85 [00:02:32.000] Running: /user/username/projects/myproject/c/tsconfig.json -Info 86 [00:02:33.000] Reloading configured project /user/username/projects/myproject/c/tsconfig.json -Info 87 [00:02:34.000] Config: /user/username/projects/myproject/c/tsconfig.json : { +Info 83 [00:02:30.000] Running: /user/username/projects/myproject/c/tsconfig.json +Info 84 [00:02:31.000] Reloading configured project /user/username/projects/myproject/c/tsconfig.json +Info 85 [00:02:32.000] Config: /user/username/projects/myproject/c/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/c/index.ts" ], @@ -401,35 +399,34 @@ Info 87 [00:02:34.000] Config: /user/username/projects/myproject/c/tsconfig.js } ] } -Info 88 [00:02:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 89 [00:02:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 90 [00:02:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 91 [00:02:38.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 92 [00:02:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 93 [00:02:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 94 [00:02:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 95 [00:02:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 96 [00:02:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 97 [00:02:44.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 98 [00:02:45.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 99 [00:02:46.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 100 [00:02:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 101 [00:02:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 102 [00:02:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 103 [00:02:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 104 [00:02:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 105 [00:02:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 106 [00:02:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 107 [00:02:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 108 [00:02:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 109 [00:02:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 110 [00:02:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 111 [00:02:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 112 [00:02:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 113 [00:03:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 114 [00:03:01.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 115 [00:03:02.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 116 [00:03:03.000] Files (5) +Info 86 [00:02:33.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 87 [00:02:34.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 88 [00:02:35.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 89 [00:02:36.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 90 [00:02:37.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 91 [00:02:38.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/nrefs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 92 [00:02:39.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 93 [00:02:40.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 94 [00:02:41.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 95 [00:02:42.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 96 [00:02:43.000] DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 97 [00:02:44.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 98 [00:02:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 99 [00:02:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 100 [00:02:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 101 [00:02:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 102 [00:02:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 103 [00:02:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 104 [00:02:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 105 [00:02:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 106 [00:02:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 107 [00:02:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 108 [00:02:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 109 [00:02:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 110 [00:02:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 111 [00:02:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 112 [00:02:59.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 113 [00:03:00.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/a/index.ts /user/username/projects/myproject/b/index.ts @@ -448,24 +445,24 @@ Info 116 [00:03:03.000] Files (5) index.ts Matched by default include pattern '**/*' -Info 117 [00:03:04.000] ----------------------------------------------- -Info 118 [00:03:05.000] Running: *ensureProjectForOpenFiles* -Info 119 [00:03:06.000] Before ensureProjectForOpenFiles: -Info 120 [00:03:07.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 120 [00:03:08.000] Files (5) - -Info 120 [00:03:09.000] ----------------------------------------------- -Info 120 [00:03:10.000] Open files: -Info 120 [00:03:11.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 120 [00:03:12.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 120 [00:03:13.000] After ensureProjectForOpenFiles: -Info 121 [00:03:14.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 121 [00:03:15.000] Files (5) - -Info 121 [00:03:16.000] ----------------------------------------------- -Info 121 [00:03:17.000] Open files: -Info 121 [00:03:18.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 121 [00:03:19.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 114 [00:03:01.000] ----------------------------------------------- +Info 115 [00:03:02.000] Running: *ensureProjectForOpenFiles* +Info 116 [00:03:03.000] Before ensureProjectForOpenFiles: +Info 117 [00:03:04.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 117 [00:03:05.000] Files (5) + +Info 117 [00:03:06.000] ----------------------------------------------- +Info 117 [00:03:07.000] Open files: +Info 117 [00:03:08.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 117 [00:03:09.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 117 [00:03:10.000] After ensureProjectForOpenFiles: +Info 118 [00:03:11.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 118 [00:03:12.000] Files (5) + +Info 118 [00:03:13.000] ----------------------------------------------- +Info 118 [00:03:14.000] Open files: +Info 118 [00:03:15.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 118 [00:03:16.000] Projects: /user/username/projects/myproject/c/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-non-local-edit.js b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-non-local-edit.js index 9b2dd326f9391..b4db7302399cf 100644 --- a/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-non-local-edit.js +++ b/tests/baselines/reference/tsserver/projectsWithReferences/trasitive-references-without-files-with-non-local-edit.js @@ -73,9 +73,8 @@ Info 5 [00:00:44.000] Config: /user/username/projects/myproject/c/tsconfig.js } Info 6 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c 1 undefined Config: /user/username/projects/myproject/c/tsconfig.json WatchType: Wild card directory Info 7 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c 1 undefined Config: /user/username/projects/myproject/c/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:47.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:48.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 10 [00:00:49.000] Config: /user/username/projects/myproject/b/tsconfig.json : { +Info 8 [00:00:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 9 [00:00:48.000] Config: /user/username/projects/myproject/b/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/b/index.ts" ], @@ -97,10 +96,10 @@ Info 10 [00:00:49.000] Config: /user/username/projects/myproject/b/tsconfig.js } ] } -Info 11 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 12 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 13 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory -Info 14 [00:00:53.000] Config: /user/username/projects/myproject/a/tsconfig.json : { +Info 10 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 11 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 12 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Config: /user/username/projects/myproject/b/tsconfig.json WatchType: Wild card directory +Info 13 [00:00:52.000] Config: /user/username/projects/myproject/a/tsconfig.json : { "rootNames": [ "/user/username/projects/myproject/a/index.ts" ], @@ -109,28 +108,28 @@ Info 14 [00:00:53.000] Config: /user/username/projects/myproject/a/tsconfig.js "configFilePath": "/user/username/projects/myproject/a/tsconfig.json" } } -Info 15 [00:00:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file -Info 16 [00:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 17 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory -Info 18 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 23 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info -Info 24 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info -Info 25 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 26 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 28 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 29 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations -Info 30 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 31 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 32 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 33 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots -Info 34 [00:01:13.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 35 [00:01:14.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 36 [00:01:15.000] Files (5) +Info 14 [00:00:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/tsconfig.json 2000 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Config file +Info 15 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 16 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Config: /user/username/projects/myproject/a/tsconfig.json WatchType: Wild card directory +Info 17 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 22 [00:01:01.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a/index.ts 500 undefined WatchType: Closed Script info +Info 23 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs/a.d.ts 500 undefined WatchType: Closed Script info +Info 24 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 25 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/refs 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 27 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 28 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/a 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Failed Lookup Locations +Info 29 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 30 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/c/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 31 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 32 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/c/tsconfig.json WatchType: Type roots +Info 33 [00:01:12.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 34 [00:01:13.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 35 [00:01:14.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/a/index.ts /user/username/projects/myproject/b/index.ts @@ -149,18 +148,18 @@ Info 36 [00:01:15.000] Files (5) index.ts Matched by default include pattern '**/*' -Info 37 [00:01:16.000] ----------------------------------------------- -Info 38 [00:01:17.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 38 [00:01:18.000] Files (5) +Info 36 [00:01:15.000] ----------------------------------------------- +Info 37 [00:01:16.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 37 [00:01:17.000] Files (5) -Info 38 [00:01:19.000] ----------------------------------------------- -Info 38 [00:01:20.000] Open files: -Info 38 [00:01:21.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 38 [00:01:22.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 38 [00:01:25.000] FileWatcher:: Triggered with /user/username/projects/myproject/b/index.ts 1:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info -Info 39 [00:01:26.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json -Info 40 [00:01:27.000] Scheduled: *ensureProjectForOpenFiles* -Info 41 [00:01:28.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/index.ts 1:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 37 [00:01:18.000] ----------------------------------------------- +Info 37 [00:01:19.000] Open files: +Info 37 [00:01:20.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 37 [00:01:21.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 37 [00:01:24.000] FileWatcher:: Triggered with /user/username/projects/myproject/b/index.ts 1:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info +Info 38 [00:01:25.000] Scheduled: /user/username/projects/myproject/c/tsconfig.json +Info 39 [00:01:26.000] Scheduled: *ensureProjectForOpenFiles* +Info 40 [00:01:27.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/b/index.ts 1:: WatchInfo: /user/username/projects/myproject/b/index.ts 500 undefined WatchType: Closed Script info Before checking timeout queue length (2) and running //// [/user/username/projects/myproject/b/index.ts] import {A} from '@ref/a'; @@ -201,27 +200,27 @@ FsWatchesRecursive:: /user/username/projects/myproject/refs: {} -Info 42 [00:01:29.000] Running: /user/username/projects/myproject/c/tsconfig.json -Info 43 [00:01:30.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json -Info 44 [00:01:31.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms -Info 45 [00:01:32.000] Different program with same set of files -Info 46 [00:01:33.000] Running: *ensureProjectForOpenFiles* -Info 47 [00:01:34.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:35.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 48 [00:01:36.000] Files (5) +Info 41 [00:01:28.000] Running: /user/username/projects/myproject/c/tsconfig.json +Info 42 [00:01:29.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json +Info 43 [00:01:30.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/c/tsconfig.json Version: 2 structureChanged: false structureIsReused:: Completely Elapsed:: *ms +Info 44 [00:01:31.000] Different program with same set of files +Info 45 [00:01:32.000] Running: *ensureProjectForOpenFiles* +Info 46 [00:01:33.000] Before ensureProjectForOpenFiles: +Info 47 [00:01:34.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 47 [00:01:35.000] Files (5) -Info 48 [00:01:37.000] ----------------------------------------------- -Info 48 [00:01:38.000] Open files: -Info 48 [00:01:39.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 48 [00:01:40.000] Projects: /user/username/projects/myproject/c/tsconfig.json -Info 48 [00:01:41.000] After ensureProjectForOpenFiles: -Info 49 [00:01:42.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) -Info 49 [00:01:43.000] Files (5) +Info 47 [00:01:36.000] ----------------------------------------------- +Info 47 [00:01:37.000] Open files: +Info 47 [00:01:38.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 47 [00:01:39.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 47 [00:01:40.000] After ensureProjectForOpenFiles: +Info 48 [00:01:41.000] Project '/user/username/projects/myproject/c/tsconfig.json' (Configured) +Info 48 [00:01:42.000] Files (5) -Info 49 [00:01:44.000] ----------------------------------------------- -Info 49 [00:01:45.000] Open files: -Info 49 [00:01:46.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined -Info 49 [00:01:47.000] Projects: /user/username/projects/myproject/c/tsconfig.json +Info 48 [00:01:43.000] ----------------------------------------------- +Info 48 [00:01:44.000] Open files: +Info 48 [00:01:45.000] FileName: /user/username/projects/myproject/c/index.ts ProjectRootPath: undefined +Info 48 [00:01:46.000] Projects: /user/username/projects/myproject/c/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/resolutionCache/avoid-unnecessary-lookup-invalidation-on-save.js b/tests/baselines/reference/tsserver/resolutionCache/avoid-unnecessary-lookup-invalidation-on-save.js index 39b5d639dbdc5..fbea990af19b1 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/avoid-unnecessary-lookup-invalidation-on-save.js +++ b/tests/baselines/reference/tsserver/resolutionCache/avoid-unnecessary-lookup-invalidation-on-save.js @@ -47,46 +47,45 @@ Info 5 [00:00:40.000] Config: /user/username/projects/myproject/tsconfig.json } Info 6 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 7 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:43.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 10 [00:00:45.000] ======== Resolving module 'module1' from '/user/username/projects/myproject/src/file1.ts'. ======== -Info 11 [00:00:46.000] Module resolution kind is not specified, using 'NodeJs'. -Info 12 [00:00:47.000] Loading module 'module1' from 'node_modules' folder, target file type 'TypeScript'. -Info 13 [00:00:48.000] File '/user/username/projects/myproject/src/node_modules/module1/package.json' does not exist. -Info 14 [00:00:49.000] File '/user/username/projects/myproject/src/node_modules/module1.ts' does not exist. -Info 15 [00:00:50.000] File '/user/username/projects/myproject/src/node_modules/module1.tsx' does not exist. -Info 16 [00:00:51.000] File '/user/username/projects/myproject/src/node_modules/module1.d.ts' does not exist. -Info 17 [00:00:52.000] File '/user/username/projects/myproject/src/node_modules/module1/index.ts' exist - use it as a name resolution result. -Info 18 [00:00:53.000] Resolving real path for '/user/username/projects/myproject/src/node_modules/module1/index.ts', result '/user/username/projects/myproject/src/node_modules/module1/index.ts'. -Info 19 [00:00:54.000] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/src/node_modules/module1/index.ts'. ======== -Info 20 [00:00:55.000] ======== Resolving module 'module2' from '/user/username/projects/myproject/src/file1.ts'. ======== -Info 21 [00:00:56.000] Module resolution kind is not specified, using 'NodeJs'. -Info 22 [00:00:57.000] Loading module 'module2' from 'node_modules' folder, target file type 'TypeScript'. -Info 23 [00:00:58.000] File '/user/username/projects/myproject/src/node_modules/module2.ts' does not exist. -Info 24 [00:00:59.000] File '/user/username/projects/myproject/src/node_modules/module2.tsx' does not exist. -Info 25 [00:01:00.000] File '/user/username/projects/myproject/src/node_modules/module2.d.ts' does not exist. -Info 26 [00:01:01.000] Directory '/user/username/projects/myproject/src/node_modules/@types' does not exist, skipping all lookups in it. -Info 27 [00:01:02.000] File '/user/username/projects/myproject/node_modules/module2/package.json' does not exist. -Info 28 [00:01:03.000] File '/user/username/projects/myproject/node_modules/module2.ts' does not exist. -Info 29 [00:01:04.000] File '/user/username/projects/myproject/node_modules/module2.tsx' does not exist. -Info 30 [00:01:05.000] File '/user/username/projects/myproject/node_modules/module2.d.ts' does not exist. -Info 31 [00:01:06.000] File '/user/username/projects/myproject/node_modules/module2/index.ts' exist - use it as a name resolution result. -Info 32 [00:01:07.000] Resolving real path for '/user/username/projects/myproject/node_modules/module2/index.ts', result '/user/username/projects/myproject/node_modules/module2/index.ts'. -Info 33 [00:01:08.000] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== -Info 34 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 35 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 36 [00:01:11.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 37 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 38 [00:01:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 39 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 40 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 41 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 42 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 43 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 44 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 45 [00:01:20.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 46 [00:01:21.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 47 [00:01:22.000] Files (4) +Info 8 [00:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 9 [00:00:44.000] ======== Resolving module 'module1' from '/user/username/projects/myproject/src/file1.ts'. ======== +Info 10 [00:00:45.000] Module resolution kind is not specified, using 'NodeJs'. +Info 11 [00:00:46.000] Loading module 'module1' from 'node_modules' folder, target file type 'TypeScript'. +Info 12 [00:00:47.000] File '/user/username/projects/myproject/src/node_modules/module1/package.json' does not exist. +Info 13 [00:00:48.000] File '/user/username/projects/myproject/src/node_modules/module1.ts' does not exist. +Info 14 [00:00:49.000] File '/user/username/projects/myproject/src/node_modules/module1.tsx' does not exist. +Info 15 [00:00:50.000] File '/user/username/projects/myproject/src/node_modules/module1.d.ts' does not exist. +Info 16 [00:00:51.000] File '/user/username/projects/myproject/src/node_modules/module1/index.ts' exist - use it as a name resolution result. +Info 17 [00:00:52.000] Resolving real path for '/user/username/projects/myproject/src/node_modules/module1/index.ts', result '/user/username/projects/myproject/src/node_modules/module1/index.ts'. +Info 18 [00:00:53.000] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/src/node_modules/module1/index.ts'. ======== +Info 19 [00:00:54.000] ======== Resolving module 'module2' from '/user/username/projects/myproject/src/file1.ts'. ======== +Info 20 [00:00:55.000] Module resolution kind is not specified, using 'NodeJs'. +Info 21 [00:00:56.000] Loading module 'module2' from 'node_modules' folder, target file type 'TypeScript'. +Info 22 [00:00:57.000] File '/user/username/projects/myproject/src/node_modules/module2.ts' does not exist. +Info 23 [00:00:58.000] File '/user/username/projects/myproject/src/node_modules/module2.tsx' does not exist. +Info 24 [00:00:59.000] File '/user/username/projects/myproject/src/node_modules/module2.d.ts' does not exist. +Info 25 [00:01:00.000] Directory '/user/username/projects/myproject/src/node_modules/@types' does not exist, skipping all lookups in it. +Info 26 [00:01:01.000] File '/user/username/projects/myproject/node_modules/module2/package.json' does not exist. +Info 27 [00:01:02.000] File '/user/username/projects/myproject/node_modules/module2.ts' does not exist. +Info 28 [00:01:03.000] File '/user/username/projects/myproject/node_modules/module2.tsx' does not exist. +Info 29 [00:01:04.000] File '/user/username/projects/myproject/node_modules/module2.d.ts' does not exist. +Info 30 [00:01:05.000] File '/user/username/projects/myproject/node_modules/module2/index.ts' exist - use it as a name resolution result. +Info 31 [00:01:06.000] Resolving real path for '/user/username/projects/myproject/node_modules/module2/index.ts', result '/user/username/projects/myproject/node_modules/module2/index.ts'. +Info 32 [00:01:07.000] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== +Info 33 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 34 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 35 [00:01:10.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 36 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 37 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 38 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 39 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 40 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 41 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 42 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 43 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 44 [00:01:19.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 45 [00:01:20.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 46 [00:01:21.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/node_modules/module1/index.ts /user/username/projects/myproject/node_modules/module2/index.ts @@ -102,22 +101,22 @@ Info 47 [00:01:22.000] Files (4) src/file1.ts Matched by default include pattern '**/*' -Info 48 [00:01:23.000] ----------------------------------------------- -Info 49 [00:01:24.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 49 [00:01:25.000] Files (4) - -Info 49 [00:01:26.000] ----------------------------------------------- -Info 49 [00:01:27.000] Open files: -Info 49 [00:01:28.000] FileName: /user/username/projects/myproject/src/file1.ts ProjectRootPath: undefined -Info 49 [00:01:29.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 49 [00:01:31.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/file1.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 50 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/file1.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 51 [00:01:33.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/file1.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 52 [00:01:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/file1.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 53 [00:01:37.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/file1.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 54 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/file1.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 55 [00:01:39.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/file1.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 56 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/file1.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 47 [00:01:22.000] ----------------------------------------------- +Info 48 [00:01:23.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 48 [00:01:24.000] Files (4) + +Info 48 [00:01:25.000] ----------------------------------------------- +Info 48 [00:01:26.000] Open files: +Info 48 [00:01:27.000] FileName: /user/username/projects/myproject/src/file1.ts ProjectRootPath: undefined +Info 48 [00:01:28.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 48 [00:01:30.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/file1.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 49 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/file1.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 50 [00:01:32.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/file1.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 51 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/file1.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 52 [00:01:36.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/file1.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 53 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/file1.ts :: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 54 [00:01:38.000] DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/file1.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory +Info 55 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myproject/src/file1.ts :: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Before checking timeout queue length (0) and running //// [/user/username/projects/myproject/src/file1.ts] file changed its modified time diff --git a/tests/baselines/reference/tsserver/resolutionCache/can-load-typings-that-are-proper-modules.js b/tests/baselines/reference/tsserver/resolutionCache/can-load-typings-that-are-proper-modules.js index 1e88853db4b4b..c0a67bdb3bab0 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/can-load-typings-that-are-proper-modules.js +++ b/tests/baselines/reference/tsserver/resolutionCache/can-load-typings-that-are-proper-modules.js @@ -15,32 +15,31 @@ FsWatchesRecursive:: Info 1 [00:00:20.000] Search path: /a/b Info 2 [00:00:21.000] For info: /a/b/app.js :: No config files found. -Info 3 [00:00:22.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 4 [00:00:23.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 5 [00:00:24.000] ======== Resolving module 'lib' from '/a/b/app.js'. ======== -Info 6 [00:00:25.000] Module resolution kind is not specified, using 'NodeJs'. -Info 7 [00:00:26.000] Loading module 'lib' from 'node_modules' folder, target file type 'TypeScript'. -Info 8 [00:00:27.000] Directory '/a/b/node_modules' does not exist, skipping all lookups in it. -Info 9 [00:00:28.000] Directory '/a/node_modules' does not exist, skipping all lookups in it. -Info 10 [00:00:29.000] Directory '/node_modules' does not exist, skipping all lookups in it. -Info 11 [00:00:30.000] Loading module 'lib' from 'node_modules' folder, target file type 'JavaScript'. -Info 12 [00:00:31.000] Directory '/a/b/node_modules' does not exist, skipping all lookups in it. -Info 13 [00:00:32.000] Directory '/a/node_modules' does not exist, skipping all lookups in it. -Info 14 [00:00:33.000] Directory '/node_modules' does not exist, skipping all lookups in it. -Info 15 [00:00:34.000] ======== Module name 'lib' was not resolved. ======== -Info 16 [00:00:35.000] Auto discovery for typings is enabled in project '/dev/null/inferredProject1*'. Running extra resolution pass for module 'lib' using cache location '/a/cache'. -Info 17 [00:00:36.000] File '/a/cache/node_modules/lib.d.ts' does not exist. -Info 18 [00:00:37.000] File '/a/cache/node_modules/@types/lib/package.json' does not exist. -Info 19 [00:00:38.000] File '/a/cache/node_modules/@types/lib.d.ts' does not exist. -Info 20 [00:00:39.000] File '/a/cache/node_modules/@types/lib/index.d.ts' exist - use it as a name resolution result. -Info 21 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 22 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 23 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 24 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 25 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 26 [00:00:45.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 27 [00:00:46.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 28 [00:00:47.000] Files (2) +Info 3 [00:00:22.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 4 [00:00:23.000] ======== Resolving module 'lib' from '/a/b/app.js'. ======== +Info 5 [00:00:24.000] Module resolution kind is not specified, using 'NodeJs'. +Info 6 [00:00:25.000] Loading module 'lib' from 'node_modules' folder, target file type 'TypeScript'. +Info 7 [00:00:26.000] Directory '/a/b/node_modules' does not exist, skipping all lookups in it. +Info 8 [00:00:27.000] Directory '/a/node_modules' does not exist, skipping all lookups in it. +Info 9 [00:00:28.000] Directory '/node_modules' does not exist, skipping all lookups in it. +Info 10 [00:00:29.000] Loading module 'lib' from 'node_modules' folder, target file type 'JavaScript'. +Info 11 [00:00:30.000] Directory '/a/b/node_modules' does not exist, skipping all lookups in it. +Info 12 [00:00:31.000] Directory '/a/node_modules' does not exist, skipping all lookups in it. +Info 13 [00:00:32.000] Directory '/node_modules' does not exist, skipping all lookups in it. +Info 14 [00:00:33.000] ======== Module name 'lib' was not resolved. ======== +Info 15 [00:00:34.000] Auto discovery for typings is enabled in project '/dev/null/inferredProject1*'. Running extra resolution pass for module 'lib' using cache location '/a/cache'. +Info 16 [00:00:35.000] File '/a/cache/node_modules/lib.d.ts' does not exist. +Info 17 [00:00:36.000] File '/a/cache/node_modules/@types/lib/package.json' does not exist. +Info 18 [00:00:37.000] File '/a/cache/node_modules/@types/lib.d.ts' does not exist. +Info 19 [00:00:38.000] File '/a/cache/node_modules/@types/lib/index.d.ts' exist - use it as a name resolution result. +Info 20 [00:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 21 [00:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 22 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 23 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 24 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 25 [00:00:44.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 26 [00:00:45.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 27 [00:00:46.000] Files (2) /a/cache/node_modules/@types/lib/index.d.ts /a/b/app.js @@ -50,11 +49,11 @@ Info 28 [00:00:47.000] Files (2) app.js Root file specified for compilation -Info 29 [00:00:48.000] ----------------------------------------------- -Info 30 [00:00:49.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 30 [00:00:50.000] Files (2) +Info 28 [00:00:47.000] ----------------------------------------------- +Info 29 [00:00:48.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 29 [00:00:49.000] Files (2) -Info 30 [00:00:51.000] ----------------------------------------------- -Info 30 [00:00:52.000] Open files: -Info 30 [00:00:53.000] FileName: /a/b/app.js ProjectRootPath: undefined -Info 30 [00:00:54.000] Projects: /dev/null/inferredProject1* \ No newline at end of file +Info 29 [00:00:50.000] ----------------------------------------------- +Info 29 [00:00:51.000] Open files: +Info 29 [00:00:52.000] FileName: /a/b/app.js ProjectRootPath: undefined +Info 29 [00:00:53.000] Projects: /dev/null/inferredProject1* \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/resolutionCache/disable-suggestion-diagnostics.js b/tests/baselines/reference/tsserver/resolutionCache/disable-suggestion-diagnostics.js index f813b576ec1bb..a02dcf82aafbf 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/disable-suggestion-diagnostics.js +++ b/tests/baselines/reference/tsserver/resolutionCache/disable-suggestion-diagnostics.js @@ -22,28 +22,27 @@ FsWatchesRecursive:: Info 2 [00:00:07.000] Search path: / Info 3 [00:00:08.000] For info: /a.js :: No config files found. -Info 4 [00:00:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 5 [00:00:10.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 6 [00:00:11.000] DirectoryWatcher:: Added:: WatchInfo: /node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 7 [00:00:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 8 [00:00:13.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 9 [00:00:14.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 10 [00:00:15.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 11 [00:00:16.000] Files (1) +Info 4 [00:00:09.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 5 [00:00:10.000] DirectoryWatcher:: Added:: WatchInfo: /node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 6 [00:00:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 7 [00:00:12.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 8 [00:00:13.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 9 [00:00:14.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 10 [00:00:15.000] Files (1) /a.js a.js Root file specified for compilation -Info 12 [00:00:17.000] ----------------------------------------------- -Info 13 [00:00:18.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 13 [00:00:19.000] Files (1) +Info 11 [00:00:16.000] ----------------------------------------------- +Info 12 [00:00:17.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 12 [00:00:18.000] Files (1) -Info 13 [00:00:20.000] ----------------------------------------------- -Info 13 [00:00:21.000] Open files: -Info 13 [00:00:22.000] FileName: /a.js ProjectRootPath: undefined -Info 13 [00:00:23.000] Projects: /dev/null/inferredProject1* +Info 12 [00:00:19.000] ----------------------------------------------- +Info 12 [00:00:20.000] Open files: +Info 12 [00:00:21.000] FileName: /a.js ProjectRootPath: undefined +Info 12 [00:00:22.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -58,11 +57,11 @@ FsWatches:: FsWatchesRecursive:: -Info 13 [00:00:24.000] response: +Info 12 [00:00:23.000] response: { "responseRequired": false } -Info 14 [00:00:25.000] request: +Info 13 [00:00:24.000] request: { "command": "configure", "arguments": { @@ -87,7 +86,7 @@ FsWatches:: FsWatchesRecursive:: -Info 15 [00:00:26.000] response: +Info 14 [00:00:25.000] response: {"seq":0,"type":"response","command":"configure","request_seq":2,"success":true,"performanceData":{"updateGraphDurationMs":*}} After request @@ -103,7 +102,7 @@ FsWatches:: FsWatchesRecursive:: -Info 16 [00:00:27.000] response: +Info 15 [00:00:26.000] response: { "responseRequired": false } @@ -121,7 +120,7 @@ FsWatches:: FsWatchesRecursive:: -Info 17 [00:00:28.000] request: +Info 16 [00:00:27.000] request: { "command": "geterr", "arguments": { @@ -161,7 +160,7 @@ FsWatches:: FsWatchesRecursive:: -Info 18 [00:00:29.000] response: +Info 17 [00:00:28.000] response: { "responseRequired": false } @@ -179,7 +178,7 @@ FsWatches:: FsWatchesRecursive:: -Info 19 [00:00:30.000] event: +Info 18 [00:00:29.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/a.js","diagnostics":[]}} After checking timeout queue length (1) and running @@ -209,9 +208,9 @@ FsWatches:: FsWatchesRecursive:: -Info 20 [00:00:31.000] event: +Info 19 [00:00:30.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/a.js","diagnostics":[]}} -Info 21 [00:00:32.000] event: +Info 20 [00:00:31.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-different-folders.js b/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-different-folders.js index 2875294704995..103ee9e45adba 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-different-folders.js +++ b/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-different-folders.js @@ -59,87 +59,86 @@ Info 5 [00:00:54.000] Config: /user/username/projects/myproject/tsconfig.json } Info 6 [00:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 7 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:57.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/feature/file2.ts 500 undefined WatchType: Closed Script info -Info 10 [00:00:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/file4.ts 500 undefined WatchType: Closed Script info -Info 11 [00:01:00.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/src/file3.ts 500 undefined WatchType: Closed Script info -Info 12 [00:01:01.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [00:01:02.000] ======== Resolving module 'module1' from '/user/username/projects/myproject/product/src/file1.ts'. ======== -Info 14 [00:01:03.000] Module resolution kind is not specified, using 'NodeJs'. -Info 15 [00:01:04.000] Loading module 'module1' from 'node_modules' folder, target file type 'TypeScript'. -Info 16 [00:01:05.000] Directory '/user/username/projects/myproject/product/src/node_modules' does not exist, skipping all lookups in it. -Info 17 [00:01:06.000] File '/user/username/projects/myproject/product/node_modules/module1/package.json' does not exist. -Info 18 [00:01:07.000] File '/user/username/projects/myproject/product/node_modules/module1.ts' does not exist. -Info 19 [00:01:08.000] File '/user/username/projects/myproject/product/node_modules/module1.tsx' does not exist. -Info 20 [00:01:09.000] File '/user/username/projects/myproject/product/node_modules/module1.d.ts' does not exist. -Info 21 [00:01:10.000] File '/user/username/projects/myproject/product/node_modules/module1/index.ts' exist - use it as a name resolution result. -Info 22 [00:01:11.000] Resolving real path for '/user/username/projects/myproject/product/node_modules/module1/index.ts', result '/user/username/projects/myproject/product/node_modules/module1/index.ts'. -Info 23 [00:01:12.000] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. ======== -Info 24 [00:01:13.000] ======== Resolving module 'module2' from '/user/username/projects/myproject/product/src/file1.ts'. ======== -Info 25 [00:01:14.000] Module resolution kind is not specified, using 'NodeJs'. -Info 26 [00:01:15.000] Loading module 'module2' from 'node_modules' folder, target file type 'TypeScript'. -Info 27 [00:01:16.000] Directory '/user/username/projects/myproject/product/src/node_modules' does not exist, skipping all lookups in it. -Info 28 [00:01:17.000] File '/user/username/projects/myproject/product/node_modules/module2.ts' does not exist. -Info 29 [00:01:18.000] File '/user/username/projects/myproject/product/node_modules/module2.tsx' does not exist. -Info 30 [00:01:19.000] File '/user/username/projects/myproject/product/node_modules/module2.d.ts' does not exist. -Info 31 [00:01:20.000] Directory '/user/username/projects/myproject/product/node_modules/@types' does not exist, skipping all lookups in it. -Info 32 [00:01:21.000] File '/user/username/projects/myproject/node_modules/module2/package.json' does not exist. -Info 33 [00:01:22.000] File '/user/username/projects/myproject/node_modules/module2.ts' does not exist. -Info 34 [00:01:23.000] File '/user/username/projects/myproject/node_modules/module2.tsx' does not exist. -Info 35 [00:01:24.000] File '/user/username/projects/myproject/node_modules/module2.d.ts' does not exist. -Info 36 [00:01:25.000] File '/user/username/projects/myproject/node_modules/module2/index.ts' exist - use it as a name resolution result. -Info 37 [00:01:26.000] Resolving real path for '/user/username/projects/myproject/node_modules/module2/index.ts', result '/user/username/projects/myproject/node_modules/module2/index.ts'. -Info 38 [00:01:27.000] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== -Info 39 [00:01:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 40 [00:01:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 41 [00:01:30.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 42 [00:01:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 43 [00:01:32.000] ======== Resolving module 'module1' from '/user/username/projects/myproject/product/src/feature/file2.ts'. ======== -Info 44 [00:01:33.000] Module resolution kind is not specified, using 'NodeJs'. -Info 45 [00:01:34.000] Loading module 'module1' from 'node_modules' folder, target file type 'TypeScript'. -Info 46 [00:01:35.000] Directory '/user/username/projects/myproject/product/src/feature/node_modules' does not exist, skipping all lookups in it. -Info 47 [00:01:36.000] Resolution for module 'module1' was found in cache from location '/user/username/projects/myproject/product/src'. -Info 48 [00:01:37.000] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. ======== -Info 49 [00:01:38.000] ======== Resolving module 'module2' from '/user/username/projects/myproject/product/src/feature/file2.ts'. ======== -Info 50 [00:01:39.000] Module resolution kind is not specified, using 'NodeJs'. -Info 51 [00:01:40.000] Loading module 'module2' from 'node_modules' folder, target file type 'TypeScript'. -Info 52 [00:01:41.000] Directory '/user/username/projects/myproject/product/src/feature/node_modules' does not exist, skipping all lookups in it. -Info 53 [00:01:42.000] Resolution for module 'module2' was found in cache from location '/user/username/projects/myproject/product/src'. -Info 54 [00:01:43.000] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== -Info 55 [00:01:44.000] ======== Resolving module 'module1' from '/user/username/projects/myproject/product/test/file4.ts'. ======== -Info 56 [00:01:45.000] Module resolution kind is not specified, using 'NodeJs'. -Info 57 [00:01:46.000] Loading module 'module1' from 'node_modules' folder, target file type 'TypeScript'. -Info 58 [00:01:47.000] Directory '/user/username/projects/myproject/product/test/node_modules' does not exist, skipping all lookups in it. -Info 59 [00:01:48.000] Resolution for module 'module1' was found in cache from location '/user/username/projects/myproject/product'. -Info 60 [00:01:49.000] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. ======== -Info 61 [00:01:50.000] ======== Resolving module 'module2' from '/user/username/projects/myproject/product/test/file4.ts'. ======== -Info 62 [00:01:51.000] Module resolution kind is not specified, using 'NodeJs'. -Info 63 [00:01:52.000] Loading module 'module2' from 'node_modules' folder, target file type 'TypeScript'. -Info 64 [00:01:53.000] Directory '/user/username/projects/myproject/product/test/node_modules' does not exist, skipping all lookups in it. -Info 65 [00:01:54.000] Resolution for module 'module2' was found in cache from location '/user/username/projects/myproject/product'. -Info 66 [00:01:55.000] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== -Info 67 [00:01:56.000] ======== Resolving module 'module1' from '/user/username/projects/myproject/product/test/src/file3.ts'. ======== -Info 68 [00:01:57.000] Module resolution kind is not specified, using 'NodeJs'. -Info 69 [00:01:58.000] Loading module 'module1' from 'node_modules' folder, target file type 'TypeScript'. -Info 70 [00:01:59.000] Directory '/user/username/projects/myproject/product/test/src/node_modules' does not exist, skipping all lookups in it. -Info 71 [00:02:00.000] Resolution for module 'module1' was found in cache from location '/user/username/projects/myproject/product/test'. -Info 72 [00:02:01.000] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. ======== -Info 73 [00:02:02.000] ======== Resolving module 'module2' from '/user/username/projects/myproject/product/test/src/file3.ts'. ======== -Info 74 [00:02:03.000] Module resolution kind is not specified, using 'NodeJs'. -Info 75 [00:02:04.000] Loading module 'module2' from 'node_modules' folder, target file type 'TypeScript'. -Info 76 [00:02:05.000] Directory '/user/username/projects/myproject/product/test/src/node_modules' does not exist, skipping all lookups in it. -Info 77 [00:02:06.000] Resolution for module 'module2' was found in cache from location '/user/username/projects/myproject/product/test'. -Info 78 [00:02:07.000] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== -Info 79 [00:02:08.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 80 [00:02:09.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 82 [00:02:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 83 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 84 [00:02:13.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 85 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 86 [00:02:15.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 87 [00:02:16.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 88 [00:02:17.000] Files (7) +Info 8 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/feature/file2.ts 500 undefined WatchType: Closed Script info +Info 9 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/file4.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:59.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/src/file3.ts 500 undefined WatchType: Closed Script info +Info 11 [00:01:00.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 12 [00:01:01.000] ======== Resolving module 'module1' from '/user/username/projects/myproject/product/src/file1.ts'. ======== +Info 13 [00:01:02.000] Module resolution kind is not specified, using 'NodeJs'. +Info 14 [00:01:03.000] Loading module 'module1' from 'node_modules' folder, target file type 'TypeScript'. +Info 15 [00:01:04.000] Directory '/user/username/projects/myproject/product/src/node_modules' does not exist, skipping all lookups in it. +Info 16 [00:01:05.000] File '/user/username/projects/myproject/product/node_modules/module1/package.json' does not exist. +Info 17 [00:01:06.000] File '/user/username/projects/myproject/product/node_modules/module1.ts' does not exist. +Info 18 [00:01:07.000] File '/user/username/projects/myproject/product/node_modules/module1.tsx' does not exist. +Info 19 [00:01:08.000] File '/user/username/projects/myproject/product/node_modules/module1.d.ts' does not exist. +Info 20 [00:01:09.000] File '/user/username/projects/myproject/product/node_modules/module1/index.ts' exist - use it as a name resolution result. +Info 21 [00:01:10.000] Resolving real path for '/user/username/projects/myproject/product/node_modules/module1/index.ts', result '/user/username/projects/myproject/product/node_modules/module1/index.ts'. +Info 22 [00:01:11.000] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. ======== +Info 23 [00:01:12.000] ======== Resolving module 'module2' from '/user/username/projects/myproject/product/src/file1.ts'. ======== +Info 24 [00:01:13.000] Module resolution kind is not specified, using 'NodeJs'. +Info 25 [00:01:14.000] Loading module 'module2' from 'node_modules' folder, target file type 'TypeScript'. +Info 26 [00:01:15.000] Directory '/user/username/projects/myproject/product/src/node_modules' does not exist, skipping all lookups in it. +Info 27 [00:01:16.000] File '/user/username/projects/myproject/product/node_modules/module2.ts' does not exist. +Info 28 [00:01:17.000] File '/user/username/projects/myproject/product/node_modules/module2.tsx' does not exist. +Info 29 [00:01:18.000] File '/user/username/projects/myproject/product/node_modules/module2.d.ts' does not exist. +Info 30 [00:01:19.000] Directory '/user/username/projects/myproject/product/node_modules/@types' does not exist, skipping all lookups in it. +Info 31 [00:01:20.000] File '/user/username/projects/myproject/node_modules/module2/package.json' does not exist. +Info 32 [00:01:21.000] File '/user/username/projects/myproject/node_modules/module2.ts' does not exist. +Info 33 [00:01:22.000] File '/user/username/projects/myproject/node_modules/module2.tsx' does not exist. +Info 34 [00:01:23.000] File '/user/username/projects/myproject/node_modules/module2.d.ts' does not exist. +Info 35 [00:01:24.000] File '/user/username/projects/myproject/node_modules/module2/index.ts' exist - use it as a name resolution result. +Info 36 [00:01:25.000] Resolving real path for '/user/username/projects/myproject/node_modules/module2/index.ts', result '/user/username/projects/myproject/node_modules/module2/index.ts'. +Info 37 [00:01:26.000] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== +Info 38 [00:01:27.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 39 [00:01:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 40 [00:01:29.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 41 [00:01:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 42 [00:01:31.000] ======== Resolving module 'module1' from '/user/username/projects/myproject/product/src/feature/file2.ts'. ======== +Info 43 [00:01:32.000] Module resolution kind is not specified, using 'NodeJs'. +Info 44 [00:01:33.000] Loading module 'module1' from 'node_modules' folder, target file type 'TypeScript'. +Info 45 [00:01:34.000] Directory '/user/username/projects/myproject/product/src/feature/node_modules' does not exist, skipping all lookups in it. +Info 46 [00:01:35.000] Resolution for module 'module1' was found in cache from location '/user/username/projects/myproject/product/src'. +Info 47 [00:01:36.000] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. ======== +Info 48 [00:01:37.000] ======== Resolving module 'module2' from '/user/username/projects/myproject/product/src/feature/file2.ts'. ======== +Info 49 [00:01:38.000] Module resolution kind is not specified, using 'NodeJs'. +Info 50 [00:01:39.000] Loading module 'module2' from 'node_modules' folder, target file type 'TypeScript'. +Info 51 [00:01:40.000] Directory '/user/username/projects/myproject/product/src/feature/node_modules' does not exist, skipping all lookups in it. +Info 52 [00:01:41.000] Resolution for module 'module2' was found in cache from location '/user/username/projects/myproject/product/src'. +Info 53 [00:01:42.000] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== +Info 54 [00:01:43.000] ======== Resolving module 'module1' from '/user/username/projects/myproject/product/test/file4.ts'. ======== +Info 55 [00:01:44.000] Module resolution kind is not specified, using 'NodeJs'. +Info 56 [00:01:45.000] Loading module 'module1' from 'node_modules' folder, target file type 'TypeScript'. +Info 57 [00:01:46.000] Directory '/user/username/projects/myproject/product/test/node_modules' does not exist, skipping all lookups in it. +Info 58 [00:01:47.000] Resolution for module 'module1' was found in cache from location '/user/username/projects/myproject/product'. +Info 59 [00:01:48.000] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. ======== +Info 60 [00:01:49.000] ======== Resolving module 'module2' from '/user/username/projects/myproject/product/test/file4.ts'. ======== +Info 61 [00:01:50.000] Module resolution kind is not specified, using 'NodeJs'. +Info 62 [00:01:51.000] Loading module 'module2' from 'node_modules' folder, target file type 'TypeScript'. +Info 63 [00:01:52.000] Directory '/user/username/projects/myproject/product/test/node_modules' does not exist, skipping all lookups in it. +Info 64 [00:01:53.000] Resolution for module 'module2' was found in cache from location '/user/username/projects/myproject/product'. +Info 65 [00:01:54.000] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== +Info 66 [00:01:55.000] ======== Resolving module 'module1' from '/user/username/projects/myproject/product/test/src/file3.ts'. ======== +Info 67 [00:01:56.000] Module resolution kind is not specified, using 'NodeJs'. +Info 68 [00:01:57.000] Loading module 'module1' from 'node_modules' folder, target file type 'TypeScript'. +Info 69 [00:01:58.000] Directory '/user/username/projects/myproject/product/test/src/node_modules' does not exist, skipping all lookups in it. +Info 70 [00:01:59.000] Resolution for module 'module1' was found in cache from location '/user/username/projects/myproject/product/test'. +Info 71 [00:02:00.000] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. ======== +Info 72 [00:02:01.000] ======== Resolving module 'module2' from '/user/username/projects/myproject/product/test/src/file3.ts'. ======== +Info 73 [00:02:02.000] Module resolution kind is not specified, using 'NodeJs'. +Info 74 [00:02:03.000] Loading module 'module2' from 'node_modules' folder, target file type 'TypeScript'. +Info 75 [00:02:04.000] Directory '/user/username/projects/myproject/product/test/src/node_modules' does not exist, skipping all lookups in it. +Info 76 [00:02:05.000] Resolution for module 'module2' was found in cache from location '/user/username/projects/myproject/product/test'. +Info 77 [00:02:06.000] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== +Info 78 [00:02:07.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 79 [00:02:08.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 80 [00:02:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 81 [00:02:10.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 82 [00:02:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 83 [00:02:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 84 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 85 [00:02:14.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 86 [00:02:15.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 87 [00:02:16.000] Files (7) /a/lib/lib.d.ts /user/username/projects/myproject/product/node_modules/module1/index.ts /user/username/projects/myproject/node_modules/module2/index.ts @@ -170,26 +169,26 @@ Info 88 [00:02:17.000] Files (7) product/test/src/file3.ts Matched by default include pattern '**/*' -Info 89 [00:02:18.000] ----------------------------------------------- -Info 90 [00:02:19.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 90 [00:02:20.000] Files (7) +Info 88 [00:02:17.000] ----------------------------------------------- +Info 89 [00:02:18.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 89 [00:02:19.000] Files (7) -Info 90 [00:02:21.000] ----------------------------------------------- -Info 90 [00:02:22.000] Open files: -Info 90 [00:02:23.000] FileName: /user/username/projects/myproject/product/src/file1.ts ProjectRootPath: undefined -Info 90 [00:02:24.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 90 [00:02:31.000] FileWatcher:: Triggered with /user/username/projects/myproject/product/src/feature/file2.ts 1:: WatchInfo: /user/username/projects/myproject/product/src/feature/file2.ts 500 undefined WatchType: Closed Script info -Info 91 [00:02:32.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 92 [00:02:33.000] Scheduled: *ensureProjectForOpenFiles* -Info 93 [00:02:34.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/product/src/feature/file2.ts 1:: WatchInfo: /user/username/projects/myproject/product/src/feature/file2.ts 500 undefined WatchType: Closed Script info -Info 94 [00:02:38.000] FileWatcher:: Triggered with /user/username/projects/myproject/product/test/src/file3.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/src/file3.ts 500 undefined WatchType: Closed Script info -Info 95 [00:02:39.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 96 [00:02:40.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 97 [00:02:41.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/product/test/src/file3.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/src/file3.ts 500 undefined WatchType: Closed Script info -Info 98 [00:02:45.000] FileWatcher:: Triggered with /user/username/projects/myproject/product/test/file4.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/file4.ts 500 undefined WatchType: Closed Script info -Info 99 [00:02:46.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 100 [00:02:47.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 101 [00:02:48.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/product/test/file4.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/file4.ts 500 undefined WatchType: Closed Script info +Info 89 [00:02:20.000] ----------------------------------------------- +Info 89 [00:02:21.000] Open files: +Info 89 [00:02:22.000] FileName: /user/username/projects/myproject/product/src/file1.ts ProjectRootPath: undefined +Info 89 [00:02:23.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 89 [00:02:30.000] FileWatcher:: Triggered with /user/username/projects/myproject/product/src/feature/file2.ts 1:: WatchInfo: /user/username/projects/myproject/product/src/feature/file2.ts 500 undefined WatchType: Closed Script info +Info 90 [00:02:31.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 91 [00:02:32.000] Scheduled: *ensureProjectForOpenFiles* +Info 92 [00:02:33.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/product/src/feature/file2.ts 1:: WatchInfo: /user/username/projects/myproject/product/src/feature/file2.ts 500 undefined WatchType: Closed Script info +Info 93 [00:02:37.000] FileWatcher:: Triggered with /user/username/projects/myproject/product/test/src/file3.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/src/file3.ts 500 undefined WatchType: Closed Script info +Info 94 [00:02:38.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 95 [00:02:39.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 96 [00:02:40.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/product/test/src/file3.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/src/file3.ts 500 undefined WatchType: Closed Script info +Info 97 [00:02:44.000] FileWatcher:: Triggered with /user/username/projects/myproject/product/test/file4.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/file4.ts 500 undefined WatchType: Closed Script info +Info 98 [00:02:45.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 99 [00:02:46.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 100 [00:02:47.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/product/test/file4.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/file4.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/product/src/file1.ts] import { module1 } from "module1";import { module2 } from "module2";import { module1 } from "module1";import { module2 } from "module2"; @@ -230,35 +229,35 @@ FsWatchesRecursive:: /user/username/projects/myproject/product: {} -Info 102 [00:02:49.000] Running: /user/username/projects/myproject/tsconfig.json -Info 103 [00:02:50.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 104 [00:02:51.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/product/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. -Info 105 [00:02:52.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/product/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. -Info 106 [00:02:53.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/product/src/feature/file2.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. -Info 107 [00:02:54.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/product/src/feature/file2.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. -Info 108 [00:02:55.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/product/test/file4.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. -Info 109 [00:02:56.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/product/test/file4.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. -Info 110 [00:02:57.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/product/test/src/file3.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. -Info 111 [00:02:58.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/product/test/src/file3.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. -Info 112 [00:02:59.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 113 [00:03:00.000] Different program with same set of files -Info 114 [00:03:01.000] Running: *ensureProjectForOpenFiles* -Info 115 [00:03:02.000] Before ensureProjectForOpenFiles: -Info 116 [00:03:03.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 116 [00:03:04.000] Files (7) +Info 101 [00:02:48.000] Running: /user/username/projects/myproject/tsconfig.json +Info 102 [00:02:49.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 103 [00:02:50.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/product/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. +Info 104 [00:02:51.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/product/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. +Info 105 [00:02:52.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/product/src/feature/file2.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. +Info 106 [00:02:53.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/product/src/feature/file2.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. +Info 107 [00:02:54.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/product/test/file4.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. +Info 108 [00:02:55.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/product/test/file4.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. +Info 109 [00:02:56.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/product/test/src/file3.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. +Info 110 [00:02:57.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/product/test/src/file3.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. +Info 111 [00:02:58.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 112 [00:02:59.000] Different program with same set of files +Info 113 [00:03:00.000] Running: *ensureProjectForOpenFiles* +Info 114 [00:03:01.000] Before ensureProjectForOpenFiles: +Info 115 [00:03:02.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 115 [00:03:03.000] Files (7) -Info 116 [00:03:05.000] ----------------------------------------------- -Info 116 [00:03:06.000] Open files: -Info 116 [00:03:07.000] FileName: /user/username/projects/myproject/product/src/file1.ts ProjectRootPath: undefined -Info 116 [00:03:08.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 116 [00:03:09.000] After ensureProjectForOpenFiles: -Info 117 [00:03:10.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 117 [00:03:11.000] Files (7) +Info 115 [00:03:04.000] ----------------------------------------------- +Info 115 [00:03:05.000] Open files: +Info 115 [00:03:06.000] FileName: /user/username/projects/myproject/product/src/file1.ts ProjectRootPath: undefined +Info 115 [00:03:07.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 115 [00:03:08.000] After ensureProjectForOpenFiles: +Info 116 [00:03:09.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 116 [00:03:10.000] Files (7) -Info 117 [00:03:12.000] ----------------------------------------------- -Info 117 [00:03:13.000] Open files: -Info 117 [00:03:14.000] FileName: /user/username/projects/myproject/product/src/file1.ts ProjectRootPath: undefined -Info 117 [00:03:15.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 116 [00:03:11.000] ----------------------------------------------- +Info 116 [00:03:12.000] Open files: +Info 116 [00:03:13.000] FileName: /user/username/projects/myproject/product/src/file1.ts ProjectRootPath: undefined +Info 116 [00:03:14.000] Projects: /user/username/projects/myproject/tsconfig.json After running timeout callbacks PolledWatches:: diff --git a/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-same-folder.js b/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-same-folder.js index cf47d10e07155..207b8312dfe7e 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-same-folder.js +++ b/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-files-in-same-folder.js @@ -51,49 +51,48 @@ Info 5 [00:00:42.000] Config: /user/username/projects/myproject/tsconfig.json } Info 6 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 7 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:45.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/file2.ts 500 undefined WatchType: Closed Script info -Info 10 [00:00:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 11 [00:00:48.000] ======== Resolving module 'module1' from '/user/username/projects/myproject/src/file1.ts'. ======== -Info 12 [00:00:49.000] Module resolution kind is not specified, using 'NodeJs'. -Info 13 [00:00:50.000] Loading module 'module1' from 'node_modules' folder, target file type 'TypeScript'. -Info 14 [00:00:51.000] File '/user/username/projects/myproject/src/node_modules/module1/package.json' does not exist. -Info 15 [00:00:52.000] File '/user/username/projects/myproject/src/node_modules/module1.ts' does not exist. -Info 16 [00:00:53.000] File '/user/username/projects/myproject/src/node_modules/module1.tsx' does not exist. -Info 17 [00:00:54.000] File '/user/username/projects/myproject/src/node_modules/module1.d.ts' does not exist. -Info 18 [00:00:55.000] File '/user/username/projects/myproject/src/node_modules/module1/index.ts' exist - use it as a name resolution result. -Info 19 [00:00:56.000] Resolving real path for '/user/username/projects/myproject/src/node_modules/module1/index.ts', result '/user/username/projects/myproject/src/node_modules/module1/index.ts'. -Info 20 [00:00:57.000] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/src/node_modules/module1/index.ts'. ======== -Info 21 [00:00:58.000] ======== Resolving module 'module2' from '/user/username/projects/myproject/src/file1.ts'. ======== -Info 22 [00:00:59.000] Module resolution kind is not specified, using 'NodeJs'. -Info 23 [00:01:00.000] Loading module 'module2' from 'node_modules' folder, target file type 'TypeScript'. -Info 24 [00:01:01.000] File '/user/username/projects/myproject/src/node_modules/module2.ts' does not exist. -Info 25 [00:01:02.000] File '/user/username/projects/myproject/src/node_modules/module2.tsx' does not exist. -Info 26 [00:01:03.000] File '/user/username/projects/myproject/src/node_modules/module2.d.ts' does not exist. -Info 27 [00:01:04.000] Directory '/user/username/projects/myproject/src/node_modules/@types' does not exist, skipping all lookups in it. -Info 28 [00:01:05.000] File '/user/username/projects/myproject/node_modules/module2/package.json' does not exist. -Info 29 [00:01:06.000] File '/user/username/projects/myproject/node_modules/module2.ts' does not exist. -Info 30 [00:01:07.000] File '/user/username/projects/myproject/node_modules/module2.tsx' does not exist. -Info 31 [00:01:08.000] File '/user/username/projects/myproject/node_modules/module2.d.ts' does not exist. -Info 32 [00:01:09.000] File '/user/username/projects/myproject/node_modules/module2/index.ts' exist - use it as a name resolution result. -Info 33 [00:01:10.000] Resolving real path for '/user/username/projects/myproject/node_modules/module2/index.ts', result '/user/username/projects/myproject/node_modules/module2/index.ts'. -Info 34 [00:01:11.000] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== -Info 35 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 36 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 37 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 38 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 39 [00:01:16.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/src/file2.ts' found in cache from location '/user/username/projects/myproject/src', it was successfully resolved to '/user/username/projects/myproject/src/node_modules/module1/index.ts'. -Info 40 [00:01:17.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/src/file2.ts' found in cache from location '/user/username/projects/myproject/src', it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. -Info 41 [00:01:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 42 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 43 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 44 [00:01:21.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 45 [00:01:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 46 [00:01:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 47 [00:01:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 48 [00:01:25.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 49 [00:01:26.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 50 [00:01:27.000] Files (5) +Info 8 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/file2.ts 500 undefined WatchType: Closed Script info +Info 9 [00:00:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 10 [00:00:47.000] ======== Resolving module 'module1' from '/user/username/projects/myproject/src/file1.ts'. ======== +Info 11 [00:00:48.000] Module resolution kind is not specified, using 'NodeJs'. +Info 12 [00:00:49.000] Loading module 'module1' from 'node_modules' folder, target file type 'TypeScript'. +Info 13 [00:00:50.000] File '/user/username/projects/myproject/src/node_modules/module1/package.json' does not exist. +Info 14 [00:00:51.000] File '/user/username/projects/myproject/src/node_modules/module1.ts' does not exist. +Info 15 [00:00:52.000] File '/user/username/projects/myproject/src/node_modules/module1.tsx' does not exist. +Info 16 [00:00:53.000] File '/user/username/projects/myproject/src/node_modules/module1.d.ts' does not exist. +Info 17 [00:00:54.000] File '/user/username/projects/myproject/src/node_modules/module1/index.ts' exist - use it as a name resolution result. +Info 18 [00:00:55.000] Resolving real path for '/user/username/projects/myproject/src/node_modules/module1/index.ts', result '/user/username/projects/myproject/src/node_modules/module1/index.ts'. +Info 19 [00:00:56.000] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/src/node_modules/module1/index.ts'. ======== +Info 20 [00:00:57.000] ======== Resolving module 'module2' from '/user/username/projects/myproject/src/file1.ts'. ======== +Info 21 [00:00:58.000] Module resolution kind is not specified, using 'NodeJs'. +Info 22 [00:00:59.000] Loading module 'module2' from 'node_modules' folder, target file type 'TypeScript'. +Info 23 [00:01:00.000] File '/user/username/projects/myproject/src/node_modules/module2.ts' does not exist. +Info 24 [00:01:01.000] File '/user/username/projects/myproject/src/node_modules/module2.tsx' does not exist. +Info 25 [00:01:02.000] File '/user/username/projects/myproject/src/node_modules/module2.d.ts' does not exist. +Info 26 [00:01:03.000] Directory '/user/username/projects/myproject/src/node_modules/@types' does not exist, skipping all lookups in it. +Info 27 [00:01:04.000] File '/user/username/projects/myproject/node_modules/module2/package.json' does not exist. +Info 28 [00:01:05.000] File '/user/username/projects/myproject/node_modules/module2.ts' does not exist. +Info 29 [00:01:06.000] File '/user/username/projects/myproject/node_modules/module2.tsx' does not exist. +Info 30 [00:01:07.000] File '/user/username/projects/myproject/node_modules/module2.d.ts' does not exist. +Info 31 [00:01:08.000] File '/user/username/projects/myproject/node_modules/module2/index.ts' exist - use it as a name resolution result. +Info 32 [00:01:09.000] Resolving real path for '/user/username/projects/myproject/node_modules/module2/index.ts', result '/user/username/projects/myproject/node_modules/module2/index.ts'. +Info 33 [00:01:10.000] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== +Info 34 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 35 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 36 [00:01: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 +Info 37 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 38 [00:01:15.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/src/file2.ts' found in cache from location '/user/username/projects/myproject/src', it was successfully resolved to '/user/username/projects/myproject/src/node_modules/module1/index.ts'. +Info 39 [00:01:16.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/src/file2.ts' found in cache from location '/user/username/projects/myproject/src', it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. +Info 40 [00:01:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 41 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 42 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 43 [00:01:20.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 44 [00:01:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 45 [00:01:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 46 [00:01:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 47 [00:01:24.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 48 [00:01:25.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 49 [00:01:26.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/node_modules/module1/index.ts /user/username/projects/myproject/node_modules/module2/index.ts @@ -114,18 +113,18 @@ Info 50 [00:01:27.000] Files (5) src/file2.ts Matched by default include pattern '**/*' -Info 51 [00:01:28.000] ----------------------------------------------- -Info 52 [00:01:29.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 52 [00:01:30.000] Files (5) - -Info 52 [00:01:31.000] ----------------------------------------------- -Info 52 [00:01:32.000] Open files: -Info 52 [00:01:33.000] FileName: /user/username/projects/myproject/src/file1.ts ProjectRootPath: undefined -Info 52 [00:01:34.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 52 [00:01:41.000] FileWatcher:: Triggered with /user/username/projects/myproject/src/file2.ts 1:: WatchInfo: /user/username/projects/myproject/src/file2.ts 500 undefined WatchType: Closed Script info -Info 53 [00:01:42.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 54 [00:01:43.000] Scheduled: *ensureProjectForOpenFiles* -Info 55 [00:01:44.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/src/file2.ts 1:: WatchInfo: /user/username/projects/myproject/src/file2.ts 500 undefined WatchType: Closed Script info +Info 50 [00:01:27.000] ----------------------------------------------- +Info 51 [00:01:28.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 51 [00:01:29.000] Files (5) + +Info 51 [00:01:30.000] ----------------------------------------------- +Info 51 [00:01:31.000] Open files: +Info 51 [00:01:32.000] FileName: /user/username/projects/myproject/src/file1.ts ProjectRootPath: undefined +Info 51 [00:01:33.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 51 [00:01:40.000] FileWatcher:: Triggered with /user/username/projects/myproject/src/file2.ts 1:: WatchInfo: /user/username/projects/myproject/src/file2.ts 500 undefined WatchType: Closed Script info +Info 52 [00:01:41.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 53 [00:01:42.000] Scheduled: *ensureProjectForOpenFiles* +Info 54 [00:01:43.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/src/file2.ts 1:: WatchInfo: /user/username/projects/myproject/src/file2.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/src/file1.ts] import { module1 } from "module1";import { module2 } from "module2";import { module1 } from "module1";import { module2 } from "module2"; @@ -156,31 +155,31 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 56 [00:01:45.000] Running: /user/username/projects/myproject/tsconfig.json -Info 57 [00:01:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 58 [00:01:47.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/src/node_modules/module1/index.ts'. -Info 59 [00:01:48.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. -Info 60 [00:01:49.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/src/file2.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/src/node_modules/module1/index.ts'. -Info 61 [00:01:50.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/src/file2.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. -Info 62 [00:01:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 63 [00:01:52.000] Different program with same set of files -Info 64 [00:01:53.000] Running: *ensureProjectForOpenFiles* -Info 65 [00:01:54.000] Before ensureProjectForOpenFiles: -Info 66 [00:01:55.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 66 [00:01:56.000] Files (5) - -Info 66 [00:01:57.000] ----------------------------------------------- -Info 66 [00:01:58.000] Open files: -Info 66 [00:01:59.000] FileName: /user/username/projects/myproject/src/file1.ts ProjectRootPath: undefined -Info 66 [00:02:00.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 66 [00:02:01.000] After ensureProjectForOpenFiles: -Info 67 [00:02:02.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 67 [00:02:03.000] Files (5) - -Info 67 [00:02:04.000] ----------------------------------------------- -Info 67 [00:02:05.000] Open files: -Info 67 [00:02:06.000] FileName: /user/username/projects/myproject/src/file1.ts ProjectRootPath: undefined -Info 67 [00:02:07.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 55 [00:01:44.000] Running: /user/username/projects/myproject/tsconfig.json +Info 56 [00:01:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 57 [00:01:46.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/src/node_modules/module1/index.ts'. +Info 58 [00:01:47.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. +Info 59 [00:01:48.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/src/file2.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/src/node_modules/module1/index.ts'. +Info 60 [00:01:49.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/src/file2.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. +Info 61 [00:01:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 62 [00:01:51.000] Different program with same set of files +Info 63 [00:01:52.000] Running: *ensureProjectForOpenFiles* +Info 64 [00:01:53.000] Before ensureProjectForOpenFiles: +Info 65 [00:01:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 65 [00:01:55.000] Files (5) + +Info 65 [00:01:56.000] ----------------------------------------------- +Info 65 [00:01:57.000] Open files: +Info 65 [00:01:58.000] FileName: /user/username/projects/myproject/src/file1.ts ProjectRootPath: undefined +Info 65 [00:01:59.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 65 [00:02:00.000] After ensureProjectForOpenFiles: +Info 66 [00:02:01.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 66 [00:02:02.000] Files (5) + +Info 66 [00:02:03.000] ----------------------------------------------- +Info 66 [00:02:04.000] Open files: +Info 66 [00:02:05.000] FileName: /user/username/projects/myproject/src/file1.ts ProjectRootPath: undefined +Info 66 [00:02:06.000] Projects: /user/username/projects/myproject/tsconfig.json After running timeout callbacks PolledWatches:: diff --git a/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-inferred-project.js b/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-inferred-project.js index 43082abbfd802..f84e7445c0fbf 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-inferred-project.js +++ b/tests/baselines/reference/tsserver/resolutionCache/non-relative-module-name-from-inferred-project.js @@ -40,120 +40,119 @@ FsWatchesRecursive:: Info 1 [00:00:48.000] Search path: /user/username/projects/myproject/product/src Info 2 [00:00:49.000] For info: /user/username/projects/myproject/product/src/file1.ts :: No config files found. -Info 3 [00:00:50.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 4 [00:00:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 5 [00:00:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 6 [00:00:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 7 [00:00:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 8 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 9 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 10 [00:00:57.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 11 [00:00:58.000] ======== Resolving module './feature/file2' from '/user/username/projects/myproject/product/src/file1.ts'. ======== -Info 12 [00:00:59.000] Module resolution kind is not specified, using 'NodeJs'. -Info 13 [00:01:00.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/src/feature/file2', target file type 'TypeScript'. -Info 14 [00:01:01.000] File '/user/username/projects/myproject/product/src/feature/file2.ts' exist - use it as a name resolution result. -Info 15 [00:01:02.000] ======== Module name './feature/file2' was successfully resolved to '/user/username/projects/myproject/product/src/feature/file2.ts'. ======== -Info 16 [00:01:03.000] ======== Resolving module '../test/file4' from '/user/username/projects/myproject/product/src/file1.ts'. ======== -Info 17 [00:01:04.000] Module resolution kind is not specified, using 'NodeJs'. -Info 18 [00:01:05.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/test/file4', target file type 'TypeScript'. -Info 19 [00:01:06.000] File '/user/username/projects/myproject/product/test/file4.ts' exist - use it as a name resolution result. -Info 20 [00:01:07.000] ======== Module name '../test/file4' was successfully resolved to '/user/username/projects/myproject/product/test/file4.ts'. ======== -Info 21 [00:01:08.000] ======== Resolving module '../test/src/file3' from '/user/username/projects/myproject/product/src/file1.ts'. ======== -Info 22 [00:01:09.000] Module resolution kind is not specified, using 'NodeJs'. -Info 23 [00:01:10.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/test/src/file3', target file type 'TypeScript'. -Info 24 [00:01:11.000] File '/user/username/projects/myproject/product/test/src/file3.ts' exist - use it as a name resolution result. -Info 25 [00:01:12.000] ======== Module name '../test/src/file3' was successfully resolved to '/user/username/projects/myproject/product/test/src/file3.ts'. ======== -Info 26 [00:01:13.000] ======== Resolving module 'module1' from '/user/username/projects/myproject/product/src/file1.ts'. ======== -Info 27 [00:01:14.000] Module resolution kind is not specified, using 'NodeJs'. -Info 28 [00:01:15.000] Loading module 'module1' from 'node_modules' folder, target file type 'TypeScript'. -Info 29 [00:01:16.000] Directory '/user/username/projects/myproject/product/src/node_modules' does not exist, skipping all lookups in it. -Info 30 [00:01:17.000] File '/user/username/projects/myproject/product/node_modules/module1/package.json' does not exist. -Info 31 [00:01:18.000] File '/user/username/projects/myproject/product/node_modules/module1.ts' does not exist. -Info 32 [00:01:19.000] File '/user/username/projects/myproject/product/node_modules/module1.tsx' does not exist. -Info 33 [00:01:20.000] File '/user/username/projects/myproject/product/node_modules/module1.d.ts' does not exist. -Info 34 [00:01:21.000] File '/user/username/projects/myproject/product/node_modules/module1/index.ts' exist - use it as a name resolution result. -Info 35 [00:01:22.000] Resolving real path for '/user/username/projects/myproject/product/node_modules/module1/index.ts', result '/user/username/projects/myproject/product/node_modules/module1/index.ts'. -Info 36 [00:01:23.000] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. ======== -Info 37 [00:01:24.000] ======== Resolving module 'module2' from '/user/username/projects/myproject/product/src/file1.ts'. ======== -Info 38 [00:01:25.000] Module resolution kind is not specified, using 'NodeJs'. -Info 39 [00:01:26.000] Loading module 'module2' from 'node_modules' folder, target file type 'TypeScript'. -Info 40 [00:01:27.000] Directory '/user/username/projects/myproject/product/src/node_modules' does not exist, skipping all lookups in it. -Info 41 [00:01:28.000] File '/user/username/projects/myproject/product/node_modules/module2.ts' does not exist. -Info 42 [00:01:29.000] File '/user/username/projects/myproject/product/node_modules/module2.tsx' does not exist. -Info 43 [00:01:30.000] File '/user/username/projects/myproject/product/node_modules/module2.d.ts' does not exist. -Info 44 [00:01:31.000] Directory '/user/username/projects/myproject/product/node_modules/@types' does not exist, skipping all lookups in it. -Info 45 [00:01:32.000] File '/user/username/projects/myproject/node_modules/module2/package.json' does not exist. -Info 46 [00:01:33.000] File '/user/username/projects/myproject/node_modules/module2.ts' does not exist. -Info 47 [00:01:34.000] File '/user/username/projects/myproject/node_modules/module2.tsx' does not exist. -Info 48 [00:01:35.000] File '/user/username/projects/myproject/node_modules/module2.d.ts' does not exist. -Info 49 [00:01:36.000] File '/user/username/projects/myproject/node_modules/module2/index.ts' exist - use it as a name resolution result. -Info 50 [00:01:37.000] Resolving real path for '/user/username/projects/myproject/node_modules/module2/index.ts', result '/user/username/projects/myproject/node_modules/module2/index.ts'. -Info 51 [00:01:38.000] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== -Info 52 [00:01:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/feature/file2.ts 500 undefined WatchType: Closed Script info -Info 53 [00:01:40.000] ======== Resolving module 'module1' from '/user/username/projects/myproject/product/src/feature/file2.ts'. ======== -Info 54 [00:01:41.000] Module resolution kind is not specified, using 'NodeJs'. -Info 55 [00:01:42.000] Loading module 'module1' from 'node_modules' folder, target file type 'TypeScript'. -Info 56 [00:01:43.000] Directory '/user/username/projects/myproject/product/src/feature/node_modules' does not exist, skipping all lookups in it. -Info 57 [00:01:44.000] Resolution for module 'module1' was found in cache from location '/user/username/projects/myproject/product/src'. -Info 58 [00:01:45.000] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. ======== -Info 59 [00:01:46.000] ======== Resolving module 'module2' from '/user/username/projects/myproject/product/src/feature/file2.ts'. ======== -Info 60 [00:01:47.000] Module resolution kind is not specified, using 'NodeJs'. -Info 61 [00:01:48.000] Loading module 'module2' from 'node_modules' folder, target file type 'TypeScript'. -Info 62 [00:01:49.000] Directory '/user/username/projects/myproject/product/src/feature/node_modules' does not exist, skipping all lookups in it. -Info 63 [00:01:50.000] Resolution for module 'module2' was found in cache from location '/user/username/projects/myproject/product/src'. -Info 64 [00:01:51.000] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== -Info 65 [00:01:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 66 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 67 [00:01:54.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 68 [00:01:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 69 [00:01:56.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/file4.ts 500 undefined WatchType: Closed Script info -Info 70 [00:01:57.000] ======== Resolving module 'module1' from '/user/username/projects/myproject/product/test/file4.ts'. ======== -Info 71 [00:01:58.000] Module resolution kind is not specified, using 'NodeJs'. -Info 72 [00:01:59.000] Loading module 'module1' from 'node_modules' folder, target file type 'TypeScript'. -Info 73 [00:02:00.000] Directory '/user/username/projects/myproject/product/test/node_modules' does not exist, skipping all lookups in it. -Info 74 [00:02:01.000] Resolution for module 'module1' was found in cache from location '/user/username/projects/myproject/product'. -Info 75 [00:02:02.000] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. ======== -Info 76 [00:02:03.000] ======== Resolving module 'module2' from '/user/username/projects/myproject/product/test/file4.ts'. ======== -Info 77 [00:02:04.000] Module resolution kind is not specified, using 'NodeJs'. -Info 78 [00:02:05.000] Loading module 'module2' from 'node_modules' folder, target file type 'TypeScript'. -Info 79 [00:02:06.000] Directory '/user/username/projects/myproject/product/test/node_modules' does not exist, skipping all lookups in it. -Info 80 [00:02:07.000] Resolution for module 'module2' was found in cache from location '/user/username/projects/myproject/product'. -Info 81 [00:02:08.000] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== -Info 82 [00:02:09.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/src/file3.ts 500 undefined WatchType: Closed Script info -Info 83 [00:02:10.000] ======== Resolving module 'module1' from '/user/username/projects/myproject/product/test/src/file3.ts'. ======== -Info 84 [00:02:11.000] Module resolution kind is not specified, using 'NodeJs'. -Info 85 [00:02:12.000] Loading module 'module1' from 'node_modules' folder, target file type 'TypeScript'. -Info 86 [00:02:13.000] Directory '/user/username/projects/myproject/product/test/src/node_modules' does not exist, skipping all lookups in it. -Info 87 [00:02:14.000] Resolution for module 'module1' was found in cache from location '/user/username/projects/myproject/product/test'. -Info 88 [00:02:15.000] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. ======== -Info 89 [00:02:16.000] ======== Resolving module 'module2' from '/user/username/projects/myproject/product/test/src/file3.ts'. ======== -Info 90 [00:02:17.000] Module resolution kind is not specified, using 'NodeJs'. -Info 91 [00:02:18.000] Loading module 'module2' from 'node_modules' folder, target file type 'TypeScript'. -Info 92 [00:02:19.000] Directory '/user/username/projects/myproject/product/test/src/node_modules' does not exist, skipping all lookups in it. -Info 93 [00:02:20.000] Resolution for module 'module2' was found in cache from location '/user/username/projects/myproject/product/test'. -Info 94 [00:02:21.000] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== -Info 95 [00:02:22.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 96 [00:02:23.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 97 [00:02:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 98 [00:02:25.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 99 [00:02:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 100 [00:02:27.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/feature 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 101 [00:02:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/feature 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 102 [00:02:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 103 [00:02:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 104 [00:02:31.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 105 [00:02:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 106 [00:02:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 107 [00:02:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 108 [00:02:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 109 [00:02:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 110 [00:02:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 111 [00:02:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 112 [00:02:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 113 [00:02:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 114 [00:02:41.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 115 [00:02:42.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 116 [00:02:43.000] Files (7) +Info 3 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 4 [00:00:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 5 [00:00:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 6 [00:00:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 7 [00:00:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 8 [00:00:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 9 [00:00:56.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 10 [00:00:57.000] ======== Resolving module './feature/file2' from '/user/username/projects/myproject/product/src/file1.ts'. ======== +Info 11 [00:00:58.000] Module resolution kind is not specified, using 'NodeJs'. +Info 12 [00:00:59.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/src/feature/file2', target file type 'TypeScript'. +Info 13 [00:01:00.000] File '/user/username/projects/myproject/product/src/feature/file2.ts' exist - use it as a name resolution result. +Info 14 [00:01:01.000] ======== Module name './feature/file2' was successfully resolved to '/user/username/projects/myproject/product/src/feature/file2.ts'. ======== +Info 15 [00:01:02.000] ======== Resolving module '../test/file4' from '/user/username/projects/myproject/product/src/file1.ts'. ======== +Info 16 [00:01:03.000] Module resolution kind is not specified, using 'NodeJs'. +Info 17 [00:01:04.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/test/file4', target file type 'TypeScript'. +Info 18 [00:01:05.000] File '/user/username/projects/myproject/product/test/file4.ts' exist - use it as a name resolution result. +Info 19 [00:01:06.000] ======== Module name '../test/file4' was successfully resolved to '/user/username/projects/myproject/product/test/file4.ts'. ======== +Info 20 [00:01:07.000] ======== Resolving module '../test/src/file3' from '/user/username/projects/myproject/product/src/file1.ts'. ======== +Info 21 [00:01:08.000] Module resolution kind is not specified, using 'NodeJs'. +Info 22 [00:01:09.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/test/src/file3', target file type 'TypeScript'. +Info 23 [00:01:10.000] File '/user/username/projects/myproject/product/test/src/file3.ts' exist - use it as a name resolution result. +Info 24 [00:01:11.000] ======== Module name '../test/src/file3' was successfully resolved to '/user/username/projects/myproject/product/test/src/file3.ts'. ======== +Info 25 [00:01:12.000] ======== Resolving module 'module1' from '/user/username/projects/myproject/product/src/file1.ts'. ======== +Info 26 [00:01:13.000] Module resolution kind is not specified, using 'NodeJs'. +Info 27 [00:01:14.000] Loading module 'module1' from 'node_modules' folder, target file type 'TypeScript'. +Info 28 [00:01:15.000] Directory '/user/username/projects/myproject/product/src/node_modules' does not exist, skipping all lookups in it. +Info 29 [00:01:16.000] File '/user/username/projects/myproject/product/node_modules/module1/package.json' does not exist. +Info 30 [00:01:17.000] File '/user/username/projects/myproject/product/node_modules/module1.ts' does not exist. +Info 31 [00:01:18.000] File '/user/username/projects/myproject/product/node_modules/module1.tsx' does not exist. +Info 32 [00:01:19.000] File '/user/username/projects/myproject/product/node_modules/module1.d.ts' does not exist. +Info 33 [00:01:20.000] File '/user/username/projects/myproject/product/node_modules/module1/index.ts' exist - use it as a name resolution result. +Info 34 [00:01:21.000] Resolving real path for '/user/username/projects/myproject/product/node_modules/module1/index.ts', result '/user/username/projects/myproject/product/node_modules/module1/index.ts'. +Info 35 [00:01:22.000] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. ======== +Info 36 [00:01:23.000] ======== Resolving module 'module2' from '/user/username/projects/myproject/product/src/file1.ts'. ======== +Info 37 [00:01:24.000] Module resolution kind is not specified, using 'NodeJs'. +Info 38 [00:01:25.000] Loading module 'module2' from 'node_modules' folder, target file type 'TypeScript'. +Info 39 [00:01:26.000] Directory '/user/username/projects/myproject/product/src/node_modules' does not exist, skipping all lookups in it. +Info 40 [00:01:27.000] File '/user/username/projects/myproject/product/node_modules/module2.ts' does not exist. +Info 41 [00:01:28.000] File '/user/username/projects/myproject/product/node_modules/module2.tsx' does not exist. +Info 42 [00:01:29.000] File '/user/username/projects/myproject/product/node_modules/module2.d.ts' does not exist. +Info 43 [00:01:30.000] Directory '/user/username/projects/myproject/product/node_modules/@types' does not exist, skipping all lookups in it. +Info 44 [00:01:31.000] File '/user/username/projects/myproject/node_modules/module2/package.json' does not exist. +Info 45 [00:01:32.000] File '/user/username/projects/myproject/node_modules/module2.ts' does not exist. +Info 46 [00:01:33.000] File '/user/username/projects/myproject/node_modules/module2.tsx' does not exist. +Info 47 [00:01:34.000] File '/user/username/projects/myproject/node_modules/module2.d.ts' does not exist. +Info 48 [00:01:35.000] File '/user/username/projects/myproject/node_modules/module2/index.ts' exist - use it as a name resolution result. +Info 49 [00:01:36.000] Resolving real path for '/user/username/projects/myproject/node_modules/module2/index.ts', result '/user/username/projects/myproject/node_modules/module2/index.ts'. +Info 50 [00:01:37.000] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== +Info 51 [00:01:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/feature/file2.ts 500 undefined WatchType: Closed Script info +Info 52 [00:01:39.000] ======== Resolving module 'module1' from '/user/username/projects/myproject/product/src/feature/file2.ts'. ======== +Info 53 [00:01:40.000] Module resolution kind is not specified, using 'NodeJs'. +Info 54 [00:01:41.000] Loading module 'module1' from 'node_modules' folder, target file type 'TypeScript'. +Info 55 [00:01:42.000] Directory '/user/username/projects/myproject/product/src/feature/node_modules' does not exist, skipping all lookups in it. +Info 56 [00:01:43.000] Resolution for module 'module1' was found in cache from location '/user/username/projects/myproject/product/src'. +Info 57 [00:01:44.000] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. ======== +Info 58 [00:01:45.000] ======== Resolving module 'module2' from '/user/username/projects/myproject/product/src/feature/file2.ts'. ======== +Info 59 [00:01:46.000] Module resolution kind is not specified, using 'NodeJs'. +Info 60 [00:01:47.000] Loading module 'module2' from 'node_modules' folder, target file type 'TypeScript'. +Info 61 [00:01:48.000] Directory '/user/username/projects/myproject/product/src/feature/node_modules' does not exist, skipping all lookups in it. +Info 62 [00:01:49.000] Resolution for module 'module2' was found in cache from location '/user/username/projects/myproject/product/src'. +Info 63 [00:01:50.000] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== +Info 64 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 65 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 66 [00:01:53.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 67 [00:01:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 68 [00:01:55.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/file4.ts 500 undefined WatchType: Closed Script info +Info 69 [00:01:56.000] ======== Resolving module 'module1' from '/user/username/projects/myproject/product/test/file4.ts'. ======== +Info 70 [00:01:57.000] Module resolution kind is not specified, using 'NodeJs'. +Info 71 [00:01:58.000] Loading module 'module1' from 'node_modules' folder, target file type 'TypeScript'. +Info 72 [00:01:59.000] Directory '/user/username/projects/myproject/product/test/node_modules' does not exist, skipping all lookups in it. +Info 73 [00:02:00.000] Resolution for module 'module1' was found in cache from location '/user/username/projects/myproject/product'. +Info 74 [00:02:01.000] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. ======== +Info 75 [00:02:02.000] ======== Resolving module 'module2' from '/user/username/projects/myproject/product/test/file4.ts'. ======== +Info 76 [00:02:03.000] Module resolution kind is not specified, using 'NodeJs'. +Info 77 [00:02:04.000] Loading module 'module2' from 'node_modules' folder, target file type 'TypeScript'. +Info 78 [00:02:05.000] Directory '/user/username/projects/myproject/product/test/node_modules' does not exist, skipping all lookups in it. +Info 79 [00:02:06.000] Resolution for module 'module2' was found in cache from location '/user/username/projects/myproject/product'. +Info 80 [00:02:07.000] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== +Info 81 [00:02:08.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/src/file3.ts 500 undefined WatchType: Closed Script info +Info 82 [00:02:09.000] ======== Resolving module 'module1' from '/user/username/projects/myproject/product/test/src/file3.ts'. ======== +Info 83 [00:02:10.000] Module resolution kind is not specified, using 'NodeJs'. +Info 84 [00:02:11.000] Loading module 'module1' from 'node_modules' folder, target file type 'TypeScript'. +Info 85 [00:02:12.000] Directory '/user/username/projects/myproject/product/test/src/node_modules' does not exist, skipping all lookups in it. +Info 86 [00:02:13.000] Resolution for module 'module1' was found in cache from location '/user/username/projects/myproject/product/test'. +Info 87 [00:02:14.000] ======== Module name 'module1' was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. ======== +Info 88 [00:02:15.000] ======== Resolving module 'module2' from '/user/username/projects/myproject/product/test/src/file3.ts'. ======== +Info 89 [00:02:16.000] Module resolution kind is not specified, using 'NodeJs'. +Info 90 [00:02:17.000] Loading module 'module2' from 'node_modules' folder, target file type 'TypeScript'. +Info 91 [00:02:18.000] Directory '/user/username/projects/myproject/product/test/src/node_modules' does not exist, skipping all lookups in it. +Info 92 [00:02:19.000] Resolution for module 'module2' was found in cache from location '/user/username/projects/myproject/product/test'. +Info 93 [00:02:20.000] ======== Module name 'module2' was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. ======== +Info 94 [00:02:21.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 95 [00:02:22.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 96 [00:02:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 97 [00:02:24.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 98 [00:02:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 99 [00:02:26.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/feature 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 100 [00:02:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/feature 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 101 [00:02:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 102 [00:02:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 103 [00:02:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 104 [00:02:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/src/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 105 [00:02:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 106 [00:02:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 107 [00:02:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 108 [00:02:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 109 [00:02:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 110 [00:02:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 111 [00:02:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 112 [00:02:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 113 [00:02:40.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 114 [00:02:41.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 115 [00:02:42.000] Files (7) /a/lib/lib.d.ts /user/username/projects/myproject/product/node_modules/module1/index.ts /user/username/projects/myproject/node_modules/module2/index.ts @@ -184,26 +183,26 @@ Info 116 [00:02:43.000] Files (7) file1.ts Root file specified for compilation -Info 117 [00:02:44.000] ----------------------------------------------- -Info 118 [00:02:45.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 118 [00:02:46.000] Files (7) +Info 116 [00:02:43.000] ----------------------------------------------- +Info 117 [00:02:44.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 117 [00:02:45.000] Files (7) -Info 118 [00:02:47.000] ----------------------------------------------- -Info 118 [00:02:48.000] Open files: -Info 118 [00:02:49.000] FileName: /user/username/projects/myproject/product/src/file1.ts ProjectRootPath: undefined -Info 118 [00:02:50.000] Projects: /dev/null/inferredProject1* -Info 118 [00:02:57.000] FileWatcher:: Triggered with /user/username/projects/myproject/product/src/feature/file2.ts 1:: WatchInfo: /user/username/projects/myproject/product/src/feature/file2.ts 500 undefined WatchType: Closed Script info -Info 119 [00:02:58.000] Scheduled: /dev/null/inferredProject1* -Info 120 [00:02:59.000] Scheduled: *ensureProjectForOpenFiles* -Info 121 [00:03:00.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/product/src/feature/file2.ts 1:: WatchInfo: /user/username/projects/myproject/product/src/feature/file2.ts 500 undefined WatchType: Closed Script info -Info 122 [00:03:04.000] FileWatcher:: Triggered with /user/username/projects/myproject/product/test/src/file3.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/src/file3.ts 500 undefined WatchType: Closed Script info -Info 123 [00:03:05.000] Scheduled: /dev/null/inferredProject1*, Cancelled earlier one -Info 124 [00:03:06.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 125 [00:03:07.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/product/test/src/file3.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/src/file3.ts 500 undefined WatchType: Closed Script info -Info 126 [00:03:11.000] FileWatcher:: Triggered with /user/username/projects/myproject/product/test/file4.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/file4.ts 500 undefined WatchType: Closed Script info -Info 127 [00:03:12.000] Scheduled: /dev/null/inferredProject1*, Cancelled earlier one -Info 128 [00:03:13.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 129 [00:03:14.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/product/test/file4.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/file4.ts 500 undefined WatchType: Closed Script info +Info 117 [00:02:46.000] ----------------------------------------------- +Info 117 [00:02:47.000] Open files: +Info 117 [00:02:48.000] FileName: /user/username/projects/myproject/product/src/file1.ts ProjectRootPath: undefined +Info 117 [00:02:49.000] Projects: /dev/null/inferredProject1* +Info 117 [00:02:56.000] FileWatcher:: Triggered with /user/username/projects/myproject/product/src/feature/file2.ts 1:: WatchInfo: /user/username/projects/myproject/product/src/feature/file2.ts 500 undefined WatchType: Closed Script info +Info 118 [00:02:57.000] Scheduled: /dev/null/inferredProject1* +Info 119 [00:02:58.000] Scheduled: *ensureProjectForOpenFiles* +Info 120 [00:02:59.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/product/src/feature/file2.ts 1:: WatchInfo: /user/username/projects/myproject/product/src/feature/file2.ts 500 undefined WatchType: Closed Script info +Info 121 [00:03:03.000] FileWatcher:: Triggered with /user/username/projects/myproject/product/test/src/file3.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/src/file3.ts 500 undefined WatchType: Closed Script info +Info 122 [00:03:04.000] Scheduled: /dev/null/inferredProject1*, Cancelled earlier one +Info 123 [00:03:05.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 124 [00:03:06.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/product/test/src/file3.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/src/file3.ts 500 undefined WatchType: Closed Script info +Info 125 [00:03:10.000] FileWatcher:: Triggered with /user/username/projects/myproject/product/test/file4.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/file4.ts 500 undefined WatchType: Closed Script info +Info 126 [00:03:11.000] Scheduled: /dev/null/inferredProject1*, Cancelled earlier one +Info 127 [00:03:12.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 128 [00:03:13.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/product/test/file4.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/file4.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/product/src/file1.ts] import "./feature/file2"; import "../test/file4"; import "../test/src/file3"; import { module1 } from "module1";import { module2 } from "module2";import { module1 } from "module1";import { module2 } from "module2"; @@ -262,38 +261,38 @@ FsWatchesRecursive:: /user/username/projects/myproject/product/src/feature: {} -Info 130 [00:03:15.000] Running: /dev/null/inferredProject1* -Info 131 [00:03:16.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 132 [00:03:17.000] Reusing resolution of module './feature/file2' from '/user/username/projects/myproject/product/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/src/feature/file2.ts'. -Info 133 [00:03:18.000] Reusing resolution of module '../test/file4' from '/user/username/projects/myproject/product/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/test/file4.ts'. -Info 134 [00:03:19.000] Reusing resolution of module '../test/src/file3' from '/user/username/projects/myproject/product/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/test/src/file3.ts'. -Info 135 [00:03:20.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/product/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. -Info 136 [00:03:21.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/product/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. -Info 137 [00:03:22.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/product/src/feature/file2.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. -Info 138 [00:03:23.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/product/src/feature/file2.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. -Info 139 [00:03:24.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/product/test/file4.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. -Info 140 [00:03:25.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/product/test/file4.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. -Info 141 [00:03:26.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/product/test/src/file3.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. -Info 142 [00:03:27.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/product/test/src/file3.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. -Info 143 [00:03:28.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 144 [00:03:29.000] Different program with same set of files -Info 145 [00:03:30.000] Running: *ensureProjectForOpenFiles* -Info 146 [00:03:31.000] Before ensureProjectForOpenFiles: -Info 147 [00:03:32.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 147 [00:03:33.000] Files (7) +Info 129 [00:03:14.000] Running: /dev/null/inferredProject1* +Info 130 [00:03:15.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 131 [00:03:16.000] Reusing resolution of module './feature/file2' from '/user/username/projects/myproject/product/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/src/feature/file2.ts'. +Info 132 [00:03:17.000] Reusing resolution of module '../test/file4' from '/user/username/projects/myproject/product/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/test/file4.ts'. +Info 133 [00:03:18.000] Reusing resolution of module '../test/src/file3' from '/user/username/projects/myproject/product/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/test/src/file3.ts'. +Info 134 [00:03:19.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/product/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. +Info 135 [00:03:20.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/product/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. +Info 136 [00:03:21.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/product/src/feature/file2.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. +Info 137 [00:03:22.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/product/src/feature/file2.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. +Info 138 [00:03:23.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/product/test/file4.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. +Info 139 [00:03:24.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/product/test/file4.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. +Info 140 [00:03:25.000] Reusing resolution of module 'module1' from '/user/username/projects/myproject/product/test/src/file3.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/node_modules/module1/index.ts'. +Info 141 [00:03:26.000] Reusing resolution of module 'module2' from '/user/username/projects/myproject/product/test/src/file3.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/node_modules/module2/index.ts'. +Info 142 [00:03:27.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 143 [00:03:28.000] Different program with same set of files +Info 144 [00:03:29.000] Running: *ensureProjectForOpenFiles* +Info 145 [00:03:30.000] Before ensureProjectForOpenFiles: +Info 146 [00:03:31.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 146 [00:03:32.000] Files (7) -Info 147 [00:03:34.000] ----------------------------------------------- -Info 147 [00:03:35.000] Open files: -Info 147 [00:03:36.000] FileName: /user/username/projects/myproject/product/src/file1.ts ProjectRootPath: undefined -Info 147 [00:03:37.000] Projects: /dev/null/inferredProject1* -Info 147 [00:03:38.000] After ensureProjectForOpenFiles: -Info 148 [00:03:39.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 148 [00:03:40.000] Files (7) +Info 146 [00:03:33.000] ----------------------------------------------- +Info 146 [00:03:34.000] Open files: +Info 146 [00:03:35.000] FileName: /user/username/projects/myproject/product/src/file1.ts ProjectRootPath: undefined +Info 146 [00:03:36.000] Projects: /dev/null/inferredProject1* +Info 146 [00:03:37.000] After ensureProjectForOpenFiles: +Info 147 [00:03:38.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 147 [00:03:39.000] Files (7) -Info 148 [00:03:41.000] ----------------------------------------------- -Info 148 [00:03:42.000] Open files: -Info 148 [00:03:43.000] FileName: /user/username/projects/myproject/product/src/file1.ts ProjectRootPath: undefined -Info 148 [00:03:44.000] Projects: /dev/null/inferredProject1* +Info 147 [00:03:40.000] ----------------------------------------------- +Info 147 [00:03:41.000] Open files: +Info 147 [00:03:42.000] FileName: /user/username/projects/myproject/product/src/file1.ts ProjectRootPath: undefined +Info 147 [00:03:43.000] Projects: /dev/null/inferredProject1* After running timeout callbacks PolledWatches:: diff --git a/tests/baselines/reference/tsserver/resolutionCache/npm-install-@types-works.js b/tests/baselines/reference/tsserver/resolutionCache/npm-install-@types-works.js index 046b441461430..05c651740d7c5 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/npm-install-@types-works.js +++ b/tests/baselines/reference/tsserver/resolutionCache/npm-install-@types-works.js @@ -37,18 +37,17 @@ FsWatchesRecursive:: Info 2 [00:00:19.000] Search path: /a/b/projects/temp Info 3 [00:00:20.000] For info: /a/b/projects/temp/a.ts :: No config files found. -Info 4 [00:00:21.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 5 [00:00:22.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 6 [00:00:23.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 7 [00:00:24.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 8 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 9 [00:00:26.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 10 [00:00:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 11 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 12 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 13 [00:00:30.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 14 [00:00:31.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 15 [00:00:32.000] Files (2) +Info 4 [00:00:21.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/temp/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 5 [00:00:22.000] FileWatcher:: Added:: WatchInfo: /a/b/projects/temp/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 6 [00:00:23.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 7 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 8 [00:00:25.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 9 [00:00:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 10 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 11 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 12 [00:00:29.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 13 [00:00:30.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 14 [00:00:31.000] Files (2) /a/lib/lib.d.ts /a/b/projects/temp/a.ts @@ -58,14 +57,14 @@ Info 15 [00:00:32.000] Files (2) a.ts Root file specified for compilation -Info 16 [00:00:33.000] ----------------------------------------------- -Info 17 [00:00:34.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 17 [00:00:35.000] Files (2) +Info 15 [00:00:32.000] ----------------------------------------------- +Info 16 [00:00:33.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 16 [00:00:34.000] Files (2) -Info 17 [00:00:36.000] ----------------------------------------------- -Info 17 [00:00:37.000] Open files: -Info 17 [00:00:38.000] FileName: /a/b/projects/temp/a.ts ProjectRootPath: /a/b/projects/temp -Info 17 [00:00:39.000] Projects: /dev/null/inferredProject1* +Info 16 [00:00:35.000] ----------------------------------------------- +Info 16 [00:00:36.000] Open files: +Info 16 [00:00:37.000] FileName: /a/b/projects/temp/a.ts ProjectRootPath: /a/b/projects/temp +Info 16 [00:00:38.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -84,11 +83,11 @@ FsWatches:: FsWatchesRecursive:: -Info 17 [00:00:40.000] response: +Info 16 [00:00:39.000] response: { "responseRequired": false } -Info 18 [00:00:41.000] request: +Info 17 [00:00:40.000] request: { "command": "geterr", "arguments": { @@ -136,7 +135,7 @@ FsWatches:: FsWatchesRecursive:: -Info 19 [00:00:42.000] response: +Info 18 [00:00:41.000] response: { "responseRequired": false } @@ -158,7 +157,7 @@ FsWatches:: FsWatchesRecursive:: -Info 20 [00:00:43.000] event: +Info 19 [00:00:42.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/a/b/projects/temp/a.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -196,7 +195,7 @@ FsWatches:: FsWatchesRecursive:: -Info 21 [00:00:44.000] event: +Info 20 [00:00:43.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/a/b/projects/temp/a.ts","diagnostics":[{"start":{"line":1,"offset":20},"end":{"line":1,"offset":25},"text":"Cannot find module 'pad' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -234,9 +233,9 @@ FsWatches:: FsWatchesRecursive:: -Info 22 [00:00:45.000] event: +Info 21 [00:00:44.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/a/b/projects/temp/a.ts","diagnostics":[]}} -Info 23 [00:00:46.000] event: +Info 22 [00:00:45.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) @@ -256,33 +255,33 @@ FsWatches:: FsWatchesRecursive:: -Info 24 [00:00:52.000] DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules :: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 25 [00:00:53.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation -Info 26 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules :: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 27 [00:00:55.000] DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules :: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 28 [00:00:56.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation, Cancelled earlier one -Info 29 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules :: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 30 [00:00:59.000] DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules/@types :: WatchInfo: /a/b/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 31 [00:01:00.000] Scheduled: /dev/null/inferredProject1* -Info 32 [00:01:01.000] Scheduled: *ensureProjectForOpenFiles* -Info 33 [00:01:02.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation, Cancelled earlier one -Info 34 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules/@types :: WatchInfo: /a/b/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 35 [00:01:04.000] DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules/@types :: WatchInfo: /a/b/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 36 [00:01:05.000] Scheduled: /dev/null/inferredProject1*, Cancelled earlier one -Info 37 [00:01:06.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 38 [00:01:07.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation, Cancelled earlier one -Info 39 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules/@types :: WatchInfo: /a/b/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 40 [00:01:09.000] DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules/@types :: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 41 [00:01:10.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation, Cancelled earlier one -Info 42 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules/@types :: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 43 [00:01:13.000] DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules/@types/pad :: WatchInfo: /a/b/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 44 [00:01:14.000] Scheduled: /dev/null/inferredProject1*, Cancelled earlier one -Info 45 [00:01:15.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 46 [00:01:16.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation, Cancelled earlier one -Info 47 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules/@types/pad :: WatchInfo: /a/b/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 48 [00:01:18.000] DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules/@types/pad :: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 49 [00:01:19.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation, Cancelled earlier one -Info 50 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules/@types/pad :: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 23 [00:00:51.000] DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules :: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 24 [00:00:52.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation +Info 25 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules :: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 26 [00:00:54.000] DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules :: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 27 [00:00:55.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation, Cancelled earlier one +Info 28 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules :: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 29 [00:00:58.000] DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules/@types :: WatchInfo: /a/b/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 30 [00:00:59.000] Scheduled: /dev/null/inferredProject1* +Info 31 [00:01:00.000] Scheduled: *ensureProjectForOpenFiles* +Info 32 [00:01:01.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation, Cancelled earlier one +Info 33 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules/@types :: WatchInfo: /a/b/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 34 [00:01:03.000] DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules/@types :: WatchInfo: /a/b/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 35 [00:01:04.000] Scheduled: /dev/null/inferredProject1*, Cancelled earlier one +Info 36 [00:01:05.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 37 [00:01:06.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation, Cancelled earlier one +Info 38 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules/@types :: WatchInfo: /a/b/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 39 [00:01:08.000] DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules/@types :: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 40 [00:01:09.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation, Cancelled earlier one +Info 41 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules/@types :: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 42 [00:01:12.000] DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules/@types/pad :: WatchInfo: /a/b/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 43 [00:01:13.000] Scheduled: /dev/null/inferredProject1*, Cancelled earlier one +Info 44 [00:01:14.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 45 [00:01:15.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation, Cancelled earlier one +Info 46 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules/@types/pad :: WatchInfo: /a/b/projects/temp/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 47 [00:01:17.000] DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules/@types/pad :: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 48 [00:01:18.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation, Cancelled earlier one +Info 49 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/projects/temp/node_modules/@types/pad :: WatchInfo: /a/b/projects/temp/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Before running timeout callbacks //// [/a/b/projects/temp/node_modules/@types/pad/index.d.ts] export = pad;declare function pad(length: number, text: string, char ?: string): string; @@ -304,14 +303,14 @@ FsWatchesRecursive:: /a/b/projects/temp/node_modules/@types: {} -Info 51 [00:01:22.000] Running: /dev/null/inferredProject1* -Info 52 [00:01:23.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 53 [00:01:24.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 54 [00:01:25.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/temp/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 55 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/temp/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 56 [00:01:27.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 57 [00:01:28.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 58 [00:01:29.000] Files (3) +Info 50 [00:01:21.000] Running: /dev/null/inferredProject1* +Info 51 [00:01:22.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 52 [00:01:23.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 53 [00:01:24.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/temp/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 54 [00:01:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/projects/temp/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 55 [00:01:26.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 56 [00:01:27.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 57 [00:01:28.000] Files (3) /a/lib/lib.d.ts /a/b/projects/temp/node_modules/@types/pad/index.d.ts /a/b/projects/temp/a.ts @@ -325,7 +324,7 @@ Info 58 [00:01:29.000] Files (3) a.ts Root file specified for compilation -Info 59 [00:01:30.000] ----------------------------------------------- +Info 58 [00:01:29.000] ----------------------------------------------- After running timeout callbacks PolledWatches:: @@ -362,25 +361,25 @@ FsWatchesRecursive:: /a/b/projects/temp/node_modules/@types: {} -Info 60 [00:01:31.000] Running: *ensureProjectForOpenFiles* -Info 61 [00:01:32.000] Before ensureProjectForOpenFiles: -Info 62 [00:01:33.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 62 [00:01:34.000] Files (3) - -Info 62 [00:01:35.000] ----------------------------------------------- -Info 62 [00:01:36.000] Open files: -Info 62 [00:01:37.000] FileName: /a/b/projects/temp/a.ts ProjectRootPath: /a/b/projects/temp -Info 62 [00:01:38.000] Projects: /dev/null/inferredProject1* -Info 62 [00:01:39.000] After ensureProjectForOpenFiles: -Info 63 [00:01:40.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 63 [00:01:41.000] Files (3) - -Info 63 [00:01:42.000] ----------------------------------------------- -Info 63 [00:01:43.000] Open files: -Info 63 [00:01:44.000] FileName: /a/b/projects/temp/a.ts ProjectRootPath: /a/b/projects/temp -Info 63 [00:01:45.000] Projects: /dev/null/inferredProject1* -Info 63 [00:01:46.000] got projects updated in background, updating diagnostics for /a/b/projects/temp/a.ts -Info 64 [00:01:47.000] event: +Info 59 [00:01:30.000] Running: *ensureProjectForOpenFiles* +Info 60 [00:01:31.000] Before ensureProjectForOpenFiles: +Info 61 [00:01:32.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 61 [00:01:33.000] Files (3) + +Info 61 [00:01:34.000] ----------------------------------------------- +Info 61 [00:01:35.000] Open files: +Info 61 [00:01:36.000] FileName: /a/b/projects/temp/a.ts ProjectRootPath: /a/b/projects/temp +Info 61 [00:01:37.000] Projects: /dev/null/inferredProject1* +Info 61 [00:01:38.000] After ensureProjectForOpenFiles: +Info 62 [00:01:39.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 62 [00:01:40.000] Files (3) + +Info 62 [00:01:41.000] ----------------------------------------------- +Info 62 [00:01:42.000] Open files: +Info 62 [00:01:43.000] FileName: /a/b/projects/temp/a.ts ProjectRootPath: /a/b/projects/temp +Info 62 [00:01:44.000] Projects: /dev/null/inferredProject1* +Info 62 [00:01:45.000] got projects updated in background, updating diagnostics for /a/b/projects/temp/a.ts +Info 63 [00:01:46.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/a/b/projects/temp/a.ts"]}} After running timeout callbacks @@ -418,7 +417,7 @@ FsWatchesRecursive:: /a/b/projects/temp/node_modules/@types: {} -Info 65 [00:01:48.000] event: +Info 64 [00:01:47.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/a/b/projects/temp/a.ts","diagnostics":[]}} After running timeout callbacks @@ -456,7 +455,7 @@ FsWatchesRecursive:: /a/b/projects/temp/node_modules/@types: {} -Info 66 [00:01:49.000] event: +Info 65 [00:01:48.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/a/b/projects/temp/a.ts","diagnostics":[]}} Before running immediate callbacks diff --git a/tests/baselines/reference/tsserver/resolutionCache/relative-module-name-from-files-in-different-folders.js b/tests/baselines/reference/tsserver/resolutionCache/relative-module-name-from-files-in-different-folders.js index e992bc62437be..321cdeabd21a1 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/relative-module-name-from-files-in-different-folders.js +++ b/tests/baselines/reference/tsserver/resolutionCache/relative-module-name-from-files-in-different-folders.js @@ -61,68 +61,67 @@ Info 5 [00:00:46.000] Config: /user/username/projects/myproject/tsconfig.json } Info 6 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 7 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:49.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/module2.ts 500 undefined WatchType: Closed Script info -Info 10 [00:00:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/module1.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/feature/file2.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/file4.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:54.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/src/file3.ts 500 undefined WatchType: Closed Script info -Info 14 [00:00:55.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 15 [00:00:56.000] ======== Resolving module './module1' from '/user/username/projects/myproject/product/src/file1.ts'. ======== -Info 16 [00:00:57.000] Module resolution kind is not specified, using 'NodeJs'. -Info 17 [00:00:58.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/src/module1', target file type 'TypeScript'. -Info 18 [00:00:59.000] File '/user/username/projects/myproject/product/src/module1.ts' exist - use it as a name resolution result. -Info 19 [00:01:00.000] ======== Module name './module1' was successfully resolved to '/user/username/projects/myproject/product/src/module1.ts'. ======== -Info 20 [00:01:01.000] ======== Resolving module '../module2' from '/user/username/projects/myproject/product/src/file1.ts'. ======== -Info 21 [00:01:02.000] Module resolution kind is not specified, using 'NodeJs'. -Info 22 [00:01:03.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/module2', target file type 'TypeScript'. -Info 23 [00:01:04.000] File '/user/username/projects/myproject/product/module2.ts' exist - use it as a name resolution result. -Info 24 [00:01:05.000] ======== Module name '../module2' was successfully resolved to '/user/username/projects/myproject/product/module2.ts'. ======== -Info 25 [00:01:06.000] ======== Resolving module '../module1' from '/user/username/projects/myproject/product/src/feature/file2.ts'. ======== -Info 26 [00:01:07.000] Module resolution kind is not specified, using 'NodeJs'. -Info 27 [00:01:08.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/src/module1', target file type 'TypeScript'. -Info 28 [00:01:09.000] File '/user/username/projects/myproject/product/src/module1.ts' exist - use it as a name resolution result. -Info 29 [00:01:10.000] ======== Module name '../module1' was successfully resolved to '/user/username/projects/myproject/product/src/module1.ts'. ======== -Info 30 [00:01:11.000] ======== Resolving module '../../module2' from '/user/username/projects/myproject/product/src/feature/file2.ts'. ======== -Info 31 [00:01:12.000] Module resolution kind is not specified, using 'NodeJs'. -Info 32 [00:01:13.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/module2', target file type 'TypeScript'. -Info 33 [00:01:14.000] File '/user/username/projects/myproject/product/module2.ts' exist - use it as a name resolution result. -Info 34 [00:01:15.000] ======== Module name '../../module2' was successfully resolved to '/user/username/projects/myproject/product/module2.ts'. ======== -Info 35 [00:01:16.000] ======== Resolving module '../src/module1}' from '/user/username/projects/myproject/product/test/file4.ts'. ======== -Info 36 [00:01:17.000] Module resolution kind is not specified, using 'NodeJs'. -Info 37 [00:01:18.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/src/module1}', target file type 'TypeScript'. -Info 38 [00:01:19.000] File '/user/username/projects/myproject/product/src/module1}.ts' does not exist. -Info 39 [00:01:20.000] File '/user/username/projects/myproject/product/src/module1}.tsx' does not exist. -Info 40 [00:01:21.000] File '/user/username/projects/myproject/product/src/module1}.d.ts' does not exist. -Info 41 [00:01:22.000] Directory '/user/username/projects/myproject/product/src/module1}' does not exist, skipping all lookups in it. -Info 42 [00:01:23.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/src/module1}', target file type 'JavaScript'. -Info 43 [00:01:24.000] File '/user/username/projects/myproject/product/src/module1}.js' does not exist. -Info 44 [00:01:25.000] File '/user/username/projects/myproject/product/src/module1}.jsx' does not exist. -Info 45 [00:01:26.000] Directory '/user/username/projects/myproject/product/src/module1}' does not exist, skipping all lookups in it. -Info 46 [00:01:27.000] ======== Module name '../src/module1}' was not resolved. ======== -Info 47 [00:01:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 48 [00:01:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 49 [00:01:30.000] ======== Resolving module '../module2' from '/user/username/projects/myproject/product/test/file4.ts'. ======== -Info 50 [00:01:31.000] Module resolution kind is not specified, using 'NodeJs'. -Info 51 [00:01:32.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/module2', target file type 'TypeScript'. -Info 52 [00:01:33.000] File '/user/username/projects/myproject/product/module2.ts' exist - use it as a name resolution result. -Info 53 [00:01:34.000] ======== Module name '../module2' was successfully resolved to '/user/username/projects/myproject/product/module2.ts'. ======== -Info 54 [00:01:35.000] ======== Resolving module '../../src/module1' from '/user/username/projects/myproject/product/test/src/file3.ts'. ======== -Info 55 [00:01:36.000] Module resolution kind is not specified, using 'NodeJs'. -Info 56 [00:01:37.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/src/module1', target file type 'TypeScript'. -Info 57 [00:01:38.000] File '/user/username/projects/myproject/product/src/module1.ts' exist - use it as a name resolution result. -Info 58 [00:01:39.000] ======== Module name '../../src/module1' was successfully resolved to '/user/username/projects/myproject/product/src/module1.ts'. ======== -Info 59 [00:01:40.000] ======== Resolving module '../../module2' from '/user/username/projects/myproject/product/test/src/file3.ts'. ======== -Info 60 [00:01:41.000] Module resolution kind is not specified, using 'NodeJs'. -Info 61 [00:01:42.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/module2', target file type 'TypeScript'. -Info 62 [00:01:43.000] File '/user/username/projects/myproject/product/module2.ts' exist - use it as a name resolution result. -Info 63 [00:01:44.000] ======== Module name '../../module2' was successfully resolved to '/user/username/projects/myproject/product/module2.ts'. ======== -Info 64 [00:01:45.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 65 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 66 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 67 [00:01:48.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 68 [00:01:49.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 69 [00:01:50.000] Files (7) +Info 8 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/module2.ts 500 undefined WatchType: Closed Script info +Info 9 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/module1.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:51.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/src/feature/file2.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:52.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/file4.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:53.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product/test/src/file3.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:54.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 14 [00:00:55.000] ======== Resolving module './module1' from '/user/username/projects/myproject/product/src/file1.ts'. ======== +Info 15 [00:00:56.000] Module resolution kind is not specified, using 'NodeJs'. +Info 16 [00:00:57.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/src/module1', target file type 'TypeScript'. +Info 17 [00:00:58.000] File '/user/username/projects/myproject/product/src/module1.ts' exist - use it as a name resolution result. +Info 18 [00:00:59.000] ======== Module name './module1' was successfully resolved to '/user/username/projects/myproject/product/src/module1.ts'. ======== +Info 19 [00:01:00.000] ======== Resolving module '../module2' from '/user/username/projects/myproject/product/src/file1.ts'. ======== +Info 20 [00:01:01.000] Module resolution kind is not specified, using 'NodeJs'. +Info 21 [00:01:02.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/module2', target file type 'TypeScript'. +Info 22 [00:01:03.000] File '/user/username/projects/myproject/product/module2.ts' exist - use it as a name resolution result. +Info 23 [00:01:04.000] ======== Module name '../module2' was successfully resolved to '/user/username/projects/myproject/product/module2.ts'. ======== +Info 24 [00:01:05.000] ======== Resolving module '../module1' from '/user/username/projects/myproject/product/src/feature/file2.ts'. ======== +Info 25 [00:01:06.000] Module resolution kind is not specified, using 'NodeJs'. +Info 26 [00:01:07.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/src/module1', target file type 'TypeScript'. +Info 27 [00:01:08.000] File '/user/username/projects/myproject/product/src/module1.ts' exist - use it as a name resolution result. +Info 28 [00:01:09.000] ======== Module name '../module1' was successfully resolved to '/user/username/projects/myproject/product/src/module1.ts'. ======== +Info 29 [00:01:10.000] ======== Resolving module '../../module2' from '/user/username/projects/myproject/product/src/feature/file2.ts'. ======== +Info 30 [00:01:11.000] Module resolution kind is not specified, using 'NodeJs'. +Info 31 [00:01:12.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/module2', target file type 'TypeScript'. +Info 32 [00:01:13.000] File '/user/username/projects/myproject/product/module2.ts' exist - use it as a name resolution result. +Info 33 [00:01:14.000] ======== Module name '../../module2' was successfully resolved to '/user/username/projects/myproject/product/module2.ts'. ======== +Info 34 [00:01:15.000] ======== Resolving module '../src/module1}' from '/user/username/projects/myproject/product/test/file4.ts'. ======== +Info 35 [00:01:16.000] Module resolution kind is not specified, using 'NodeJs'. +Info 36 [00:01:17.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/src/module1}', target file type 'TypeScript'. +Info 37 [00:01:18.000] File '/user/username/projects/myproject/product/src/module1}.ts' does not exist. +Info 38 [00:01:19.000] File '/user/username/projects/myproject/product/src/module1}.tsx' does not exist. +Info 39 [00:01:20.000] File '/user/username/projects/myproject/product/src/module1}.d.ts' does not exist. +Info 40 [00:01:21.000] Directory '/user/username/projects/myproject/product/src/module1}' does not exist, skipping all lookups in it. +Info 41 [00:01:22.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/src/module1}', target file type 'JavaScript'. +Info 42 [00:01:23.000] File '/user/username/projects/myproject/product/src/module1}.js' does not exist. +Info 43 [00:01:24.000] File '/user/username/projects/myproject/product/src/module1}.jsx' does not exist. +Info 44 [00:01:25.000] Directory '/user/username/projects/myproject/product/src/module1}' does not exist, skipping all lookups in it. +Info 45 [00:01:26.000] ======== Module name '../src/module1}' was not resolved. ======== +Info 46 [00:01:27.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 47 [00:01:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/product 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 48 [00:01:29.000] ======== Resolving module '../module2' from '/user/username/projects/myproject/product/test/file4.ts'. ======== +Info 49 [00:01:30.000] Module resolution kind is not specified, using 'NodeJs'. +Info 50 [00:01:31.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/module2', target file type 'TypeScript'. +Info 51 [00:01:32.000] File '/user/username/projects/myproject/product/module2.ts' exist - use it as a name resolution result. +Info 52 [00:01:33.000] ======== Module name '../module2' was successfully resolved to '/user/username/projects/myproject/product/module2.ts'. ======== +Info 53 [00:01:34.000] ======== Resolving module '../../src/module1' from '/user/username/projects/myproject/product/test/src/file3.ts'. ======== +Info 54 [00:01:35.000] Module resolution kind is not specified, using 'NodeJs'. +Info 55 [00:01:36.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/src/module1', target file type 'TypeScript'. +Info 56 [00:01:37.000] File '/user/username/projects/myproject/product/src/module1.ts' exist - use it as a name resolution result. +Info 57 [00:01:38.000] ======== Module name '../../src/module1' was successfully resolved to '/user/username/projects/myproject/product/src/module1.ts'. ======== +Info 58 [00:01:39.000] ======== Resolving module '../../module2' from '/user/username/projects/myproject/product/test/src/file3.ts'. ======== +Info 59 [00:01:40.000] Module resolution kind is not specified, using 'NodeJs'. +Info 60 [00:01:41.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/product/module2', target file type 'TypeScript'. +Info 61 [00:01:42.000] File '/user/username/projects/myproject/product/module2.ts' exist - use it as a name resolution result. +Info 62 [00:01:43.000] ======== Module name '../../module2' was successfully resolved to '/user/username/projects/myproject/product/module2.ts'. ======== +Info 63 [00:01:44.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 64 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 65 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 66 [00:01:47.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 67 [00:01:48.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 68 [00:01:49.000] Files (7) /a/lib/lib.d.ts /user/username/projects/myproject/product/module2.ts /user/username/projects/myproject/product/src/module1.ts @@ -154,26 +153,26 @@ Info 69 [00:01:50.000] Files (7) product/test/src/file3.ts Matched by default include pattern '**/*' -Info 70 [00:01:51.000] ----------------------------------------------- -Info 71 [00:01:52.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 71 [00:01:53.000] Files (7) +Info 69 [00:01:50.000] ----------------------------------------------- +Info 70 [00:01:51.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 70 [00:01:52.000] Files (7) -Info 71 [00:01:54.000] ----------------------------------------------- -Info 71 [00:01:55.000] Open files: -Info 71 [00:01:56.000] FileName: /user/username/projects/myproject/product/src/file1.ts ProjectRootPath: undefined -Info 71 [00:01:57.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 71 [00:02:04.000] FileWatcher:: Triggered with /user/username/projects/myproject/product/src/feature/file2.ts 1:: WatchInfo: /user/username/projects/myproject/product/src/feature/file2.ts 500 undefined WatchType: Closed Script info -Info 72 [00:02:05.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 73 [00:02:06.000] Scheduled: *ensureProjectForOpenFiles* -Info 74 [00:02:07.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/product/src/feature/file2.ts 1:: WatchInfo: /user/username/projects/myproject/product/src/feature/file2.ts 500 undefined WatchType: Closed Script info -Info 75 [00:02:11.000] FileWatcher:: Triggered with /user/username/projects/myproject/product/test/src/file3.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/src/file3.ts 500 undefined WatchType: Closed Script info -Info 76 [00:02:12.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 77 [00:02:13.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 78 [00:02:14.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/product/test/src/file3.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/src/file3.ts 500 undefined WatchType: Closed Script info -Info 79 [00:02:18.000] FileWatcher:: Triggered with /user/username/projects/myproject/product/test/file4.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/file4.ts 500 undefined WatchType: Closed Script info -Info 80 [00:02:19.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one -Info 81 [00:02:20.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 82 [00:02:21.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/product/test/file4.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/file4.ts 500 undefined WatchType: Closed Script info +Info 70 [00:01:53.000] ----------------------------------------------- +Info 70 [00:01:54.000] Open files: +Info 70 [00:01:55.000] FileName: /user/username/projects/myproject/product/src/file1.ts ProjectRootPath: undefined +Info 70 [00:01:56.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 70 [00:02:03.000] FileWatcher:: Triggered with /user/username/projects/myproject/product/src/feature/file2.ts 1:: WatchInfo: /user/username/projects/myproject/product/src/feature/file2.ts 500 undefined WatchType: Closed Script info +Info 71 [00:02:04.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 72 [00:02:05.000] Scheduled: *ensureProjectForOpenFiles* +Info 73 [00:02:06.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/product/src/feature/file2.ts 1:: WatchInfo: /user/username/projects/myproject/product/src/feature/file2.ts 500 undefined WatchType: Closed Script info +Info 74 [00:02:10.000] FileWatcher:: Triggered with /user/username/projects/myproject/product/test/src/file3.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/src/file3.ts 500 undefined WatchType: Closed Script info +Info 75 [00:02:11.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 76 [00:02:12.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 77 [00:02:13.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/product/test/src/file3.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/src/file3.ts 500 undefined WatchType: Closed Script info +Info 78 [00:02:17.000] FileWatcher:: Triggered with /user/username/projects/myproject/product/test/file4.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/file4.ts 500 undefined WatchType: Closed Script info +Info 79 [00:02:18.000] Scheduled: /user/username/projects/myproject/tsconfig.json, Cancelled earlier one +Info 80 [00:02:19.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 81 [00:02:20.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/product/test/file4.ts 1:: WatchInfo: /user/username/projects/myproject/product/test/file4.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/product/src/file1.ts] import { module1 } from "./module1";import { module2 } from "../module2";import { module1 } from "./module1";import { module2 } from "../module2"; @@ -214,35 +213,35 @@ FsWatchesRecursive:: /user/username/projects/myproject/product: {} -Info 83 [00:02:22.000] Running: /user/username/projects/myproject/tsconfig.json -Info 84 [00:02:23.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 85 [00:02:24.000] Reusing resolution of module './module1' from '/user/username/projects/myproject/product/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/src/module1.ts'. -Info 86 [00:02:25.000] Reusing resolution of module '../module2' from '/user/username/projects/myproject/product/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/module2.ts'. -Info 87 [00:02:26.000] Reusing resolution of module '../module1' from '/user/username/projects/myproject/product/src/feature/file2.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/src/module1.ts'. -Info 88 [00:02:27.000] Reusing resolution of module '../../module2' from '/user/username/projects/myproject/product/src/feature/file2.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/module2.ts'. -Info 89 [00:02:28.000] Reusing resolution of module '../src/module1}' from '/user/username/projects/myproject/product/test/file4.ts' of old program, it was not resolved. -Info 90 [00:02:29.000] Reusing resolution of module '../module2' from '/user/username/projects/myproject/product/test/file4.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/module2.ts'. -Info 91 [00:02:30.000] Reusing resolution of module '../../src/module1' from '/user/username/projects/myproject/product/test/src/file3.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/src/module1.ts'. -Info 92 [00:02:31.000] Reusing resolution of module '../../module2' from '/user/username/projects/myproject/product/test/src/file3.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/module2.ts'. -Info 93 [00:02:32.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 94 [00:02:33.000] Different program with same set of files -Info 95 [00:02:34.000] Running: *ensureProjectForOpenFiles* -Info 96 [00:02:35.000] Before ensureProjectForOpenFiles: -Info 97 [00:02:36.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 97 [00:02:37.000] Files (7) +Info 82 [00:02:21.000] Running: /user/username/projects/myproject/tsconfig.json +Info 83 [00:02:22.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 84 [00:02:23.000] Reusing resolution of module './module1' from '/user/username/projects/myproject/product/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/src/module1.ts'. +Info 85 [00:02:24.000] Reusing resolution of module '../module2' from '/user/username/projects/myproject/product/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/module2.ts'. +Info 86 [00:02:25.000] Reusing resolution of module '../module1' from '/user/username/projects/myproject/product/src/feature/file2.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/src/module1.ts'. +Info 87 [00:02:26.000] Reusing resolution of module '../../module2' from '/user/username/projects/myproject/product/src/feature/file2.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/module2.ts'. +Info 88 [00:02:27.000] Reusing resolution of module '../src/module1}' from '/user/username/projects/myproject/product/test/file4.ts' of old program, it was not resolved. +Info 89 [00:02:28.000] Reusing resolution of module '../module2' from '/user/username/projects/myproject/product/test/file4.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/module2.ts'. +Info 90 [00:02:29.000] Reusing resolution of module '../../src/module1' from '/user/username/projects/myproject/product/test/src/file3.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/src/module1.ts'. +Info 91 [00:02:30.000] Reusing resolution of module '../../module2' from '/user/username/projects/myproject/product/test/src/file3.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/product/module2.ts'. +Info 92 [00:02:31.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 93 [00:02:32.000] Different program with same set of files +Info 94 [00:02:33.000] Running: *ensureProjectForOpenFiles* +Info 95 [00:02:34.000] Before ensureProjectForOpenFiles: +Info 96 [00:02:35.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 96 [00:02:36.000] Files (7) -Info 97 [00:02:38.000] ----------------------------------------------- -Info 97 [00:02:39.000] Open files: -Info 97 [00:02:40.000] FileName: /user/username/projects/myproject/product/src/file1.ts ProjectRootPath: undefined -Info 97 [00:02:41.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 97 [00:02:42.000] After ensureProjectForOpenFiles: -Info 98 [00:02:43.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 98 [00:02:44.000] Files (7) +Info 96 [00:02:37.000] ----------------------------------------------- +Info 96 [00:02:38.000] Open files: +Info 96 [00:02:39.000] FileName: /user/username/projects/myproject/product/src/file1.ts ProjectRootPath: undefined +Info 96 [00:02:40.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 96 [00:02:41.000] After ensureProjectForOpenFiles: +Info 97 [00:02:42.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 97 [00:02:43.000] Files (7) -Info 98 [00:02:45.000] ----------------------------------------------- -Info 98 [00:02:46.000] Open files: -Info 98 [00:02:47.000] FileName: /user/username/projects/myproject/product/src/file1.ts ProjectRootPath: undefined -Info 98 [00:02:48.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 97 [00:02:44.000] ----------------------------------------------- +Info 97 [00:02:45.000] Open files: +Info 97 [00:02:46.000] FileName: /user/username/projects/myproject/product/src/file1.ts ProjectRootPath: undefined +Info 97 [00:02:47.000] Projects: /user/username/projects/myproject/tsconfig.json After running timeout callbacks PolledWatches:: diff --git a/tests/baselines/reference/tsserver/resolutionCache/relative-module-name-from-files-in-same-folder.js b/tests/baselines/reference/tsserver/resolutionCache/relative-module-name-from-files-in-same-folder.js index 372b747792bb4..dec53b0c2da02 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/relative-module-name-from-files-in-same-folder.js +++ b/tests/baselines/reference/tsserver/resolutionCache/relative-module-name-from-files-in-same-folder.js @@ -53,29 +53,28 @@ Info 5 [00:00:34.000] Config: /user/username/projects/myproject/tsconfig.json } Info 6 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 7 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:37.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/module2.ts 500 undefined WatchType: Closed Script info -Info 10 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/file2.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/module1.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [00:00:42.000] ======== Resolving module './module1' from '/user/username/projects/myproject/src/file1.ts'. ======== -Info 14 [00:00:43.000] Module resolution kind is not specified, using 'NodeJs'. -Info 15 [00:00:44.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/module1', target file type 'TypeScript'. -Info 16 [00:00:45.000] File '/user/username/projects/myproject/src/module1.ts' exist - use it as a name resolution result. -Info 17 [00:00:46.000] ======== Module name './module1' was successfully resolved to '/user/username/projects/myproject/src/module1.ts'. ======== -Info 18 [00:00:47.000] ======== Resolving module '../module2' from '/user/username/projects/myproject/src/file1.ts'. ======== -Info 19 [00:00:48.000] Module resolution kind is not specified, using 'NodeJs'. -Info 20 [00:00:49.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/module2', target file type 'TypeScript'. -Info 21 [00:00:50.000] File '/user/username/projects/myproject/module2.ts' exist - use it as a name resolution result. -Info 22 [00:00:51.000] ======== Module name '../module2' was successfully resolved to '/user/username/projects/myproject/module2.ts'. ======== -Info 23 [00:00:52.000] Reusing resolution of module './module1' from '/user/username/projects/myproject/src/file2.ts' found in cache from location '/user/username/projects/myproject/src', it was successfully resolved to '/user/username/projects/myproject/src/module1.ts'. -Info 24 [00:00:53.000] Reusing resolution of module '../module2' from '/user/username/projects/myproject/src/file2.ts' found in cache from location '/user/username/projects/myproject/src', it was successfully resolved to '/user/username/projects/myproject/module2.ts'. -Info 25 [00:00:54.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 26 [00:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 27 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 28 [00:00:57.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 29 [00:00:58.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 30 [00:00:59.000] Files (5) +Info 8 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/module2.ts 500 undefined WatchType: Closed Script info +Info 9 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/file2.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/module1.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 12 [00:00:41.000] ======== Resolving module './module1' from '/user/username/projects/myproject/src/file1.ts'. ======== +Info 13 [00:00:42.000] Module resolution kind is not specified, using 'NodeJs'. +Info 14 [00:00:43.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/src/module1', target file type 'TypeScript'. +Info 15 [00:00:44.000] File '/user/username/projects/myproject/src/module1.ts' exist - use it as a name resolution result. +Info 16 [00:00:45.000] ======== Module name './module1' was successfully resolved to '/user/username/projects/myproject/src/module1.ts'. ======== +Info 17 [00:00:46.000] ======== Resolving module '../module2' from '/user/username/projects/myproject/src/file1.ts'. ======== +Info 18 [00:00:47.000] Module resolution kind is not specified, using 'NodeJs'. +Info 19 [00:00:48.000] Loading module as file / folder, candidate module location '/user/username/projects/myproject/module2', target file type 'TypeScript'. +Info 20 [00:00:49.000] File '/user/username/projects/myproject/module2.ts' exist - use it as a name resolution result. +Info 21 [00:00:50.000] ======== Module name '../module2' was successfully resolved to '/user/username/projects/myproject/module2.ts'. ======== +Info 22 [00:00:51.000] Reusing resolution of module './module1' from '/user/username/projects/myproject/src/file2.ts' found in cache from location '/user/username/projects/myproject/src', it was successfully resolved to '/user/username/projects/myproject/src/module1.ts'. +Info 23 [00:00:52.000] Reusing resolution of module '../module2' from '/user/username/projects/myproject/src/file2.ts' found in cache from location '/user/username/projects/myproject/src', it was successfully resolved to '/user/username/projects/myproject/module2.ts'. +Info 24 [00:00:53.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 25 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 26 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 27 [00:00:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 28 [00:00:57.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 29 [00:00:58.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/module2.ts /user/username/projects/myproject/src/module1.ts @@ -98,18 +97,18 @@ Info 30 [00:00:59.000] Files (5) src/file2.ts Matched by default include pattern '**/*' -Info 31 [00:01:00.000] ----------------------------------------------- -Info 32 [00:01:01.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 32 [00:01:02.000] Files (5) - -Info 32 [00:01:03.000] ----------------------------------------------- -Info 32 [00:01:04.000] Open files: -Info 32 [00:01:05.000] FileName: /user/username/projects/myproject/src/file1.ts ProjectRootPath: undefined -Info 32 [00:01:06.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 32 [00:01:13.000] FileWatcher:: Triggered with /user/username/projects/myproject/src/file2.ts 1:: WatchInfo: /user/username/projects/myproject/src/file2.ts 500 undefined WatchType: Closed Script info -Info 33 [00:01:14.000] Scheduled: /user/username/projects/myproject/tsconfig.json -Info 34 [00:01:15.000] Scheduled: *ensureProjectForOpenFiles* -Info 35 [00:01:16.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/src/file2.ts 1:: WatchInfo: /user/username/projects/myproject/src/file2.ts 500 undefined WatchType: Closed Script info +Info 30 [00:00:59.000] ----------------------------------------------- +Info 31 [00:01:00.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 31 [00:01:01.000] Files (5) + +Info 31 [00:01:02.000] ----------------------------------------------- +Info 31 [00:01:03.000] Open files: +Info 31 [00:01:04.000] FileName: /user/username/projects/myproject/src/file1.ts ProjectRootPath: undefined +Info 31 [00:01:05.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 31 [00:01:12.000] FileWatcher:: Triggered with /user/username/projects/myproject/src/file2.ts 1:: WatchInfo: /user/username/projects/myproject/src/file2.ts 500 undefined WatchType: Closed Script info +Info 32 [00:01:13.000] Scheduled: /user/username/projects/myproject/tsconfig.json +Info 33 [00:01:14.000] Scheduled: *ensureProjectForOpenFiles* +Info 34 [00:01:15.000] Elapsed:: *ms FileWatcher:: Triggered with /user/username/projects/myproject/src/file2.ts 1:: WatchInfo: /user/username/projects/myproject/src/file2.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/user/username/projects/myproject/src/file1.ts] import { module1 } from "./module1";import { module2 } from "../module2";import { module1 } from "./module1";import { module2 } from "../module2"; @@ -138,31 +137,31 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 36 [00:01:17.000] Running: /user/username/projects/myproject/tsconfig.json -Info 37 [00:01:18.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 38 [00:01:19.000] Reusing resolution of module './module1' from '/user/username/projects/myproject/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/src/module1.ts'. -Info 39 [00:01:20.000] Reusing resolution of module '../module2' from '/user/username/projects/myproject/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/module2.ts'. -Info 40 [00:01:21.000] Reusing resolution of module './module1' from '/user/username/projects/myproject/src/file2.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/src/module1.ts'. -Info 41 [00:01:22.000] Reusing resolution of module '../module2' from '/user/username/projects/myproject/src/file2.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/module2.ts'. -Info 42 [00:01:23.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 43 [00:01:24.000] Different program with same set of files -Info 44 [00:01:25.000] Running: *ensureProjectForOpenFiles* -Info 45 [00:01:26.000] Before ensureProjectForOpenFiles: -Info 46 [00:01:27.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 46 [00:01:28.000] Files (5) - -Info 46 [00:01:29.000] ----------------------------------------------- -Info 46 [00:01:30.000] Open files: -Info 46 [00:01:31.000] FileName: /user/username/projects/myproject/src/file1.ts ProjectRootPath: undefined -Info 46 [00:01:32.000] Projects: /user/username/projects/myproject/tsconfig.json -Info 46 [00:01:33.000] After ensureProjectForOpenFiles: -Info 47 [00:01:34.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 47 [00:01:35.000] Files (5) - -Info 47 [00:01:36.000] ----------------------------------------------- -Info 47 [00:01:37.000] Open files: -Info 47 [00:01:38.000] FileName: /user/username/projects/myproject/src/file1.ts ProjectRootPath: undefined -Info 47 [00:01:39.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 35 [00:01:16.000] Running: /user/username/projects/myproject/tsconfig.json +Info 36 [00:01:17.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 37 [00:01:18.000] Reusing resolution of module './module1' from '/user/username/projects/myproject/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/src/module1.ts'. +Info 38 [00:01:19.000] Reusing resolution of module '../module2' from '/user/username/projects/myproject/src/file1.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/module2.ts'. +Info 39 [00:01:20.000] Reusing resolution of module './module1' from '/user/username/projects/myproject/src/file2.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/src/module1.ts'. +Info 40 [00:01:21.000] Reusing resolution of module '../module2' from '/user/username/projects/myproject/src/file2.ts' of old program, it was successfully resolved to '/user/username/projects/myproject/module2.ts'. +Info 41 [00:01:22.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 42 [00:01:23.000] Different program with same set of files +Info 43 [00:01:24.000] Running: *ensureProjectForOpenFiles* +Info 44 [00:01:25.000] Before ensureProjectForOpenFiles: +Info 45 [00:01:26.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 45 [00:01:27.000] Files (5) + +Info 45 [00:01:28.000] ----------------------------------------------- +Info 45 [00:01:29.000] Open files: +Info 45 [00:01:30.000] FileName: /user/username/projects/myproject/src/file1.ts ProjectRootPath: undefined +Info 45 [00:01:31.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 45 [00:01:32.000] After ensureProjectForOpenFiles: +Info 46 [00:01:33.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 46 [00:01:34.000] Files (5) + +Info 46 [00:01:35.000] ----------------------------------------------- +Info 46 [00:01:36.000] Open files: +Info 46 [00:01:37.000] FileName: /user/username/projects/myproject/src/file1.ts ProjectRootPath: undefined +Info 46 [00:01:38.000] Projects: /user/username/projects/myproject/tsconfig.json After running timeout callbacks PolledWatches:: diff --git a/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-configured-projects.js b/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-configured-projects.js index 7bf63a6cd50a0..13eba1fff0128 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-configured-projects.js +++ b/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-configured-projects.js @@ -40,15 +40,14 @@ Info 6 [00:00:19.000] Config: /a/b/tsconfig.json : { } Info 7 [00:00:20.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory Info 8 [00:00:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:22.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:23.000] FileWatcher:: Added:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:24.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 12 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/b/tsconfig.json WatchType: Missing file -Info 13 [00:00:26.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 14 [00:00:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 15 [00:00:28.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:00:29.000] Project '/a/b/tsconfig.json' (Configured) -Info 17 [00:00:30.000] Files (2) +Info 9 [00:00:22.000] FileWatcher:: Added:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:23.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 11 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/b/tsconfig.json WatchType: Missing file +Info 12 [00:00:25.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 13 [00:00:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 14 [00:00:27.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:28.000] Project '/a/b/tsconfig.json' (Configured) +Info 16 [00:00:29.000] Files (2) /a/b/moduleFile.ts /a/b/file1.ts @@ -59,14 +58,14 @@ Info 17 [00:00:30.000] Files (2) file1.ts Matched by default include pattern '**/*' -Info 18 [00:00:31.000] ----------------------------------------------- -Info 19 [00:00:32.000] Project '/a/b/tsconfig.json' (Configured) -Info 19 [00:00:33.000] Files (2) +Info 17 [00:00:30.000] ----------------------------------------------- +Info 18 [00:00:31.000] Project '/a/b/tsconfig.json' (Configured) +Info 18 [00:00:32.000] Files (2) -Info 19 [00:00:34.000] ----------------------------------------------- -Info 19 [00:00:35.000] Open files: -Info 19 [00:00:36.000] FileName: /a/b/file1.ts ProjectRootPath: undefined -Info 19 [00:00:37.000] Projects: /a/b/tsconfig.json +Info 18 [00:00:33.000] ----------------------------------------------- +Info 18 [00:00:34.000] Open files: +Info 18 [00:00:35.000] FileName: /a/b/file1.ts ProjectRootPath: undefined +Info 18 [00:00:36.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -85,11 +84,11 @@ FsWatchesRecursive:: /a/b: {} -Info 19 [00:00:38.000] response: +Info 18 [00:00:37.000] response: { "responseRequired": false } -Info 20 [00:00:39.000] request: +Info 19 [00:00:38.000] request: { "seq": 0, "type": "request", @@ -134,24 +133,24 @@ FsWatchesRecursive:: /a/b: {} -Info 21 [00:00:40.000] response: +Info 20 [00:00:39.000] response: { "response": [], "responseRequired": true } -Info 22 [00:00:42.000] FileWatcher:: Triggered with /a/b/moduleFile.ts 2:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info -Info 23 [00:00:43.000] FileWatcher:: Close:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info -Info 24 [00:00:44.000] Scheduled: /a/b/tsconfig.json -Info 25 [00:00:45.000] Scheduled: *ensureProjectForOpenFiles* -Info 26 [00:00:46.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/moduleFile.ts 2:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info -Info 27 [00:00:47.000] DirectoryWatcher:: Triggered with /a/b/moduleFile.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 28 [00:00:48.000] Scheduled: /a/b/tsconfig.json, Cancelled earlier one -Info 29 [00:00:49.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 30 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/moduleFile.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 31 [00:00:53.000] DirectoryWatcher:: Triggered with /a/b/moduleFile1.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 32 [00:00:54.000] Scheduled: /a/b/tsconfig.json, Cancelled earlier one -Info 33 [00:00:55.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 34 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/moduleFile1.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 21 [00:00:41.000] FileWatcher:: Triggered with /a/b/moduleFile.ts 2:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info +Info 22 [00:00:42.000] FileWatcher:: Close:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info +Info 23 [00:00:43.000] Scheduled: /a/b/tsconfig.json +Info 24 [00:00:44.000] Scheduled: *ensureProjectForOpenFiles* +Info 25 [00:00:45.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/moduleFile.ts 2:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info +Info 26 [00:00:46.000] DirectoryWatcher:: Triggered with /a/b/moduleFile.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 27 [00:00:47.000] Scheduled: /a/b/tsconfig.json, Cancelled earlier one +Info 28 [00:00:48.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 29 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/moduleFile.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 30 [00:00:52.000] DirectoryWatcher:: Triggered with /a/b/moduleFile1.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 31 [00:00:53.000] Scheduled: /a/b/tsconfig.json, Cancelled earlier one +Info 32 [00:00:54.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 33 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/moduleFile1.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory Before running timeout callbacks //// [/a/b/moduleFile1.ts] export function bar() { }; @@ -172,16 +171,16 @@ FsWatchesRecursive:: /a/b: {} -Info 35 [00:00:57.000] Running: /a/b/tsconfig.json -Info 36 [00:00:58.000] FileWatcher:: Added:: WatchInfo: /a/b/moduleFile1.ts 500 undefined WatchType: Closed Script info -Info 37 [00:00:59.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 38 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/moduleFile 1 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 39 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/moduleFile 1 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 40 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 41 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 42 [00:01:04.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 43 [00:01:05.000] Project '/a/b/tsconfig.json' (Configured) -Info 44 [00:01:06.000] Files (2) +Info 34 [00:00:56.000] Running: /a/b/tsconfig.json +Info 35 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /a/b/moduleFile1.ts 500 undefined WatchType: Closed Script info +Info 36 [00:00:58.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 37 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/moduleFile 1 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 38 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/moduleFile 1 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 39 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 40 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 41 [00:01:03.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 42 [00:01:04.000] Project '/a/b/tsconfig.json' (Configured) +Info 43 [00:01:05.000] Files (2) /a/b/file1.ts /a/b/moduleFile1.ts @@ -191,24 +190,24 @@ Info 44 [00:01:06.000] Files (2) moduleFile1.ts Matched by default include pattern '**/*' -Info 45 [00:01:07.000] ----------------------------------------------- -Info 46 [00:01:08.000] Running: *ensureProjectForOpenFiles* -Info 47 [00:01:09.000] Before ensureProjectForOpenFiles: -Info 48 [00:01:10.000] Project '/a/b/tsconfig.json' (Configured) -Info 48 [00:01:11.000] Files (2) - -Info 48 [00:01:12.000] ----------------------------------------------- -Info 48 [00:01:13.000] Open files: -Info 48 [00:01:14.000] FileName: /a/b/file1.ts ProjectRootPath: undefined -Info 48 [00:01:15.000] Projects: /a/b/tsconfig.json -Info 48 [00:01:16.000] After ensureProjectForOpenFiles: -Info 49 [00:01:17.000] Project '/a/b/tsconfig.json' (Configured) -Info 49 [00:01:18.000] Files (2) - -Info 49 [00:01:19.000] ----------------------------------------------- -Info 49 [00:01:20.000] Open files: -Info 49 [00:01:21.000] FileName: /a/b/file1.ts ProjectRootPath: undefined -Info 49 [00:01:22.000] Projects: /a/b/tsconfig.json +Info 44 [00:01:06.000] ----------------------------------------------- +Info 45 [00:01:07.000] Running: *ensureProjectForOpenFiles* +Info 46 [00:01:08.000] Before ensureProjectForOpenFiles: +Info 47 [00:01:09.000] Project '/a/b/tsconfig.json' (Configured) +Info 47 [00:01:10.000] Files (2) + +Info 47 [00:01:11.000] ----------------------------------------------- +Info 47 [00:01:12.000] Open files: +Info 47 [00:01:13.000] FileName: /a/b/file1.ts ProjectRootPath: undefined +Info 47 [00:01:14.000] Projects: /a/b/tsconfig.json +Info 47 [00:01:15.000] After ensureProjectForOpenFiles: +Info 48 [00:01:16.000] Project '/a/b/tsconfig.json' (Configured) +Info 48 [00:01:17.000] Files (2) + +Info 48 [00:01:18.000] ----------------------------------------------- +Info 48 [00:01:19.000] Open files: +Info 48 [00:01:20.000] FileName: /a/b/file1.ts ProjectRootPath: undefined +Info 48 [00:01:21.000] Projects: /a/b/tsconfig.json After running timeout callbacks PolledWatches:: @@ -231,7 +230,7 @@ FsWatchesRecursive:: /a/b: {} -Info 49 [00:01:23.000] request: +Info 48 [00:01:22.000] request: { "seq": 0, "type": "request", @@ -284,7 +283,7 @@ FsWatchesRecursive:: /a/b: {} -Info 50 [00:01:24.000] response: +Info 49 [00:01:23.000] response: { "response": [ { @@ -303,25 +302,25 @@ Info 50 [00:01:24.000] response: ], "responseRequired": true } -Info 51 [00:01:26.000] FileWatcher:: Triggered with /a/b/moduleFile1.ts 2:: WatchInfo: /a/b/moduleFile1.ts 500 undefined WatchType: Closed Script info -Info 52 [00:01:27.000] FileWatcher:: Close:: WatchInfo: /a/b/moduleFile1.ts 500 undefined WatchType: Closed Script info -Info 53 [00:01:28.000] Scheduled: /a/b/tsconfig.json -Info 54 [00:01:29.000] Scheduled: *ensureProjectForOpenFiles* -Info 55 [00:01:30.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/moduleFile1.ts 2:: WatchInfo: /a/b/moduleFile1.ts 500 undefined WatchType: Closed Script info -Info 56 [00:01:31.000] DirectoryWatcher:: Triggered with /a/b/moduleFile1.ts :: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 57 [00:01:32.000] Scheduled: /a/b/tsconfig.jsonFailedLookupInvalidation -Info 58 [00:01:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/moduleFile1.ts :: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 59 [00:01:34.000] DirectoryWatcher:: Triggered with /a/b/moduleFile1.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 60 [00:01:35.000] Scheduled: /a/b/tsconfig.json, Cancelled earlier one -Info 61 [00:01:36.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 62 [00:01:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/moduleFile1.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 63 [00:01:40.000] DirectoryWatcher:: Triggered with /a/b/moduleFile.ts :: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 64 [00:01:41.000] Scheduled: /a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 65 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/moduleFile.ts :: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 66 [00:01:43.000] DirectoryWatcher:: Triggered with /a/b/moduleFile.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 67 [00:01:44.000] Scheduled: /a/b/tsconfig.json, Cancelled earlier one -Info 68 [00:01:45.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 69 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/moduleFile.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 50 [00:01:25.000] FileWatcher:: Triggered with /a/b/moduleFile1.ts 2:: WatchInfo: /a/b/moduleFile1.ts 500 undefined WatchType: Closed Script info +Info 51 [00:01:26.000] FileWatcher:: Close:: WatchInfo: /a/b/moduleFile1.ts 500 undefined WatchType: Closed Script info +Info 52 [00:01:27.000] Scheduled: /a/b/tsconfig.json +Info 53 [00:01:28.000] Scheduled: *ensureProjectForOpenFiles* +Info 54 [00:01:29.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/moduleFile1.ts 2:: WatchInfo: /a/b/moduleFile1.ts 500 undefined WatchType: Closed Script info +Info 55 [00:01:30.000] DirectoryWatcher:: Triggered with /a/b/moduleFile1.ts :: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 56 [00:01:31.000] Scheduled: /a/b/tsconfig.jsonFailedLookupInvalidation +Info 57 [00:01:32.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/moduleFile1.ts :: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 58 [00:01:33.000] DirectoryWatcher:: Triggered with /a/b/moduleFile1.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 59 [00:01:34.000] Scheduled: /a/b/tsconfig.json, Cancelled earlier one +Info 60 [00:01:35.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 61 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/moduleFile1.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 62 [00:01:39.000] DirectoryWatcher:: Triggered with /a/b/moduleFile.ts :: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 63 [00:01:40.000] Scheduled: /a/b/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 64 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/moduleFile.ts :: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:01:42.000] DirectoryWatcher:: Triggered with /a/b/moduleFile.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory +Info 66 [00:01:43.000] Scheduled: /a/b/tsconfig.json, Cancelled earlier one +Info 67 [00:01:44.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 68 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/moduleFile.ts :: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory Before running timeout callbacks //// [/a/b/moduleFile.ts] export function bar() { }; @@ -346,9 +345,9 @@ FsWatchesRecursive:: /a/b: {} -Info 70 [00:01:47.000] Running: /a/b/tsconfig.jsonFailedLookupInvalidation -Info 71 [00:01:48.000] Scheduled: /a/b/tsconfig.json, Cancelled earlier one -Info 72 [00:01:49.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 69 [00:01:46.000] Running: /a/b/tsconfig.jsonFailedLookupInvalidation +Info 70 [00:01:47.000] Scheduled: /a/b/tsconfig.json, Cancelled earlier one +Info 71 [00:01:48.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one After running timeout callbacks PolledWatches:: @@ -369,7 +368,7 @@ FsWatchesRecursive:: /a/b: {} -Info 73 [00:01:50.000] request: +Info 72 [00:01:49.000] request: { "seq": 0, "type": "request", @@ -398,15 +397,15 @@ FsWatchesRecursive:: /a/b: {} -Info 74 [00:01:51.000] FileWatcher:: Added:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info -Info 75 [00:01:52.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 76 [00:01:53.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/moduleFile 1 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 77 [00:01:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/moduleFile 1 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 78 [00:01:55.000] DirectoryWatcher:: Close:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 79 [00:01:56.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations -Info 80 [00:01:57.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 81 [00:01:58.000] Project '/a/b/tsconfig.json' (Configured) -Info 82 [00:01:59.000] Files (2) +Info 73 [00:01:50.000] FileWatcher:: Added:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info +Info 74 [00:01:51.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 75 [00:01:52.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/moduleFile 1 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 76 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/moduleFile 1 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 77 [00:01:54.000] DirectoryWatcher:: Close:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 78 [00:01:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b 0 undefined Project: /a/b/tsconfig.json WatchType: Failed Lookup Locations +Info 79 [00:01:56.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 80 [00:01:57.000] Project '/a/b/tsconfig.json' (Configured) +Info 81 [00:01:58.000] Files (2) /a/b/moduleFile.ts /a/b/file1.ts @@ -417,7 +416,7 @@ Info 82 [00:01:59.000] Files (2) file1.ts Matched by default include pattern '**/*' -Info 83 [00:02:00.000] ----------------------------------------------- +Info 82 [00:01:59.000] ----------------------------------------------- After request PolledWatches:: @@ -436,7 +435,7 @@ FsWatchesRecursive:: /a/b: {} -Info 84 [00:02:01.000] response: +Info 83 [00:02:00.000] response: { "response": [], "responseRequired": true diff --git a/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-inferred-projects.js b/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-inferred-projects.js index 8138ecd6f7459..ca0b59bbb1d32 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-inferred-projects.js +++ b/tests/baselines/reference/tsserver/resolutionCache/renaming-module-should-restore-the-states-for-inferred-projects.js @@ -24,15 +24,14 @@ FsWatchesRecursive:: Info 2 [00:00:13.000] Search path: /a/b Info 3 [00:00:14.000] For info: /a/b/file1.ts :: No config files found. -Info 4 [00:00:15.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 5 [00:00:16.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 6 [00:00:17.000] FileWatcher:: Added:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info -Info 7 [00:00:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 8 [00:00:19.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 9 [00:00:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 10 [00:00:21.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 11 [00:00:22.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 12 [00:00:23.000] Files (2) +Info 4 [00:00:15.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 5 [00:00:16.000] FileWatcher:: Added:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info +Info 6 [00:00:17.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 7 [00:00:18.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 8 [00:00:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 9 [00:00:20.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 10 [00:00:21.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 11 [00:00:22.000] Files (2) /a/b/moduleFile.ts /a/b/file1.ts @@ -42,14 +41,14 @@ Info 12 [00:00:23.000] Files (2) file1.ts Root file specified for compilation -Info 13 [00:00:24.000] ----------------------------------------------- -Info 14 [00:00:25.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 14 [00:00:26.000] Files (2) +Info 12 [00:00:23.000] ----------------------------------------------- +Info 13 [00:00:24.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 13 [00:00:25.000] Files (2) -Info 14 [00:00:27.000] ----------------------------------------------- -Info 14 [00:00:28.000] Open files: -Info 14 [00:00:29.000] FileName: /a/b/file1.ts ProjectRootPath: undefined -Info 14 [00:00:30.000] Projects: /dev/null/inferredProject1* +Info 13 [00:00:26.000] ----------------------------------------------- +Info 13 [00:00:27.000] Open files: +Info 13 [00:00:28.000] FileName: /a/b/file1.ts ProjectRootPath: undefined +Info 13 [00:00:29.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -64,11 +63,11 @@ FsWatches:: FsWatchesRecursive:: -Info 14 [00:00:31.000] response: +Info 13 [00:00:30.000] response: { "responseRequired": false } -Info 15 [00:00:32.000] request: +Info 14 [00:00:31.000] request: { "seq": 0, "type": "request", @@ -105,16 +104,16 @@ FsWatches:: FsWatchesRecursive:: -Info 16 [00:00:33.000] response: +Info 15 [00:00:32.000] response: { "response": [], "responseRequired": true } -Info 17 [00:00:35.000] FileWatcher:: Triggered with /a/b/moduleFile.ts 2:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:36.000] FileWatcher:: Close:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:37.000] Scheduled: /dev/null/inferredProject1* -Info 20 [00:00:38.000] Scheduled: *ensureProjectForOpenFiles* -Info 21 [00:00:39.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/moduleFile.ts 2:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:34.000] FileWatcher:: Triggered with /a/b/moduleFile.ts 2:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:35.000] FileWatcher:: Close:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:36.000] Scheduled: /dev/null/inferredProject1* +Info 19 [00:00:37.000] Scheduled: *ensureProjectForOpenFiles* +Info 20 [00:00:38.000] Elapsed:: *ms FileWatcher:: Triggered with /a/b/moduleFile.ts 2:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/a/b/moduleFile1.ts] export function bar() { }; @@ -131,39 +130,39 @@ FsWatches:: FsWatchesRecursive:: -Info 22 [00:00:42.000] Running: /dev/null/inferredProject1* -Info 23 [00:00:43.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 24 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 25 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 26 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 27 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 28 [00:00:48.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 29 [00:00:49.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 30 [00:00:50.000] Files (1) +Info 21 [00:00:41.000] Running: /dev/null/inferredProject1* +Info 22 [00:00:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 23 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 24 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 25 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 26 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 27 [00:00:47.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 28 [00:00:48.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 29 [00:00:49.000] Files (1) /a/b/file1.ts file1.ts Root file specified for compilation -Info 31 [00:00:51.000] ----------------------------------------------- -Info 32 [00:00:52.000] Running: *ensureProjectForOpenFiles* -Info 33 [00:00:53.000] Before ensureProjectForOpenFiles: -Info 34 [00:00:54.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 34 [00:00:55.000] Files (1) - -Info 34 [00:00:56.000] ----------------------------------------------- -Info 34 [00:00:57.000] Open files: -Info 34 [00:00:58.000] FileName: /a/b/file1.ts ProjectRootPath: undefined -Info 34 [00:00:59.000] Projects: /dev/null/inferredProject1* -Info 34 [00:01:00.000] After ensureProjectForOpenFiles: -Info 35 [00:01:01.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 35 [00:01:02.000] Files (1) - -Info 35 [00:01:03.000] ----------------------------------------------- -Info 35 [00:01:04.000] Open files: -Info 35 [00:01:05.000] FileName: /a/b/file1.ts ProjectRootPath: undefined -Info 35 [00:01:06.000] Projects: /dev/null/inferredProject1* +Info 30 [00:00:50.000] ----------------------------------------------- +Info 31 [00:00:51.000] Running: *ensureProjectForOpenFiles* +Info 32 [00:00:52.000] Before ensureProjectForOpenFiles: +Info 33 [00:00:53.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 33 [00:00:54.000] Files (1) + +Info 33 [00:00:55.000] ----------------------------------------------- +Info 33 [00:00:56.000] Open files: +Info 33 [00:00:57.000] FileName: /a/b/file1.ts ProjectRootPath: undefined +Info 33 [00:00:58.000] Projects: /dev/null/inferredProject1* +Info 33 [00:00:59.000] After ensureProjectForOpenFiles: +Info 34 [00:01:00.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 34 [00:01:01.000] Files (1) + +Info 34 [00:01:02.000] ----------------------------------------------- +Info 34 [00:01:03.000] Open files: +Info 34 [00:01:04.000] FileName: /a/b/file1.ts ProjectRootPath: undefined +Info 34 [00:01:05.000] Projects: /dev/null/inferredProject1* After running timeout callbacks PolledWatches:: @@ -180,7 +179,7 @@ FsWatches:: FsWatchesRecursive:: -Info 35 [00:01:07.000] request: +Info 34 [00:01:06.000] request: { "seq": 0, "type": "request", @@ -221,7 +220,7 @@ FsWatches:: FsWatchesRecursive:: -Info 36 [00:01:08.000] response: +Info 35 [00:01:07.000] response: { "response": [ { @@ -240,12 +239,12 @@ Info 36 [00:01:08.000] response: ], "responseRequired": true } -Info 37 [00:01:10.000] DirectoryWatcher:: Triggered with /a/b/moduleFile1.ts :: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 38 [00:01:11.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation -Info 39 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/moduleFile1.ts :: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 40 [00:01:15.000] DirectoryWatcher:: Triggered with /a/b/moduleFile.ts :: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 41 [00:01:16.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation, Cancelled earlier one -Info 42 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/moduleFile.ts :: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 36 [00:01:09.000] DirectoryWatcher:: Triggered with /a/b/moduleFile1.ts :: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 37 [00:01:10.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation +Info 38 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/moduleFile1.ts :: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 39 [00:01:14.000] DirectoryWatcher:: Triggered with /a/b/moduleFile.ts :: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 40 [00:01:15.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation, Cancelled earlier one +Info 41 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/moduleFile.ts :: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Before running timeout callbacks //// [/a/b/moduleFile.ts] export function bar() { }; @@ -266,9 +265,9 @@ FsWatches:: FsWatchesRecursive:: -Info 43 [00:01:18.000] Running: /dev/null/inferredProject1*FailedLookupInvalidation -Info 44 [00:01:19.000] Scheduled: /dev/null/inferredProject1* -Info 45 [00:01:20.000] Scheduled: *ensureProjectForOpenFiles* +Info 42 [00:01:17.000] Running: /dev/null/inferredProject1*FailedLookupInvalidation +Info 43 [00:01:18.000] Scheduled: /dev/null/inferredProject1* +Info 44 [00:01:19.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -285,7 +284,7 @@ FsWatches:: FsWatchesRecursive:: -Info 46 [00:01:21.000] request: +Info 45 [00:01:20.000] request: { "seq": 0, "type": "request", @@ -331,7 +330,7 @@ FsWatches:: FsWatchesRecursive:: -Info 47 [00:01:22.000] response: +Info 46 [00:01:21.000] response: { "responseRequired": false } @@ -351,16 +350,16 @@ FsWatches:: FsWatchesRecursive:: -Info 48 [00:01:23.000] Running: /dev/null/inferredProject1* -Info 49 [00:01:24.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 50 [00:01:25.000] FileWatcher:: Added:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info -Info 51 [00:01:26.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 52 [00:01:27.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 53 [00:01:28.000] DirectoryWatcher:: Close:: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 54 [00:01:29.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 55 [00:01:30.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 56 [00:01:31.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 57 [00:01:32.000] Files (2) +Info 47 [00:01:22.000] Running: /dev/null/inferredProject1* +Info 48 [00:01:23.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 49 [00:01:24.000] FileWatcher:: Added:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info +Info 50 [00:01:25.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 51 [00:01:26.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 52 [00:01:27.000] DirectoryWatcher:: Close:: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 53 [00:01:28.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 54 [00:01:29.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 55 [00:01:30.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 56 [00:01:31.000] Files (2) /a/b/moduleFile.ts /a/b/file1.ts @@ -370,24 +369,24 @@ Info 57 [00:01:32.000] Files (2) file1.ts Root file specified for compilation -Info 58 [00:01:33.000] ----------------------------------------------- -Info 59 [00:01:34.000] Running: *ensureProjectForOpenFiles* -Info 60 [00:01:35.000] Before ensureProjectForOpenFiles: -Info 61 [00:01:36.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 61 [00:01:37.000] Files (2) - -Info 61 [00:01:38.000] ----------------------------------------------- -Info 61 [00:01:39.000] Open files: -Info 61 [00:01:40.000] FileName: /a/b/file1.ts ProjectRootPath: undefined -Info 61 [00:01:41.000] Projects: /dev/null/inferredProject1* -Info 61 [00:01:42.000] After ensureProjectForOpenFiles: -Info 62 [00:01:43.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 62 [00:01:44.000] Files (2) - -Info 62 [00:01:45.000] ----------------------------------------------- -Info 62 [00:01:46.000] Open files: -Info 62 [00:01:47.000] FileName: /a/b/file1.ts ProjectRootPath: undefined -Info 62 [00:01:48.000] Projects: /dev/null/inferredProject1* +Info 57 [00:01:32.000] ----------------------------------------------- +Info 58 [00:01:33.000] Running: *ensureProjectForOpenFiles* +Info 59 [00:01:34.000] Before ensureProjectForOpenFiles: +Info 60 [00:01:35.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 60 [00:01:36.000] Files (2) + +Info 60 [00:01:37.000] ----------------------------------------------- +Info 60 [00:01:38.000] Open files: +Info 60 [00:01:39.000] FileName: /a/b/file1.ts ProjectRootPath: undefined +Info 60 [00:01:40.000] Projects: /dev/null/inferredProject1* +Info 60 [00:01:41.000] After ensureProjectForOpenFiles: +Info 61 [00:01:42.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 61 [00:01:43.000] Files (2) + +Info 61 [00:01:44.000] ----------------------------------------------- +Info 61 [00:01:45.000] Open files: +Info 61 [00:01:46.000] FileName: /a/b/file1.ts ProjectRootPath: undefined +Info 61 [00:01:47.000] Projects: /dev/null/inferredProject1* After running timeout callbacks PolledWatches:: @@ -402,7 +401,7 @@ FsWatches:: FsWatchesRecursive:: -Info 62 [00:01:49.000] request: +Info 61 [00:01:48.000] request: { "seq": 0, "type": "request", @@ -439,7 +438,7 @@ FsWatches:: FsWatchesRecursive:: -Info 63 [00:01:50.000] response: +Info 62 [00:01:49.000] response: { "response": [], "responseRequired": true diff --git a/tests/baselines/reference/tsserver/resolutionCache/should-remove-the-module-not-found-error.js b/tests/baselines/reference/tsserver/resolutionCache/should-remove-the-module-not-found-error.js index d435c1c1311f4..fb3b4b7e4e8de 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/should-remove-the-module-not-found-error.js +++ b/tests/baselines/reference/tsserver/resolutionCache/should-remove-the-module-not-found-error.js @@ -21,32 +21,31 @@ 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] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 5 [00:00:14.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 6 [00:00:15.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 7 [00:00:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 8 [00:00:17.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 9 [00:00:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 10 [00:00:19.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 11 [00:00:20.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 12 [00:00:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 13 [00:00:22.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 14 [00:00:23.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 15 [00:00:24.000] Files (1) +Info 4 [00:00:13.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 5 [00:00:14.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 6 [00:00:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 7 [00:00:16.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 8 [00:00:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 9 [00:00:18.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 10 [00:00:19.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 11 [00:00:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 12 [00:00:21.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 13 [00:00:22.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 14 [00:00:23.000] Files (1) /a/b/file1.ts file1.ts Root file specified for compilation -Info 16 [00:00:25.000] ----------------------------------------------- -Info 17 [00:00:26.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 17 [00:00:27.000] Files (1) +Info 15 [00:00:24.000] ----------------------------------------------- +Info 16 [00:00:25.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 16 [00:00:26.000] Files (1) -Info 17 [00:00:28.000] ----------------------------------------------- -Info 17 [00:00:29.000] Open files: -Info 17 [00:00:30.000] FileName: /a/b/file1.ts ProjectRootPath: undefined -Info 17 [00:00:31.000] Projects: /dev/null/inferredProject1* +Info 16 [00:00:27.000] ----------------------------------------------- +Info 16 [00:00:28.000] Open files: +Info 16 [00:00:29.000] FileName: /a/b/file1.ts ProjectRootPath: undefined +Info 16 [00:00:30.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -63,11 +62,11 @@ FsWatches:: FsWatchesRecursive:: -Info 17 [00:00:32.000] response: +Info 16 [00:00:31.000] response: { "responseRequired": false } -Info 18 [00:00:33.000] request: +Info 17 [00:00:32.000] request: { "seq": 0, "type": "request", @@ -108,7 +107,7 @@ FsWatches:: FsWatchesRecursive:: -Info 19 [00:00:34.000] response: +Info 18 [00:00:33.000] response: { "response": [ { @@ -127,9 +126,9 @@ Info 19 [00:00:34.000] response: ], "responseRequired": true } -Info 20 [00:00:37.000] DirectoryWatcher:: Triggered with /a/b/moduleFile.ts :: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 21 [00:00:38.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation -Info 22 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/moduleFile.ts :: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 19 [00:00:36.000] DirectoryWatcher:: Triggered with /a/b/moduleFile.ts :: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 20 [00:00:37.000] Scheduled: /dev/null/inferredProject1*FailedLookupInvalidation +Info 21 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/b/moduleFile.ts :: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations Before running timeout callbacks //// [/a/b/moduleFile.ts] export function bar() { }; @@ -149,9 +148,9 @@ FsWatches:: FsWatchesRecursive:: -Info 23 [00:00:40.000] Running: /dev/null/inferredProject1*FailedLookupInvalidation -Info 24 [00:00:41.000] Scheduled: /dev/null/inferredProject1* -Info 25 [00:00:42.000] Scheduled: *ensureProjectForOpenFiles* +Info 22 [00:00:39.000] Running: /dev/null/inferredProject1*FailedLookupInvalidation +Info 23 [00:00:40.000] Scheduled: /dev/null/inferredProject1* +Info 24 [00:00:41.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -168,7 +167,7 @@ FsWatches:: FsWatchesRecursive:: -Info 26 [00:00:43.000] request: +Info 25 [00:00:42.000] request: { "seq": 0, "type": "request", @@ -214,11 +213,11 @@ FsWatches:: FsWatchesRecursive:: -Info 27 [00:00:44.000] response: +Info 26 [00:00:43.000] response: { "responseRequired": false } -Info 28 [00:00:45.000] request: +Info 27 [00:00:44.000] request: { "seq": 0, "type": "request", @@ -243,15 +242,15 @@ FsWatches:: FsWatchesRecursive:: -Info 29 [00:00:46.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 30 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info -Info 31 [00:00:48.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 32 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 33 [00:00:50.000] DirectoryWatcher:: Close:: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 34 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 35 [00:00:52.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 36 [00:00:53.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 37 [00:00:54.000] Files (2) +Info 28 [00:00:45.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 29 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/b/moduleFile.ts 500 undefined WatchType: Closed Script info +Info 30 [00:00:47.000] DirectoryWatcher:: Close:: WatchInfo: /a/b/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 31 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b/moduleFile 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 32 [00:00:49.000] DirectoryWatcher:: Close:: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 33 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /a/b 0 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 34 [00:00:51.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 35 [00:00:52.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 36 [00:00:53.000] Files (2) /a/b/moduleFile.ts /a/b/file1.ts @@ -261,7 +260,7 @@ Info 37 [00:00:54.000] Files (2) file1.ts Root file specified for compilation -Info 38 [00:00:55.000] ----------------------------------------------- +Info 37 [00:00:54.000] ----------------------------------------------- After request PolledWatches:: @@ -276,7 +275,7 @@ FsWatches:: FsWatchesRecursive:: -Info 39 [00:00:56.000] response: +Info 38 [00:00:55.000] response: { "response": [], "responseRequired": true diff --git a/tests/baselines/reference/tsserver/resolutionCache/suggestion-diagnostics.js b/tests/baselines/reference/tsserver/resolutionCache/suggestion-diagnostics.js index 5699322473bb0..be336afce6080 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/suggestion-diagnostics.js +++ b/tests/baselines/reference/tsserver/resolutionCache/suggestion-diagnostics.js @@ -22,26 +22,25 @@ FsWatchesRecursive:: Info 2 [00:00:07.000] Search path: / Info 3 [00:00:08.000] For info: /a.js :: No config files found. -Info 4 [00:00:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 5 [00:00:10.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 6 [00:00:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 7 [00:00:12.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 8 [00:00:13.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 9 [00:00:14.000] Files (1) +Info 4 [00:00:09.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 5 [00:00:10.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 6 [00:00:11.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 7 [00:00:12.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 8 [00:00:13.000] Files (1) /a.js a.js Root file specified for compilation -Info 10 [00:00:15.000] ----------------------------------------------- -Info 11 [00:00:16.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 11 [00:00:17.000] Files (1) +Info 9 [00:00:14.000] ----------------------------------------------- +Info 10 [00:00:15.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 10 [00:00:16.000] Files (1) -Info 11 [00:00:18.000] ----------------------------------------------- -Info 11 [00:00:19.000] Open files: -Info 11 [00:00:20.000] FileName: /a.js ProjectRootPath: undefined -Info 11 [00:00:21.000] Projects: /dev/null/inferredProject1* +Info 10 [00:00:17.000] ----------------------------------------------- +Info 10 [00:00:18.000] Open files: +Info 10 [00:00:19.000] FileName: /a.js ProjectRootPath: undefined +Info 10 [00:00:20.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -56,7 +55,7 @@ FsWatches:: FsWatchesRecursive:: -Info 11 [00:00:22.000] response: +Info 10 [00:00:21.000] response: { "responseRequired": false } @@ -74,7 +73,7 @@ FsWatches:: FsWatchesRecursive:: -Info 12 [00:00:23.000] request: +Info 11 [00:00:22.000] request: { "command": "geterr", "arguments": { @@ -114,7 +113,7 @@ FsWatches:: FsWatchesRecursive:: -Info 13 [00:00:24.000] response: +Info 12 [00:00:23.000] response: { "responseRequired": false } @@ -132,7 +131,7 @@ FsWatches:: FsWatchesRecursive:: -Info 14 [00:00:25.000] event: +Info 13 [00:00:24.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/a.js","diagnostics":[]}} After checking timeout queue length (1) and running @@ -162,7 +161,7 @@ FsWatches:: FsWatchesRecursive:: -Info 15 [00:00:26.000] event: +Info 14 [00:00:25.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/a.js","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -192,9 +191,9 @@ FsWatches:: FsWatchesRecursive:: -Info 16 [00:00:27.000] event: +Info 15 [00:00:26.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/a.js","diagnostics":[{"start":{"line":1,"offset":12},"end":{"line":1,"offset":13},"text":"'p' is declared but its value is never read.","code":6133,"category":"suggestion","reportsUnnecessary":true}]}} -Info 17 [00:00:28.000] event: +Info 16 [00:00:27.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/resolutionCache/suppressed-diagnostic-events.js b/tests/baselines/reference/tsserver/resolutionCache/suppressed-diagnostic-events.js index 62a5dae776316..dc613555b52e8 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/suppressed-diagnostic-events.js +++ b/tests/baselines/reference/tsserver/resolutionCache/suppressed-diagnostic-events.js @@ -22,26 +22,25 @@ 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] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 5 [00:00:10.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 6 [00:00:11.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 7 [00:00:12.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 8 [00:00:13.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 9 [00:00:14.000] Files (1) +Info 4 [00:00:09.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 5 [00:00:10.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 6 [00:00:11.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 7 [00:00:12.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 8 [00:00:13.000] Files (1) /a.ts a.ts Root file specified for compilation -Info 10 [00:00:15.000] ----------------------------------------------- -Info 11 [00:00:16.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 11 [00:00:17.000] Files (1) +Info 9 [00:00:14.000] ----------------------------------------------- +Info 10 [00:00:15.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 10 [00:00:16.000] Files (1) -Info 11 [00:00:18.000] ----------------------------------------------- -Info 11 [00:00:19.000] Open files: -Info 11 [00:00:20.000] FileName: /a.ts ProjectRootPath: undefined -Info 11 [00:00:21.000] Projects: /dev/null/inferredProject1* +Info 10 [00:00:17.000] ----------------------------------------------- +Info 10 [00:00:18.000] Open files: +Info 10 [00:00:19.000] FileName: /a.ts ProjectRootPath: undefined +Info 10 [00:00:20.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -52,7 +51,7 @@ FsWatches:: FsWatchesRecursive:: -Info 11 [00:00:22.000] response: +Info 10 [00:00:21.000] response: { "responseRequired": false } @@ -66,7 +65,7 @@ FsWatches:: FsWatchesRecursive:: -Info 12 [00:00:23.000] request: +Info 11 [00:00:22.000] request: { "command": "geterr", "arguments": { @@ -88,7 +87,7 @@ FsWatches:: FsWatchesRecursive:: -Info 13 [00:00:24.000] event: +Info 12 [00:00:23.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} After request @@ -100,7 +99,7 @@ FsWatches:: FsWatchesRecursive:: -Info 14 [00:00:25.000] response: +Info 13 [00:00:24.000] response: { "responseRequired": false } @@ -114,7 +113,7 @@ FsWatches:: FsWatchesRecursive:: -Info 15 [00:00:26.000] request: +Info 14 [00:00:25.000] request: { "command": "geterr", "arguments": { @@ -134,7 +133,7 @@ FsWatches:: FsWatchesRecursive:: -Info 16 [00:00:27.000] event: +Info 15 [00:00:26.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} After request @@ -146,7 +145,7 @@ FsWatches:: FsWatchesRecursive:: -Info 17 [00:00:28.000] response: +Info 16 [00:00:27.000] response: { "responseRequired": false } diff --git a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-fails.js b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-fails.js index a990e4e51afd7..0bc2a57d1145d 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/when-resolution-fails.js +++ b/tests/baselines/reference/tsserver/resolutionCache/when-resolution-fails.js @@ -64,30 +64,29 @@ Info 5 [00:00:36.000] Config: /user/username/projects/myproject/src/tsconfig. } Info 6 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/src/tsconfig.json WatchType: Wild card directory Info 7 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/src/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/somefolder/module1.ts 500 undefined WatchType: Closed Script info -Info 10 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings/electron.d.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 12 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots -Info 28 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots -Info 29 [00:01:00.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 30 [00:01:01.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 31 [00:01:02.000] Files (4) +Info 8 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/somefolder/module1.ts 500 undefined WatchType: Closed Script info +Info 9 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings/electron.d.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:41.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 11 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 0 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots +Info 27 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots +Info 28 [00:00:59.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 29 [00:01:00.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 30 [00:01:01.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/src/somefolder/module1.ts /user/username/projects/myproject/src/somefolder/srcfile.ts @@ -104,11 +103,11 @@ Info 31 [00:01:02.000] Files (4) typings/electron.d.ts Matched by default include pattern '**/*' -Info 32 [00:01:03.000] ----------------------------------------------- -Info 33 [00:01:04.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 33 [00:01:05.000] Files (4) +Info 31 [00:01:02.000] ----------------------------------------------- +Info 32 [00:01:03.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 32 [00:01:04.000] Files (4) -Info 33 [00:01:06.000] ----------------------------------------------- -Info 33 [00:01:07.000] Open files: -Info 33 [00:01:08.000] FileName: /user/username/projects/myproject/src/somefolder/srcfile.ts ProjectRootPath: /user/username/projects/myproject -Info 33 [00:01:09.000] Projects: /user/username/projects/myproject/src/tsconfig.json \ No newline at end of file +Info 32 [00:01:05.000] ----------------------------------------------- +Info 32 [00:01:06.000] Open files: +Info 32 [00:01:07.000] FileName: /user/username/projects/myproject/src/somefolder/srcfile.ts ProjectRootPath: /user/username/projects/myproject +Info 32 [00:01:08.000] Projects: /user/username/projects/myproject/src/tsconfig.json \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/resolutionCache/when-resolves-to-ambient-module.js b/tests/baselines/reference/tsserver/resolutionCache/when-resolves-to-ambient-module.js index f687a2103e546..ebbecdbfdc2b7 100644 --- a/tests/baselines/reference/tsserver/resolutionCache/when-resolves-to-ambient-module.js +++ b/tests/baselines/reference/tsserver/resolutionCache/when-resolves-to-ambient-module.js @@ -72,25 +72,24 @@ Info 5 [00:00:38.000] Config: /user/username/projects/myproject/src/tsconfig. } Info 6 [00:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/src/tsconfig.json WatchType: Wild card directory Info 7 [00:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 undefined Config: /user/username/projects/myproject/src/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/somefolder/module1.ts 500 undefined WatchType: Closed Script info -Info 10 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings/electron.d.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings/node.d.ts 500 undefined WatchType: Closed Script info -Info 12 [00:00:45.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json -Info 13 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:49.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots -Info 23 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots -Info 24 [00:00:57.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 25 [00:00:58.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 26 [00:00:59.000] Files (5) +Info 8 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/somefolder/module1.ts 500 undefined WatchType: Closed Script info +Info 9 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings/electron.d.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings/node.d.ts 500 undefined WatchType: Closed Script info +Info 11 [00:00:44.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json +Info 12 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:46.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/somefolder 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/node_modules 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots +Info 22 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/typings 1 undefined Project: /user/username/projects/myproject/src/tsconfig.json WatchType: Type roots +Info 23 [00:00:56.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/src/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 24 [00:00:57.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 25 [00:00:58.000] Files (5) /a/lib/lib.d.ts /user/username/projects/myproject/src/somefolder/module1.ts /user/username/projects/myproject/src/somefolder/srcfile.ts @@ -110,11 +109,11 @@ Info 26 [00:00:59.000] Files (5) typings/node.d.ts Matched by default include pattern '**/*' -Info 27 [00:01:00.000] ----------------------------------------------- -Info 28 [00:01:01.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) -Info 28 [00:01:02.000] Files (5) +Info 26 [00:00:59.000] ----------------------------------------------- +Info 27 [00:01:00.000] Project '/user/username/projects/myproject/src/tsconfig.json' (Configured) +Info 27 [00:01:01.000] Files (5) -Info 28 [00:01:03.000] ----------------------------------------------- -Info 28 [00:01:04.000] Open files: -Info 28 [00:01:05.000] FileName: /user/username/projects/myproject/src/somefolder/srcfile.ts ProjectRootPath: /user/username/projects/myproject -Info 28 [00:01:06.000] Projects: /user/username/projects/myproject/src/tsconfig.json \ No newline at end of file +Info 27 [00:01:02.000] ----------------------------------------------- +Info 27 [00:01:03.000] Open files: +Info 27 [00:01:04.000] FileName: /user/username/projects/myproject/src/somefolder/srcfile.ts ProjectRootPath: /user/username/projects/myproject +Info 27 [00:01:05.000] Projects: /user/username/projects/myproject/src/tsconfig.json \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-compiles-from-sources.js b/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-compiles-from-sources.js index 3e64eefdcafc7..a75e0a8b3f186 100644 --- a/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-compiles-from-sources.js +++ b/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-compiles-from-sources.js @@ -59,30 +59,29 @@ Info 7 [00:00:46.000] Config: /users/username/projects/myproject/javascript/p } Info 8 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory Info 9 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:49.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:50.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 12 [00:00:51.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 24 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 25 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 26 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 27 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 28 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 29 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 30 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 31 [00:01:10.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 32 [00:01:11.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 33 [00:01:12.000] Files (2) +Info 10 [00:00:49.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 11 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 23 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 24 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 25 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 26 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 27 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 28 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 29 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 30 [00:01:09.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 31 [00:01:10.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 32 [00:01:11.000] Files (2) /a/lib/lib.d.ts /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts @@ -92,20 +91,20 @@ Info 33 [00:01:12.000] Files (2) src/datetime/baseDate.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 34 [00:01:13.000] ----------------------------------------------- -Info 35 [00:01:14.000] event: +Info 33 [00:01:12.000] ----------------------------------------------- +Info 34 [00:01:13.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json"}} -Info 36 [00:01:15.000] event: +Info 35 [00:01:14.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"a6bd830f3b019a6f703b938422f5798726d0914f0d6f67c2539798ea5e66fed2","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":55,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 37 [00:01:16.000] event: +Info 36 [00:01:15.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","configFile":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json","diagnostics":[]}} -Info 38 [00:01:17.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 38 [00:01:18.000] Files (2) +Info 37 [00:01:16.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 37 [00:01:17.000] Files (2) -Info 38 [00:01:19.000] ----------------------------------------------- -Info 38 [00:01:20.000] Open files: -Info 38 [00:01:21.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 38 [00:01:22.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 37 [00:01:18.000] ----------------------------------------------- +Info 37 [00:01:19.000] Open files: +Info 37 [00:01:20.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 37 [00:01:21.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json After request PolledWatches:: @@ -136,11 +135,11 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 38 [00:01:23.000] response: +Info 37 [00:01:22.000] response: { "responseRequired": false } -Info 39 [00:01:24.000] request: +Info 38 [00:01:23.000] request: { "command": "geterr", "arguments": { @@ -212,7 +211,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 40 [00:01:25.000] response: +Info 39 [00:01:24.000] response: { "responseRequired": false } @@ -246,7 +245,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 41 [00:01:26.000] event: +Info 40 [00:01:25.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -308,7 +307,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 42 [00:01:27.000] event: +Info 41 [00:01:26.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[{"start":{"line":1,"offset":17},"end":{"line":1,"offset":46},"text":"Cannot find module '@microsoft/recognizers-text' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -370,9 +369,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 43 [00:01:28.000] event: +Info 42 [00:01:27.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} -Info 44 [00:01:29.000] event: +Info 43 [00:01:28.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) @@ -404,17 +403,17 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 45 [00:01:34.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 46 [00:01:35.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation -Info 47 [00:01:36.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 48 [00:01:37.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 49 [00:01:38.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 50 [00:01:39.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 51 [00:01:41.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 52 [00:01:42.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 53 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 54 [00:01:45.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft/recognizers-text :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 55 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft/recognizers-text :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 44 [00:01:33.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 45 [00:01:34.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation +Info 46 [00:01:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 47 [00:01:36.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 48 [00:01:37.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 49 [00:01:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 50 [00:01:40.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 51 [00:01:41.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 52 [00:01:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 53 [00:01:44.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft/recognizers-text :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 54 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft/recognizers-text :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Before running timeout callbacks //// [/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft/recognizers-text] symlink(/users/username/projects/myproject/javascript/packages/recognizers-text) //// [/users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts] @@ -449,9 +448,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 56 [00:01:54.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation -Info 57 [00:01:55.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 58 [00:01:56.000] Scheduled: *ensureProjectForOpenFiles* +Info 55 [00:01:53.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation +Info 56 [00:01:54.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 57 [00:01:55.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -512,19 +511,19 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 59 [00:01:57.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 60 [00:01:58.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 61 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info -Info 62 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution -Info 63 [00:02:01.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 64 [00:02:02.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 65 [00:02:03.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 66 [00:02:04.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 67 [00:02:05.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 68 [00:02:06.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [00:02:07.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 70 [00:02:08.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 71 [00:02:09.000] Files (3) +Info 58 [00:01:56.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 59 [00:01:57.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 60 [00:01:58.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info +Info 61 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution +Info 62 [00:02:00.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 63 [00:02:01.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 64 [00:02:02.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:02:03.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 66 [00:02:04.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 67 [00:02:05.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 68 [00:02:06.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 69 [00:02:07.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 70 [00:02:08.000] Files (3) /a/lib/lib.d.ts /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts @@ -537,26 +536,26 @@ Info 71 [00:02:09.000] Files (3) src/datetime/baseDate.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 72 [00:02:10.000] ----------------------------------------------- -Info 73 [00:02:11.000] Running: *ensureProjectForOpenFiles* -Info 74 [00:02:12.000] Before ensureProjectForOpenFiles: -Info 75 [00:02:13.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 75 [00:02:14.000] Files (3) - -Info 75 [00:02:15.000] ----------------------------------------------- -Info 75 [00:02:16.000] Open files: -Info 75 [00:02:17.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 75 [00:02:18.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 75 [00:02:19.000] After ensureProjectForOpenFiles: -Info 76 [00:02:20.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 76 [00:02:21.000] Files (3) - -Info 76 [00:02:22.000] ----------------------------------------------- -Info 76 [00:02:23.000] Open files: -Info 76 [00:02:24.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 76 [00:02:25.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 76 [00:02:26.000] got projects updated in background, updating diagnostics for /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts -Info 77 [00:02:27.000] event: +Info 71 [00:02:09.000] ----------------------------------------------- +Info 72 [00:02:10.000] Running: *ensureProjectForOpenFiles* +Info 73 [00:02:11.000] Before ensureProjectForOpenFiles: +Info 74 [00:02:12.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 74 [00:02:13.000] Files (3) + +Info 74 [00:02:14.000] ----------------------------------------------- +Info 74 [00:02:15.000] Open files: +Info 74 [00:02:16.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 74 [00:02:17.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 74 [00:02:18.000] After ensureProjectForOpenFiles: +Info 75 [00:02:19.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 75 [00:02:20.000] Files (3) + +Info 75 [00:02:21.000] ----------------------------------------------- +Info 75 [00:02:22.000] Open files: +Info 75 [00:02:23.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 75 [00:02:24.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 75 [00:02:25.000] got projects updated in background, updating diagnostics for /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts +Info 76 [00:02:26.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts"]}} After running timeout callbacks @@ -586,7 +585,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 78 [00:02:28.000] request: +Info 77 [00:02:27.000] request: { "command": "geterr", "arguments": { @@ -654,7 +653,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 79 [00:02:29.000] response: +Info 78 [00:02:28.000] response: { "responseRequired": false } @@ -686,7 +685,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 80 [00:02:30.000] event: +Info 79 [00:02:29.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -744,7 +743,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 81 [00:02:31.000] event: +Info 80 [00:02:30.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -802,9 +801,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 82 [00:02:32.000] event: +Info 81 [00:02:31.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} -Info 83 [00:02:33.000] event: +Info 82 [00:02:32.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) @@ -834,10 +833,10 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 84 [00:02:37.000] FileWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json 1:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Config file -Info 85 [00:02:38.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 86 [00:02:39.000] Scheduled: *ensureProjectForOpenFiles* -Info 87 [00:02:40.000] Elapsed:: *ms FileWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json 1:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Config file +Info 83 [00:02:36.000] FileWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json 1:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Config file +Info 84 [00:02:37.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 85 [00:02:38.000] Scheduled: *ensureProjectForOpenFiles* +Info 86 [00:02:39.000] Elapsed:: *ms FileWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json 1:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Config file Before running timeout callbacks //// [/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json] {"include":["src"],"compilerOptions":{"resolveJsonModule":true}} @@ -869,11 +868,11 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 88 [00:02:41.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 89 [00:02:42.000] Reloading configured project /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 90 [00:02:43.000] event: +Info 87 [00:02:40.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 88 [00:02:41.000] Reloading configured project /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 89 [00:02:42.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json","reason":"Change in config file detected"}} -Info 91 [00:02:44.000] Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json : { +Info 90 [00:02:43.000] Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json : { "rootNames": [ "/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts" ], @@ -882,59 +881,58 @@ Info 91 [00:02:44.000] Config: /users/username/projects/myproject/javascript/p "configFilePath": "/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json" } } -Info 92 [00:02:45.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 93 [00:02:46.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 94 [00:02:47.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 95 [00:02:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 96 [00:02:49.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution -Info 97 [00:02:50.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 98 [00:02:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 99 [00:02:52.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 100 [00:02:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 101 [00:02:54.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 102 [00:02:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 103 [00:02:56.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 104 [00:02:57.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 105 [00:02:58.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 106 [00:02:59.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 107 [00:03:00.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 108 [00:03:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 109 [00:03:02.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 110 [00:03:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 111 [00:03:04.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution -Info 112 [00:03:05.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 113 [00:03:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 114 [00:03:07.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 115 [00:03:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 116 [00:03:09.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 117 [00:03:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 118 [00:03:11.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 119 [00:03:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 120 [00:03:13.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 121 [00:03:14.000] Different program with same set of files -Info 122 [00:03:15.000] event: +Info 91 [00:02:44.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 92 [00:02:45.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 93 [00:02:46.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 94 [00:02:47.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 95 [00:02:48.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution +Info 96 [00:02:49.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 97 [00:02:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 98 [00:02:51.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 99 [00:02:52.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 100 [00:02:53.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 101 [00:02:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 102 [00:02:55.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 103 [00:02:56.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 104 [00:02:57.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 105 [00:02:58.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 106 [00:02:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 107 [00:03:00.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 108 [00:03:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 109 [00:03:02.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution +Info 110 [00:03:03.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 111 [00:03:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 112 [00:03:05.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 113 [00:03:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 114 [00:03:07.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 115 [00:03:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 116 [00:03:09.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 117 [00:03:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 118 [00:03:11.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 119 [00:03:12.000] Different program with same set of files +Info 120 [00:03:13.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json"}} -Info 123 [00:03:16.000] event: +Info 121 [00:03:14.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json","configFile":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json","diagnostics":[]}} -Info 124 [00:03:17.000] Running: *ensureProjectForOpenFiles* -Info 125 [00:03:18.000] Before ensureProjectForOpenFiles: -Info 126 [00:03:19.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 126 [00:03:20.000] Files (3) - -Info 126 [00:03:21.000] ----------------------------------------------- -Info 126 [00:03:22.000] Open files: -Info 126 [00:03:23.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 126 [00:03:24.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 126 [00:03:25.000] After ensureProjectForOpenFiles: -Info 127 [00:03:26.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 127 [00:03:27.000] Files (3) - -Info 127 [00:03:28.000] ----------------------------------------------- -Info 127 [00:03:29.000] Open files: -Info 127 [00:03:30.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 127 [00:03:31.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 127 [00:03:32.000] got projects updated in background, updating diagnostics for /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts -Info 128 [00:03:33.000] event: +Info 122 [00:03:15.000] Running: *ensureProjectForOpenFiles* +Info 123 [00:03:16.000] Before ensureProjectForOpenFiles: +Info 124 [00:03:17.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 124 [00:03:18.000] Files (3) + +Info 124 [00:03:19.000] ----------------------------------------------- +Info 124 [00:03:20.000] Open files: +Info 124 [00:03:21.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 124 [00:03:22.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 124 [00:03:23.000] After ensureProjectForOpenFiles: +Info 125 [00:03:24.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 125 [00:03:25.000] Files (3) + +Info 125 [00:03:26.000] ----------------------------------------------- +Info 125 [00:03:27.000] Open files: +Info 125 [00:03:28.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 125 [00:03:29.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 125 [00:03:30.000] got projects updated in background, updating diagnostics for /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts +Info 126 [00:03:31.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts"]}} After running timeout callbacks @@ -992,7 +990,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 129 [00:03:34.000] event: +Info 127 [00:03:32.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} After running timeout callbacks diff --git a/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js b/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js index 9d49207c736e9..a804a71d4500e 100644 --- a/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js +++ b/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js @@ -60,31 +60,30 @@ Info 7 [00:00:52.000] Config: /users/username/projects/myproject/javascript/p } Info 8 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory Info 9 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:55.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:56.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 12 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution -Info 24 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 25 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 26 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 27 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 28 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 29 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 30 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 31 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 32 [00:01:17.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 33 [00:01:18.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 34 [00:01:19.000] Files (2) +Info 10 [00:00:55.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 11 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution +Info 23 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 24 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 25 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 26 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 27 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 28 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 29 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 30 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 31 [00:01:16.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 32 [00:01:17.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 33 [00:01:18.000] Files (2) /a/lib/lib.d.ts /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts @@ -94,20 +93,20 @@ Info 34 [00:01:19.000] Files (2) src/datetime/baseDate.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 35 [00:01:20.000] ----------------------------------------------- -Info 36 [00:01:21.000] event: +Info 34 [00:01:19.000] ----------------------------------------------- +Info 35 [00:01:20.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json"}} -Info 37 [00:01:22.000] event: +Info 36 [00:01:21.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"a6bd830f3b019a6f703b938422f5798726d0914f0d6f67c2539798ea5e66fed2","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":55,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 38 [00:01:23.000] event: +Info 37 [00:01:22.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","configFile":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json","diagnostics":[]}} -Info 39 [00:01:24.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 39 [00:01:25.000] Files (2) +Info 38 [00:01:23.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 38 [00:01:24.000] Files (2) -Info 39 [00:01:26.000] ----------------------------------------------- -Info 39 [00:01:27.000] Open files: -Info 39 [00:01:28.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 39 [00:01:29.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 38 [00:01:25.000] ----------------------------------------------- +Info 38 [00:01:26.000] Open files: +Info 38 [00:01:27.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 38 [00:01:28.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json After request PolledWatches:: @@ -140,11 +139,11 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 39 [00:01:30.000] response: +Info 38 [00:01:29.000] response: { "responseRequired": false } -Info 40 [00:01:31.000] request: +Info 39 [00:01:30.000] request: { "command": "geterr", "arguments": { @@ -220,7 +219,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 41 [00:01:32.000] response: +Info 40 [00:01:31.000] response: { "responseRequired": false } @@ -256,7 +255,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 42 [00:01:33.000] event: +Info 41 [00:01:32.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -322,7 +321,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 43 [00:01:34.000] event: +Info 42 [00:01:33.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[{"start":{"line":1,"offset":17},"end":{"line":1,"offset":46},"text":"Cannot find module '@microsoft/recognizers-text' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -388,9 +387,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 44 [00:01:35.000] event: +Info 43 [00:01:34.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} -Info 45 [00:01:36.000] event: +Info 44 [00:01:35.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) @@ -555,7 +554,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 46 [00:01:44.000] request: +Info 45 [00:01:43.000] request: { "command": "geterr", "arguments": { @@ -631,7 +630,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 47 [00:01:45.000] response: +Info 46 [00:01:44.000] response: { "responseRequired": false } @@ -667,7 +666,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 48 [00:01:46.000] event: +Info 47 [00:01:45.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -733,7 +732,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 49 [00:01:47.000] event: +Info 48 [00:01:46.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[{"start":{"line":1,"offset":17},"end":{"line":1,"offset":46},"text":"Cannot find module '@microsoft/recognizers-text' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -799,9 +798,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 50 [00:01:48.000] event: +Info 49 [00:01:47.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} -Info 51 [00:01:49.000] event: +Info 50 [00:01:48.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-recompiles-after-deleting-generated-folders.js b/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-recompiles-after-deleting-generated-folders.js index 9da8b4da72f09..de1c3d067aa04 100644 --- a/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-recompiles-after-deleting-generated-folders.js +++ b/tests/baselines/reference/tsserver/symLinks/module-resolution-when-project-recompiles-after-deleting-generated-folders.js @@ -63,26 +63,25 @@ Info 7 [00:00:58.000] Config: /users/username/projects/myproject/javascript/p } Info 8 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory Info 9 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory -Info 10 [00:01:01.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:01:02.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 12 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [00:01:09.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution -Info 19 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 20 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 21 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 22 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 23 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 24 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 25 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 26 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 27 [00:01:18.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 28 [00:01:19.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 29 [00:01:20.000] Files (3) +Info 10 [00:01:01.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 11 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution +Info 18 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 19 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 20 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 21 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 22 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 23 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 24 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 25 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 26 [00:01:17.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 27 [00:01:18.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 28 [00:01:19.000] Files (3) /a/lib/lib.d.ts /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts @@ -95,20 +94,20 @@ Info 29 [00:01:20.000] Files (3) src/datetime/baseDate.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 30 [00:01:21.000] ----------------------------------------------- -Info 31 [00:01:22.000] event: +Info 29 [00:01:20.000] ----------------------------------------------- +Info 30 [00:01:21.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json"}} -Info 32 [00:01:23.000] event: +Info 31 [00:01:22.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"a6bd830f3b019a6f703b938422f5798726d0914f0d6f67c2539798ea5e66fed2","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":55,"tsx":0,"tsxSize":0,"dts":2,"dtsSize":370,"deferred":0,"deferredSize":0},"compilerOptions":{},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 33 [00:01:24.000] event: +Info 32 [00:01:23.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","configFile":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json","diagnostics":[]}} -Info 34 [00:01:25.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 34 [00:01:26.000] Files (3) +Info 33 [00:01:24.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 33 [00:01:25.000] Files (3) -Info 34 [00:01:27.000] ----------------------------------------------- -Info 34 [00:01:28.000] Open files: -Info 34 [00:01:29.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 34 [00:01:30.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 33 [00:01:26.000] ----------------------------------------------- +Info 33 [00:01:27.000] Open files: +Info 33 [00:01:28.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 33 [00:01:29.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json After request PolledWatches:: @@ -137,11 +136,11 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 34 [00:01:31.000] response: +Info 33 [00:01:30.000] response: { "responseRequired": false } -Info 35 [00:01:32.000] request: +Info 34 [00:01:31.000] request: { "command": "geterr", "arguments": { @@ -209,7 +208,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 36 [00:01:33.000] response: +Info 35 [00:01:32.000] response: { "responseRequired": false } @@ -241,7 +240,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 37 [00:01:34.000] event: +Info 36 [00:01:33.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -299,7 +298,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 38 [00:01:35.000] event: +Info 37 [00:01:34.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -357,9 +356,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 39 [00:01:36.000] event: +Info 38 [00:01:35.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} -Info 40 [00:01:37.000] event: +Info 39 [00:01:36.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) @@ -389,11 +388,11 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 41 [00:01:39.000] FileWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 2:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info -Info 42 [00:01:40.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info -Info 43 [00:01:41.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 44 [00:01:42.000] Scheduled: *ensureProjectForOpenFiles* -Info 45 [00:01:43.000] Elapsed:: *ms FileWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 2:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info +Info 40 [00:01:38.000] FileWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 2:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info +Info 41 [00:01:39.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info +Info 42 [00:01:40.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 43 [00:01:41.000] Scheduled: *ensureProjectForOpenFiles* +Info 44 [00:01:42.000] Elapsed:: *ms FileWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 2:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts] deleted @@ -421,17 +420,17 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 46 [00:01:46.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 47 [00:01:47.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 48 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 49 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 50 [00:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 51 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 52 [00:01:52.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 53 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 54 [00:01:54.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 55 [00:01:55.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 56 [00:01:56.000] Files (2) +Info 45 [00:01:45.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 46 [00:01:46.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 47 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 48 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 49 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 50 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 51 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 52 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 53 [00:01:53.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 54 [00:01:54.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 55 [00:01:55.000] Files (2) /a/lib/lib.d.ts /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts @@ -441,26 +440,26 @@ Info 56 [00:01:56.000] Files (2) src/datetime/baseDate.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 57 [00:01:57.000] ----------------------------------------------- -Info 58 [00:01:58.000] Running: *ensureProjectForOpenFiles* -Info 59 [00:01:59.000] Before ensureProjectForOpenFiles: -Info 60 [00:02:00.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 60 [00:02:01.000] Files (2) - -Info 60 [00:02:02.000] ----------------------------------------------- -Info 60 [00:02:03.000] Open files: -Info 60 [00:02:04.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 60 [00:02:05.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 60 [00:02:06.000] After ensureProjectForOpenFiles: -Info 61 [00:02:07.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 61 [00:02:08.000] Files (2) - -Info 61 [00:02:09.000] ----------------------------------------------- -Info 61 [00:02:10.000] Open files: -Info 61 [00:02:11.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 61 [00:02:12.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 61 [00:02:13.000] got projects updated in background, updating diagnostics for /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts -Info 62 [00:02:14.000] event: +Info 56 [00:01:56.000] ----------------------------------------------- +Info 57 [00:01:57.000] Running: *ensureProjectForOpenFiles* +Info 58 [00:01:58.000] Before ensureProjectForOpenFiles: +Info 59 [00:01:59.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 59 [00:02:00.000] Files (2) + +Info 59 [00:02:01.000] ----------------------------------------------- +Info 59 [00:02:02.000] Open files: +Info 59 [00:02:03.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 59 [00:02:04.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 59 [00:02:05.000] After ensureProjectForOpenFiles: +Info 60 [00:02:06.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 60 [00:02:07.000] Files (2) + +Info 60 [00:02:08.000] ----------------------------------------------- +Info 60 [00:02:09.000] Open files: +Info 60 [00:02:10.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 60 [00:02:11.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 60 [00:02:12.000] got projects updated in background, updating diagnostics for /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts +Info 61 [00:02:13.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts"]}} After running timeout callbacks @@ -526,7 +525,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 63 [00:02:15.000] event: +Info 62 [00:02:14.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} After running timeout callbacks @@ -560,7 +559,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 64 [00:02:16.000] request: +Info 63 [00:02:15.000] request: { "command": "geterr", "arguments": { @@ -636,7 +635,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 65 [00:02:17.000] response: +Info 64 [00:02:16.000] response: { "responseRequired": false } @@ -672,7 +671,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 66 [00:02:18.000] event: +Info 65 [00:02:17.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -738,7 +737,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 67 [00:02:19.000] event: +Info 66 [00:02:18.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[{"start":{"line":1,"offset":17},"end":{"line":1,"offset":46},"text":"Cannot find module '@microsoft/recognizers-text' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -804,9 +803,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 68 [00:02:20.000] event: +Info 67 [00:02:19.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} -Info 69 [00:02:21.000] event: +Info 68 [00:02:20.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) @@ -971,7 +970,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 70 [00:02:28.000] request: +Info 69 [00:02:27.000] request: { "command": "geterr", "arguments": { @@ -1047,7 +1046,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 71 [00:02:29.000] response: +Info 70 [00:02:28.000] response: { "responseRequired": false } @@ -1083,7 +1082,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 72 [00:02:30.000] event: +Info 71 [00:02:29.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -1149,7 +1148,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 73 [00:02:31.000] event: +Info 72 [00:02:30.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[{"start":{"line":1,"offset":17},"end":{"line":1,"offset":46},"text":"Cannot find module '@microsoft/recognizers-text' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -1215,9 +1214,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 74 [00:02:32.000] event: +Info 73 [00:02:31.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} -Info 75 [00:02:33.000] event: +Info 74 [00:02:32.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-compiles-from-sources.js b/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-compiles-from-sources.js index bedbea44f3c3f..441a0f674a310 100644 --- a/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-compiles-from-sources.js +++ b/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-compiles-from-sources.js @@ -67,35 +67,34 @@ Info 7 [00:00:46.000] Config: /users/username/projects/myproject/javascript/p } Info 8 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory Info 9 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:49.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:50.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 12 [00:00:51.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:52.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:54.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:56.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution -Info 28 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 29 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 30 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 31 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 32 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 33 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 34 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 35 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 36 [00:01:15.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 37 [00:01:16.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 38 [00:01:17.000] Files (2) +Info 10 [00:00:49.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 11 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:55.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution +Info 27 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 28 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 29 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 30 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 31 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 32 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 33 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 34 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 35 [00:01:14.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:15.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 37 [00:01:16.000] Files (2) /a/lib/lib.d.ts /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts @@ -105,20 +104,20 @@ Info 38 [00:01:17.000] Files (2) src/datetime/baseDate.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 39 [00:01:18.000] ----------------------------------------------- -Info 40 [00:01:19.000] event: +Info 38 [00:01:17.000] ----------------------------------------------- +Info 39 [00:01:18.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json"}} -Info 41 [00:01:20.000] event: +Info 40 [00:01:19.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"a6bd830f3b019a6f703b938422f5798726d0914f0d6f67c2539798ea5e66fed2","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":55,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"rootDir":"","baseUrl":"","paths":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 42 [00:01:21.000] event: +Info 41 [00:01:20.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","configFile":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json","diagnostics":[]}} -Info 43 [00:01:22.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 43 [00:01:23.000] Files (2) +Info 42 [00:01:21.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 42 [00:01:22.000] Files (2) -Info 43 [00:01:24.000] ----------------------------------------------- -Info 43 [00:01:25.000] Open files: -Info 43 [00:01:26.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 43 [00:01:27.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 42 [00:01:23.000] ----------------------------------------------- +Info 42 [00:01:24.000] Open files: +Info 42 [00:01:25.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 42 [00:01:26.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json After request PolledWatches:: @@ -155,11 +154,11 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-text: {} -Info 43 [00:01:28.000] response: +Info 42 [00:01:27.000] response: { "responseRequired": false } -Info 44 [00:01:29.000] request: +Info 43 [00:01:28.000] request: { "command": "geterr", "arguments": { @@ -243,7 +242,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-text: {} -Info 45 [00:01:30.000] response: +Info 44 [00:01:29.000] response: { "responseRequired": false } @@ -283,7 +282,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-text: {} -Info 46 [00:01:31.000] event: +Info 45 [00:01:30.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -357,7 +356,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-text: {} -Info 47 [00:01:32.000] event: +Info 46 [00:01:31.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[{"start":{"line":1,"offset":17},"end":{"line":1,"offset":46},"text":"Cannot find module '@microsoft/recognizers-text' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -431,9 +430,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-text: {} -Info 48 [00:01:33.000] event: +Info 47 [00:01:32.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} -Info 49 [00:01:34.000] event: +Info 48 [00:01:33.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) @@ -471,24 +470,24 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-text: {} -Info 50 [00:01:39.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 51 [00:01:40.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation -Info 52 [00:01:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 53 [00:01:42.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 54 [00:01:43.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 55 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 56 [00:01:46.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 57 [00:01:47.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 58 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 59 [00:01:50.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft/recognizers-text :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 60 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft/recognizers-text :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 61 [00:01:55.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 62 [00:01:56.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 63 [00:01:59.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 64 [00:02:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 65 [00:02:03.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 66 [00:02:04.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one -Info 67 [00:02:05.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 49 [00:01:38.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 50 [00:01:39.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation +Info 51 [00:01:40.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 52 [00:01:41.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 53 [00:01:42.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 54 [00:01:43.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 55 [00:01:45.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 56 [00:01:46.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 57 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 58 [00:01:49.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft/recognizers-text :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 59 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft/recognizers-text :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 60 [00:01:54.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 61 [00:01:55.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 62 [00:01:58.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 63 [00:01:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 64 [00:02:02.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:02:03.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation, Cancelled earlier one +Info 66 [00:02:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Before running timeout callbacks //// [/users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@microsoft/recognizers-text] symlink(/users/username/projects/myproject/javascript/packages/recognizers-text) //// [/users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts] @@ -529,9 +528,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 68 [00:02:06.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation -Info 69 [00:02:07.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 70 [00:02:08.000] Scheduled: *ensureProjectForOpenFiles* +Info 67 [00:02:05.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation +Info 68 [00:02:06.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 69 [00:02:07.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -604,24 +603,24 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 71 [00:02:09.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 72 [00:02:10.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 73 [00:02:11.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info -Info 74 [00:02:12.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 75 [00:02:13.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 76 [00:02:14.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 77 [00:02:15.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 78 [00:02:16.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 79 [00:02:17.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 80 [00:02:18.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 81 [00:02:19.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 82 [00:02:20.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 83 [00:02:21.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 84 [00:02:22.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 85 [00:02:23.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 86 [00:02:24.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 87 [00:02:25.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 88 [00:02:26.000] Files (3) +Info 70 [00:02:08.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 71 [00:02:09.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 72 [00:02:10.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info +Info 73 [00:02:11.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 74 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 75 [00:02:13.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 76 [00:02:14.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 77 [00:02:15.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 78 [00:02:16.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 79 [00:02:17.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 80 [00:02:18.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 81 [00:02:19.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 82 [00:02:20.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 83 [00:02:21.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 84 [00:02:22.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 85 [00:02:23.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 86 [00:02:24.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 87 [00:02:25.000] Files (3) /a/lib/lib.d.ts /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts @@ -634,26 +633,26 @@ Info 88 [00:02:26.000] Files (3) src/datetime/baseDate.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 89 [00:02:27.000] ----------------------------------------------- -Info 90 [00:02:28.000] Running: *ensureProjectForOpenFiles* -Info 91 [00:02:29.000] Before ensureProjectForOpenFiles: -Info 92 [00:02:30.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 92 [00:02:31.000] Files (3) - -Info 92 [00:02:32.000] ----------------------------------------------- -Info 92 [00:02:33.000] Open files: -Info 92 [00:02:34.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 92 [00:02:35.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 92 [00:02:36.000] After ensureProjectForOpenFiles: -Info 93 [00:02:37.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 93 [00:02:38.000] Files (3) - -Info 93 [00:02:39.000] ----------------------------------------------- -Info 93 [00:02:40.000] Open files: -Info 93 [00:02:41.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 93 [00:02:42.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 93 [00:02:43.000] got projects updated in background, updating diagnostics for /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts -Info 94 [00:02:44.000] event: +Info 88 [00:02:26.000] ----------------------------------------------- +Info 89 [00:02:27.000] Running: *ensureProjectForOpenFiles* +Info 90 [00:02:28.000] Before ensureProjectForOpenFiles: +Info 91 [00:02:29.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 91 [00:02:30.000] Files (3) + +Info 91 [00:02:31.000] ----------------------------------------------- +Info 91 [00:02:32.000] Open files: +Info 91 [00:02:33.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 91 [00:02:34.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 91 [00:02:35.000] After ensureProjectForOpenFiles: +Info 92 [00:02:36.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 92 [00:02:37.000] Files (3) + +Info 92 [00:02:38.000] ----------------------------------------------- +Info 92 [00:02:39.000] Open files: +Info 92 [00:02:40.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 92 [00:02:41.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 92 [00:02:42.000] got projects updated in background, updating diagnostics for /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts +Info 93 [00:02:43.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts"]}} After running timeout callbacks @@ -683,7 +682,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 95 [00:02:45.000] request: +Info 94 [00:02:44.000] request: { "command": "geterr", "arguments": { @@ -751,7 +750,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 96 [00:02:46.000] response: +Info 95 [00:02:45.000] response: { "responseRequired": false } @@ -783,7 +782,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 97 [00:02:47.000] event: +Info 96 [00:02:46.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -841,7 +840,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 98 [00:02:48.000] event: +Info 97 [00:02:47.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -899,9 +898,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 99 [00:02:49.000] event: +Info 98 [00:02:48.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} -Info 100 [00:02:50.000] event: +Info 99 [00:02:49.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) @@ -931,10 +930,10 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 101 [00:02:54.000] FileWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json 1:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Config file -Info 102 [00:02:55.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 103 [00:02:56.000] Scheduled: *ensureProjectForOpenFiles* -Info 104 [00:02:57.000] Elapsed:: *ms FileWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json 1:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Config file +Info 100 [00:02:53.000] FileWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json 1:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Config file +Info 101 [00:02:54.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 102 [00:02:55.000] Scheduled: *ensureProjectForOpenFiles* +Info 103 [00:02:56.000] Elapsed:: *ms FileWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json 1:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Config file Before running timeout callbacks //// [/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json] {"compilerOptions":{"rootDir":"src","baseUrl":"./","paths":{"@microsoft/*":["../*"]},"resolveJsonModule":true},"include":["src"]} @@ -966,11 +965,11 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 105 [00:02:58.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 106 [00:02:59.000] Reloading configured project /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 107 [00:03:00.000] event: +Info 104 [00:02:57.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 105 [00:02:58.000] Reloading configured project /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 106 [00:02:59.000] event: {"seq":0,"type":"event","event":"projectLoadingStart","body":{"projectName":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json","reason":"Change in config file detected"}} -Info 108 [00:03:01.000] Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json : { +Info 107 [00:03:00.000] Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json : { "rootNames": [ "/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts" ], @@ -987,55 +986,54 @@ Info 108 [00:03:01.000] Config: /users/username/projects/myproject/javascript/p "configFilePath": "/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json" } } -Info 109 [00:03:02.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 110 [00:03:03.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 111 [00:03:04.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution -Info 112 [00:03:05.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 113 [00:03:06.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 114 [00:03:07.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 115 [00:03:08.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 116 [00:03:09.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 117 [00:03:10.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 118 [00:03:11.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 119 [00:03:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 120 [00:03:13.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 121 [00:03:14.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 122 [00:03:15.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 123 [00:03:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 124 [00:03:17.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution -Info 125 [00:03:18.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 126 [00:03:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 127 [00:03:20.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 128 [00:03:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 129 [00:03:22.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 130 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 131 [00:03:24.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 132 [00:03:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 133 [00:03:26.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 134 [00:03:27.000] Different program with same set of files -Info 135 [00:03:28.000] event: +Info 108 [00:03:01.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 109 [00:03:02.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 110 [00:03:03.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution +Info 111 [00:03:04.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 112 [00:03:05.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 113 [00:03:06.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 114 [00:03:07.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 115 [00:03:08.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 116 [00:03:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 117 [00:03:10.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 118 [00:03:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 119 [00:03:12.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 120 [00:03:13.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 121 [00:03:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 122 [00:03:15.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution +Info 123 [00:03:16.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 124 [00:03:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 125 [00:03:18.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 126 [00:03:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 127 [00:03:20.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 128 [00:03:21.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 129 [00:03:22.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 130 [00:03:23.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 131 [00:03:24.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 132 [00:03:25.000] Different program with same set of files +Info 133 [00:03:26.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json"}} -Info 136 [00:03:29.000] event: +Info 134 [00:03:27.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json","configFile":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json","diagnostics":[]}} -Info 137 [00:03:30.000] Running: *ensureProjectForOpenFiles* -Info 138 [00:03:31.000] Before ensureProjectForOpenFiles: -Info 139 [00:03:32.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 139 [00:03:33.000] Files (3) - -Info 139 [00:03:34.000] ----------------------------------------------- -Info 139 [00:03:35.000] Open files: -Info 139 [00:03:36.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 139 [00:03:37.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 139 [00:03:38.000] After ensureProjectForOpenFiles: -Info 140 [00:03:39.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 140 [00:03:40.000] Files (3) - -Info 140 [00:03:41.000] ----------------------------------------------- -Info 140 [00:03:42.000] Open files: -Info 140 [00:03:43.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 140 [00:03:44.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 140 [00:03:45.000] got projects updated in background, updating diagnostics for /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts -Info 141 [00:03:46.000] event: +Info 135 [00:03:28.000] Running: *ensureProjectForOpenFiles* +Info 136 [00:03:29.000] Before ensureProjectForOpenFiles: +Info 137 [00:03:30.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 137 [00:03:31.000] Files (3) + +Info 137 [00:03:32.000] ----------------------------------------------- +Info 137 [00:03:33.000] Open files: +Info 137 [00:03:34.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 137 [00:03:35.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 137 [00:03:36.000] After ensureProjectForOpenFiles: +Info 138 [00:03:37.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 138 [00:03:38.000] Files (3) + +Info 138 [00:03:39.000] ----------------------------------------------- +Info 138 [00:03:40.000] Open files: +Info 138 [00:03:41.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 138 [00:03:42.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 138 [00:03:43.000] got projects updated in background, updating diagnostics for /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts +Info 139 [00:03:44.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts"]}} After running timeout callbacks @@ -1093,7 +1091,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 142 [00:03:47.000] event: +Info 140 [00:03:45.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} After running timeout callbacks diff --git a/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js b/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js index 18e41fc54ed85..df72b40918802 100644 --- a/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js +++ b/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-has-node_modules-setup-but-doesnt-have-modules-in-typings-folder-and-then-recompiles.js @@ -68,35 +68,34 @@ Info 7 [00:00:52.000] Config: /users/username/projects/myproject/javascript/p } Info 8 [00:00:53.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory Info 9 [00:00:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory -Info 10 [00:00:55.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:56.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 12 [00:00:57.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:58.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:01:00.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:01:02.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 20 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 23 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 24 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 25 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 26 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 27 [00:01:12.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution -Info 28 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 29 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 30 [00:01:15.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 31 [00:01:16.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 32 [00:01:17.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 33 [00:01:18.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 34 [00:01:19.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 35 [00:01:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 36 [00:01:21.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 37 [00:01:22.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 38 [00:01:23.000] Files (2) +Info 10 [00:00:55.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 11 [00:00:56.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:57.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:01:01.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:01:02.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:01:03.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 19 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 22 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 23 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 24 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 26 [00:01:11.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution +Info 27 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 28 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 29 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 30 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 31 [00:01:16.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 32 [00:01:17.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 33 [00:01:18.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 34 [00:01:19.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 35 [00:01:20.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:21.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 37 [00:01:22.000] Files (2) /a/lib/lib.d.ts /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts @@ -106,20 +105,20 @@ Info 38 [00:01:23.000] Files (2) src/datetime/baseDate.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 39 [00:01:24.000] ----------------------------------------------- -Info 40 [00:01:25.000] event: +Info 38 [00:01:23.000] ----------------------------------------------- +Info 39 [00:01:24.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json"}} -Info 41 [00:01:26.000] event: +Info 40 [00:01:25.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"a6bd830f3b019a6f703b938422f5798726d0914f0d6f67c2539798ea5e66fed2","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":55,"tsx":0,"tsxSize":0,"dts":1,"dtsSize":334,"deferred":0,"deferredSize":0},"compilerOptions":{"rootDir":"","baseUrl":"","paths":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 42 [00:01:27.000] event: +Info 41 [00:01:26.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","configFile":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json","diagnostics":[]}} -Info 43 [00:01:28.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 43 [00:01:29.000] Files (2) +Info 42 [00:01:27.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 42 [00:01:28.000] Files (2) -Info 43 [00:01:30.000] ----------------------------------------------- -Info 43 [00:01:31.000] Open files: -Info 43 [00:01:32.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 43 [00:01:33.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 42 [00:01:29.000] ----------------------------------------------- +Info 42 [00:01:30.000] Open files: +Info 42 [00:01:31.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 42 [00:01:32.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json After request PolledWatches:: @@ -156,11 +155,11 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 43 [00:01:34.000] response: +Info 42 [00:01:33.000] response: { "responseRequired": false } -Info 44 [00:01:35.000] request: +Info 43 [00:01:34.000] request: { "command": "geterr", "arguments": { @@ -244,7 +243,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 45 [00:01:36.000] response: +Info 44 [00:01:35.000] response: { "responseRequired": false } @@ -284,7 +283,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 46 [00:01:37.000] event: +Info 45 [00:01:36.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -358,7 +357,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 47 [00:01:38.000] event: +Info 46 [00:01:37.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[{"start":{"line":1,"offset":17},"end":{"line":1,"offset":46},"text":"Cannot find module '@microsoft/recognizers-text' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -432,9 +431,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 48 [00:01:39.000] event: +Info 47 [00:01:38.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} -Info 49 [00:01:40.000] event: +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) @@ -472,13 +471,13 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 50 [00:01:44.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 51 [00:01:45.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 52 [00:01:48.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 53 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 54 [00:01:52.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 55 [00:01:53.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation -Info 56 [00:01:54.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 49 [00:01:43.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 50 [00:01:44.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 51 [00:01:47.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 52 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 53 [00:01:51.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 54 [00:01:52.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation +Info 55 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Before running timeout callbacks //// [/users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts] export class C { method(): number; } @@ -518,9 +517,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 57 [00:01:55.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation -Info 58 [00:01:56.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 59 [00:01:57.000] Scheduled: *ensureProjectForOpenFiles* +Info 56 [00:01:54.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation +Info 57 [00:01:55.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 58 [00:01:56.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -593,24 +592,24 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 60 [00:01:58.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 61 [00:01:59.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 62 [00:02:00.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info -Info 63 [00:02:01.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 64 [00:02:02.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 65 [00:02:03.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 66 [00:02:04.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 67 [00:02:05.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 68 [00:02:06.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 69 [00:02:07.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 70 [00:02:08.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 71 [00:02:09.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 72 [00:02:10.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 73 [00:02:11.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 74 [00:02:12.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 75 [00:02:13.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 76 [00:02:14.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 77 [00:02:15.000] Files (3) +Info 59 [00:01:57.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 60 [00:01:58.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 61 [00:01:59.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info +Info 62 [00:02:00.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 63 [00:02:01.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 64 [00:02:02.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 65 [00:02:03.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 66 [00:02:04.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 67 [00:02:05.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 68 [00:02:06.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 69 [00:02:07.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 70 [00:02:08.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 71 [00:02:09.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 72 [00:02:10.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 73 [00:02:11.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 74 [00:02:12.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 75 [00:02:13.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 76 [00:02:14.000] Files (3) /a/lib/lib.d.ts /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts @@ -623,26 +622,26 @@ Info 77 [00:02:15.000] Files (3) src/datetime/baseDate.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 78 [00:02:16.000] ----------------------------------------------- -Info 79 [00:02:17.000] Running: *ensureProjectForOpenFiles* -Info 80 [00:02:18.000] Before ensureProjectForOpenFiles: -Info 81 [00:02:19.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 81 [00:02:20.000] Files (3) - -Info 81 [00:02:21.000] ----------------------------------------------- -Info 81 [00:02:22.000] Open files: -Info 81 [00:02:23.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 81 [00:02:24.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 81 [00:02:25.000] After ensureProjectForOpenFiles: -Info 82 [00:02:26.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 82 [00:02:27.000] Files (3) - -Info 82 [00:02:28.000] ----------------------------------------------- -Info 82 [00:02:29.000] Open files: -Info 82 [00:02:30.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 82 [00:02:31.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 82 [00:02:32.000] got projects updated in background, updating diagnostics for /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts -Info 83 [00:02:33.000] event: +Info 77 [00:02:15.000] ----------------------------------------------- +Info 78 [00:02:16.000] Running: *ensureProjectForOpenFiles* +Info 79 [00:02:17.000] Before ensureProjectForOpenFiles: +Info 80 [00:02:18.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 80 [00:02:19.000] Files (3) + +Info 80 [00:02:20.000] ----------------------------------------------- +Info 80 [00:02:21.000] Open files: +Info 80 [00:02:22.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 80 [00:02:23.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 80 [00:02:24.000] After ensureProjectForOpenFiles: +Info 81 [00:02:25.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 81 [00:02:26.000] Files (3) + +Info 81 [00:02:27.000] ----------------------------------------------- +Info 81 [00:02:28.000] Open files: +Info 81 [00:02:29.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 81 [00:02:30.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 81 [00:02:31.000] got projects updated in background, updating diagnostics for /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts +Info 82 [00:02:32.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts"]}} After running timeout callbacks @@ -672,7 +671,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 84 [00:02:34.000] request: +Info 83 [00:02:33.000] request: { "command": "geterr", "arguments": { @@ -740,7 +739,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 85 [00:02:35.000] response: +Info 84 [00:02:34.000] response: { "responseRequired": false } @@ -772,7 +771,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 86 [00:02:36.000] event: +Info 85 [00:02:35.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -830,7 +829,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 87 [00:02:37.000] event: +Info 86 [00:02:36.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -888,9 +887,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 88 [00:02:38.000] event: +Info 87 [00:02:37.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} -Info 89 [00:02:39.000] event: +Info 88 [00:02:38.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-recompiles-after-deleting-generated-folders.js b/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-recompiles-after-deleting-generated-folders.js index f1f048329536d..d08527bdac50d 100644 --- a/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-recompiles-after-deleting-generated-folders.js +++ b/tests/baselines/reference/tsserver/symLinks/module-resolution-with-path-mapping-when-project-recompiles-after-deleting-generated-folders.js @@ -71,24 +71,23 @@ Info 7 [00:00:58.000] Config: /users/username/projects/myproject/javascript/p } Info 8 [00:00:59.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory Info 9 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Config: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Wild card directory -Info 10 [00:01:01.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:01:02.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 12 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:01:05.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:01:06.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:01:07.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution -Info 17 [00:01:08.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 18 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 19 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 20 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 21 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 22 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 23 [00:01:14.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 24 [00:01:15.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots -Info 25 [00:01:16.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 26 [00:01:17.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 27 [00:01:18.000] Files (3) +Info 10 [00:01:01.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 11 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:01:04.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:01:05.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages 0 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:01:06.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/package.json 2000 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: File location affecting resolution +Info 16 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 17 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 18 [00:01:09.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 19 [00:01:10.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 20 [00:01:11.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 21 [00:01:12.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 22 [00:01:13.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 23 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules/@types 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Type roots +Info 24 [00:01:15.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 25 [00:01:16.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 26 [00:01:17.000] Files (3) /a/lib/lib.d.ts /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts @@ -101,20 +100,20 @@ Info 27 [00:01:18.000] Files (3) src/datetime/baseDate.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 28 [00:01:19.000] ----------------------------------------------- -Info 29 [00:01:20.000] event: +Info 27 [00:01:18.000] ----------------------------------------------- +Info 28 [00:01:19.000] event: {"seq":0,"type":"event","event":"projectLoadingFinish","body":{"projectName":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json"}} -Info 30 [00:01:21.000] event: +Info 29 [00:01:20.000] event: {"seq":0,"type":"event","event":"telemetry","body":{"telemetryEventName":"projectInfo","payload":{"projectId":"a6bd830f3b019a6f703b938422f5798726d0914f0d6f67c2539798ea5e66fed2","fileStats":{"js":0,"jsSize":0,"jsx":0,"jsxSize":0,"ts":1,"tsSize":55,"tsx":0,"tsxSize":0,"dts":2,"dtsSize":370,"deferred":0,"deferredSize":0},"compilerOptions":{"rootDir":"","baseUrl":"","paths":""},"typeAcquisition":{"enable":false,"include":false,"exclude":false},"extends":false,"files":false,"include":true,"exclude":false,"compileOnSave":false,"configFileName":"tsconfig.json","projectType":"configured","languageServiceEnabled":true,"version":"FakeVersion"}}} -Info 31 [00:01:22.000] event: +Info 30 [00:01:21.000] event: {"seq":0,"type":"event","event":"configFileDiag","body":{"triggerFile":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","configFile":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json","diagnostics":[]}} -Info 32 [00:01:23.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 32 [00:01:24.000] Files (3) +Info 31 [00:01:22.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 31 [00:01:23.000] Files (3) -Info 32 [00:01:25.000] ----------------------------------------------- -Info 32 [00:01:26.000] Open files: -Info 32 [00:01:27.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 32 [00:01:28.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 31 [00:01:24.000] ----------------------------------------------- +Info 31 [00:01:25.000] Open files: +Info 31 [00:01:26.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 31 [00:01:27.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json After request PolledWatches:: @@ -143,11 +142,11 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 32 [00:01:29.000] response: +Info 31 [00:01:28.000] response: { "responseRequired": false } -Info 33 [00:01:30.000] request: +Info 32 [00:01:29.000] request: { "command": "geterr", "arguments": { @@ -215,7 +214,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 34 [00:01:31.000] response: +Info 33 [00:01:30.000] response: { "responseRequired": false } @@ -247,7 +246,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 35 [00:01:32.000] event: +Info 34 [00:01:31.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -305,7 +304,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 36 [00:01:33.000] event: +Info 35 [00:01:32.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -363,9 +362,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 37 [00:01:34.000] event: +Info 36 [00:01:33.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} -Info 38 [00:01:35.000] event: +Info 37 [00:01:34.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":2}} Before running immediate callbacks and checking length (1) @@ -395,11 +394,11 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 39 [00:01:37.000] FileWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 2:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info -Info 40 [00:01:38.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info -Info 41 [00:01:39.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 42 [00:01:40.000] Scheduled: *ensureProjectForOpenFiles* -Info 43 [00:01:41.000] Elapsed:: *ms FileWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 2:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info +Info 38 [00:01:36.000] FileWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 2:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info +Info 39 [00:01:37.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info +Info 40 [00:01:38.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 41 [00:01:39.000] Scheduled: *ensureProjectForOpenFiles* +Info 42 [00:01:40.000] Elapsed:: *ms FileWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 2:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info Before running timeout callbacks //// [/users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts] deleted @@ -427,23 +426,23 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 44 [00:01:44.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 45 [00:01:45.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 46 [00:01:46.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 47 [00:01:47.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 48 [00:01:48.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 49 [00:01:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 50 [00:01:50.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 51 [00:01:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 52 [00:01:52.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 53 [00:01:53.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 54 [00:01:54.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 55 [00:01:55.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 56 [00:01:56.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 57 [00:01:57.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 58 [00:01:58.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 59 [00:01:59.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 60 [00:02:00.000] Files (2) +Info 43 [00:01:43.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 44 [00:01:44.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 45 [00:01:45.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 46 [00:01:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 47 [00:01:47.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 48 [00:01:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 49 [00:01:49.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 50 [00:01:50.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 51 [00:01:51.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 52 [00:01:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 53 [00:01:53.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 54 [00:01:54.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 55 [00:01:55.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 56 [00:01:56.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 57 [00:01:57.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 58 [00:01:58.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 59 [00:01:59.000] Files (2) /a/lib/lib.d.ts /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts @@ -453,26 +452,26 @@ Info 60 [00:02:00.000] Files (2) src/datetime/baseDate.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 61 [00:02:01.000] ----------------------------------------------- -Info 62 [00:02:02.000] Running: *ensureProjectForOpenFiles* -Info 63 [00:02:03.000] Before ensureProjectForOpenFiles: -Info 64 [00:02:04.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 64 [00:02:05.000] Files (2) - -Info 64 [00:02:06.000] ----------------------------------------------- -Info 64 [00:02:07.000] Open files: -Info 64 [00:02:08.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 64 [00:02:09.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 64 [00:02:10.000] After ensureProjectForOpenFiles: -Info 65 [00:02:11.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 65 [00:02:12.000] Files (2) - -Info 65 [00:02:13.000] ----------------------------------------------- -Info 65 [00:02:14.000] Open files: -Info 65 [00:02:15.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 65 [00:02:16.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 65 [00:02:17.000] got projects updated in background, updating diagnostics for /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts -Info 66 [00:02:18.000] event: +Info 60 [00:02:00.000] ----------------------------------------------- +Info 61 [00:02:01.000] Running: *ensureProjectForOpenFiles* +Info 62 [00:02:02.000] Before ensureProjectForOpenFiles: +Info 63 [00:02:03.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 63 [00:02:04.000] Files (2) + +Info 63 [00:02:05.000] ----------------------------------------------- +Info 63 [00:02:06.000] Open files: +Info 63 [00:02:07.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 63 [00:02:08.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 63 [00:02:09.000] After ensureProjectForOpenFiles: +Info 64 [00:02:10.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 64 [00:02:11.000] Files (2) + +Info 64 [00:02:12.000] ----------------------------------------------- +Info 64 [00:02:13.000] Open files: +Info 64 [00:02:14.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 64 [00:02:15.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 64 [00:02:16.000] got projects updated in background, updating diagnostics for /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts +Info 65 [00:02:17.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts"]}} After running timeout callbacks @@ -546,7 +545,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 67 [00:02:19.000] event: +Info 66 [00:02:18.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} After running timeout callbacks @@ -584,7 +583,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 68 [00:02:20.000] request: +Info 67 [00:02:19.000] request: { "command": "geterr", "arguments": { @@ -668,7 +667,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 69 [00:02:21.000] response: +Info 68 [00:02:20.000] response: { "responseRequired": false } @@ -708,7 +707,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 70 [00:02:22.000] event: +Info 69 [00:02:21.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -782,7 +781,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 71 [00:02:23.000] event: +Info 70 [00:02:22.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[{"start":{"line":1,"offset":17},"end":{"line":1,"offset":46},"text":"Cannot find module '@microsoft/recognizers-text' or its corresponding type declarations.","code":2307,"category":"error"}]}} Before running immediate callbacks and checking length (1) @@ -856,9 +855,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 72 [00:02:24.000] event: +Info 71 [00:02:23.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} -Info 73 [00:02:25.000] event: +Info 72 [00:02:24.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":3}} Before running immediate callbacks and checking length (1) @@ -896,13 +895,13 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 74 [00:02:30.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 75 [00:02:31.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 76 [00:02:33.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 77 [00:02:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 78 [00:02:36.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 79 [00:02:37.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation -Info 80 [00:02:38.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 73 [00:02:29.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 74 [00:02:30.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 75 [00:02:32.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 76 [00:02:33.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 77 [00:02:35.000] DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 78 [00:02:36.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation +Info 79 [00:02:37.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts :: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations Before running timeout callbacks //// [/users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts] export class C { method(): number; } @@ -942,9 +941,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 81 [00:02:39.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation -Info 82 [00:02:40.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 83 [00:02:41.000] Scheduled: *ensureProjectForOpenFiles* +Info 80 [00:02:38.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.jsonFailedLookupInvalidation +Info 81 [00:02:39.000] Scheduled: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 82 [00:02:40.000] Scheduled: *ensureProjectForOpenFiles* After running timeout callbacks PolledWatches:: @@ -1017,24 +1016,24 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules: {} -Info 84 [00:02:42.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 85 [00:02:43.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 86 [00:02:44.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info -Info 87 [00:02:45.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 88 [00:02:46.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 89 [00:02:47.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 90 [00:02:48.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 91 [00:02:49.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 92 [00:02:50.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 93 [00:02:51.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 94 [00:02:52.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 95 [00:02:53.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 96 [00:02:54.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 97 [00:02:55.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 98 [00:02:56.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations -Info 99 [00:02:57.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms -Info 100 [00:02:58.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 101 [00:02:59.000] Files (3) +Info 83 [00:02:41.000] Running: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 84 [00:02:42.000] Starting updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 85 [00:02:43.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts 500 undefined WatchType: Closed Script info +Info 86 [00:02:44.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 87 [00:02:45.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-text 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 88 [00:02:46.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 89 [00:02:47.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 90 [00:02:48.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 91 [00:02:49.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/recognizers-date-time/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 92 [00:02:50.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 93 [00:02:51.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/packages/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 94 [00:02:52.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 95 [00:02:53.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/javascript/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 96 [00:02:54.000] DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 97 [00:02:55.000] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /users/username/projects/myproject/node_modules 1 undefined Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json WatchType: Failed Lookup Locations +Info 98 [00:02:56.000] Finishing updateGraphWorker: Project: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms +Info 99 [00:02:57.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 100 [00:02:58.000] Files (3) /a/lib/lib.d.ts /users/username/projects/myproject/javascript/packages/recognizers-text/dist/types/recognizers-text.d.ts /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts @@ -1047,26 +1046,26 @@ Info 101 [00:02:59.000] Files (3) src/datetime/baseDate.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 102 [00:03:00.000] ----------------------------------------------- -Info 103 [00:03:01.000] Running: *ensureProjectForOpenFiles* -Info 104 [00:03:02.000] Before ensureProjectForOpenFiles: -Info 105 [00:03:03.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 105 [00:03:04.000] Files (3) - -Info 105 [00:03:05.000] ----------------------------------------------- -Info 105 [00:03:06.000] Open files: -Info 105 [00:03:07.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 105 [00:03:08.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 105 [00:03:09.000] After ensureProjectForOpenFiles: -Info 106 [00:03:10.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) -Info 106 [00:03:11.000] Files (3) - -Info 106 [00:03:12.000] ----------------------------------------------- -Info 106 [00:03:13.000] Open files: -Info 106 [00:03:14.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject -Info 106 [00:03:15.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json -Info 106 [00:03:16.000] got projects updated in background, updating diagnostics for /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts -Info 107 [00:03:17.000] event: +Info 101 [00:02:59.000] ----------------------------------------------- +Info 102 [00:03:00.000] Running: *ensureProjectForOpenFiles* +Info 103 [00:03:01.000] Before ensureProjectForOpenFiles: +Info 104 [00:03:02.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 104 [00:03:03.000] Files (3) + +Info 104 [00:03:04.000] ----------------------------------------------- +Info 104 [00:03:05.000] Open files: +Info 104 [00:03:06.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 104 [00:03:07.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 104 [00:03:08.000] After ensureProjectForOpenFiles: +Info 105 [00:03:09.000] Project '/users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json' (Configured) +Info 105 [00:03:10.000] Files (3) + +Info 105 [00:03:11.000] ----------------------------------------------- +Info 105 [00:03:12.000] Open files: +Info 105 [00:03:13.000] FileName: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts ProjectRootPath: /users/username/projects/myproject +Info 105 [00:03:14.000] Projects: /users/username/projects/myproject/javascript/packages/recognizers-date-time/tsconfig.json +Info 105 [00:03:15.000] got projects updated in background, updating diagnostics for /users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts +Info 106 [00:03:16.000] event: {"seq":0,"type":"event","event":"projectsUpdatedInBackground","body":{"openFiles":["/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts"]}} After running timeout callbacks @@ -1096,7 +1095,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 108 [00:03:18.000] request: +Info 107 [00:03:17.000] request: { "command": "geterr", "arguments": { @@ -1164,7 +1163,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 109 [00:03:19.000] response: +Info 108 [00:03:18.000] response: { "responseRequired": false } @@ -1196,7 +1195,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 110 [00:03:20.000] event: +Info 109 [00:03:19.000] event: {"seq":0,"type":"event","event":"syntaxDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} After checking timeout queue length (1) and running @@ -1254,7 +1253,7 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 111 [00:03:21.000] event: +Info 110 [00:03:20.000] event: {"seq":0,"type":"event","event":"semanticDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} Before running immediate callbacks and checking length (1) @@ -1312,9 +1311,9 @@ FsWatchesRecursive:: /users/username/projects/myproject/javascript/packages/recognizers-date-time/src: {} -Info 112 [00:03:22.000] event: +Info 111 [00:03:21.000] event: {"seq":0,"type":"event","event":"suggestionDiag","body":{"file":"/users/username/projects/myproject/javascript/packages/recognizers-date-time/src/datetime/baseDate.ts","diagnostics":[]}} -Info 113 [00:03:23.000] event: +Info 112 [00:03:22.000] event: {"seq":0,"type":"event","event":"requestCompleted","body":{"request_seq":4}} Before running immediate callbacks and checking length (1) diff --git a/tests/baselines/reference/tsserver/symLinks/rename-in-common-file-renames-all-project.js b/tests/baselines/reference/tsserver/symLinks/rename-in-common-file-renames-all-project.js index 48329cf28412f..1f39666de1580 100644 --- a/tests/baselines/reference/tsserver/symLinks/rename-in-common-file-renames-all-project.js +++ b/tests/baselines/reference/tsserver/symLinks/rename-in-common-file-renames-all-project.js @@ -63,15 +63,14 @@ Info 6 [00:00:41.000] Config: /users/username/projects/a/tsconfig.json : { } Info 7 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/a 1 undefined Config: /users/username/projects/a/tsconfig.json WatchType: Wild card directory Info 8 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/a 1 undefined Config: /users/username/projects/a/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:44.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:45.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/a/c/fc.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:46.000] Starting updateGraphWorker: Project: /users/username/projects/a/tsconfig.json -Info 12 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/a/node_modules/@types 1 undefined Project: /users/username/projects/a/tsconfig.json WatchType: Type roots -Info 14 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/a/node_modules/@types 1 undefined Project: /users/username/projects/a/tsconfig.json WatchType: Type roots -Info 15 [00:00:50.000] Finishing updateGraphWorker: Project: /users/username/projects/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:00:51.000] Project '/users/username/projects/a/tsconfig.json' (Configured) -Info 17 [00:00:52.000] Files (3) +Info 9 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/a/c/fc.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:45.000] Starting updateGraphWorker: Project: /users/username/projects/a/tsconfig.json +Info 11 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/a/node_modules/@types 1 undefined Project: /users/username/projects/a/tsconfig.json WatchType: Type roots +Info 13 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/a/node_modules/@types 1 undefined Project: /users/username/projects/a/tsconfig.json WatchType: Type roots +Info 14 [00:00:49.000] Finishing updateGraphWorker: Project: /users/username/projects/a/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:50.000] Project '/users/username/projects/a/tsconfig.json' (Configured) +Info 16 [00:00:51.000] Files (3) /a/lib/lib.d.ts /users/username/projects/a/c/fc.ts /users/username/projects/a/a.ts @@ -85,14 +84,14 @@ Info 17 [00:00:52.000] Files (3) a.ts Matched by default include pattern '**/*' -Info 18 [00:00:53.000] ----------------------------------------------- -Info 19 [00:00:54.000] Project '/users/username/projects/a/tsconfig.json' (Configured) -Info 19 [00:00:55.000] Files (3) +Info 17 [00:00:52.000] ----------------------------------------------- +Info 18 [00:00:53.000] Project '/users/username/projects/a/tsconfig.json' (Configured) +Info 18 [00:00:54.000] Files (3) -Info 19 [00:00:56.000] ----------------------------------------------- -Info 19 [00:00:57.000] Open files: -Info 19 [00:00:58.000] FileName: /users/username/projects/a/a.ts ProjectRootPath: /users/username/projects/a -Info 19 [00:00:59.000] Projects: /users/username/projects/a/tsconfig.json +Info 18 [00:00:55.000] ----------------------------------------------- +Info 18 [00:00:56.000] Open files: +Info 18 [00:00:57.000] FileName: /users/username/projects/a/a.ts ProjectRootPath: /users/username/projects/a +Info 18 [00:00:58.000] Projects: /users/username/projects/a/tsconfig.json After request PolledWatches:: @@ -111,11 +110,11 @@ FsWatchesRecursive:: /users/username/projects/a: {} -Info 19 [00:01:00.000] response: +Info 18 [00:00:59.000] response: { "responseRequired": false } -Info 20 [00:01:01.000] request: +Info 19 [00:01:00.000] request: { "seq": 0, "type": "request", @@ -143,11 +142,11 @@ FsWatchesRecursive:: /users/username/projects/a: {} -Info 21 [00:01:02.000] Search path: /users/username/projects/b -Info 22 [00:01:03.000] For info: /users/username/projects/b/b.ts :: Config file name: /users/username/projects/b/tsconfig.json -Info 23 [00:01:04.000] Creating configuration project /users/username/projects/b/tsconfig.json -Info 24 [00:01:05.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/b/tsconfig.json 2000 undefined Project: /users/username/projects/b/tsconfig.json WatchType: Config file -Info 25 [00:01:06.000] Config: /users/username/projects/b/tsconfig.json : { +Info 20 [00:01:01.000] Search path: /users/username/projects/b +Info 21 [00:01:02.000] For info: /users/username/projects/b/b.ts :: Config file name: /users/username/projects/b/tsconfig.json +Info 22 [00:01:03.000] Creating configuration project /users/username/projects/b/tsconfig.json +Info 23 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/b/tsconfig.json 2000 undefined Project: /users/username/projects/b/tsconfig.json WatchType: Config file +Info 24 [00:01:05.000] Config: /users/username/projects/b/tsconfig.json : { "rootNames": [ "/users/username/projects/b/b.ts", "/users/username/projects/b/c/fc.ts" @@ -157,16 +156,15 @@ Info 25 [00:01:06.000] Config: /users/username/projects/b/tsconfig.json : { "configFilePath": "/users/username/projects/b/tsconfig.json" } } -Info 26 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/b 1 undefined Config: /users/username/projects/b/tsconfig.json WatchType: Wild card directory -Info 27 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/b 1 undefined Config: /users/username/projects/b/tsconfig.json WatchType: Wild card directory -Info 28 [00:01:09.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 29 [00:01:10.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/b/c/fc.ts 500 undefined WatchType: Closed Script info -Info 30 [00:01:11.000] Starting updateGraphWorker: Project: /users/username/projects/b/tsconfig.json -Info 31 [00:01:12.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/b/node_modules/@types 1 undefined Project: /users/username/projects/b/tsconfig.json WatchType: Type roots -Info 32 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/b/node_modules/@types 1 undefined Project: /users/username/projects/b/tsconfig.json WatchType: Type roots -Info 33 [00:01:14.000] Finishing updateGraphWorker: Project: /users/username/projects/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 34 [00:01:15.000] Project '/users/username/projects/b/tsconfig.json' (Configured) -Info 35 [00:01:16.000] Files (3) +Info 25 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/b 1 undefined Config: /users/username/projects/b/tsconfig.json WatchType: Wild card directory +Info 26 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/b 1 undefined Config: /users/username/projects/b/tsconfig.json WatchType: Wild card directory +Info 27 [00:01:08.000] FileWatcher:: Added:: WatchInfo: /users/username/projects/b/c/fc.ts 500 undefined WatchType: Closed Script info +Info 28 [00:01:09.000] Starting updateGraphWorker: Project: /users/username/projects/b/tsconfig.json +Info 29 [00:01:10.000] DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/b/node_modules/@types 1 undefined Project: /users/username/projects/b/tsconfig.json WatchType: Type roots +Info 30 [00:01:11.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /users/username/projects/b/node_modules/@types 1 undefined Project: /users/username/projects/b/tsconfig.json WatchType: Type roots +Info 31 [00:01:12.000] Finishing updateGraphWorker: Project: /users/username/projects/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 32 [00:01:13.000] Project '/users/username/projects/b/tsconfig.json' (Configured) +Info 33 [00:01:14.000] Files (3) /a/lib/lib.d.ts /users/username/projects/b/c/fc.ts /users/username/projects/b/b.ts @@ -180,20 +178,20 @@ Info 35 [00:01:16.000] Files (3) b.ts Matched by default include pattern '**/*' -Info 36 [00:01:17.000] ----------------------------------------------- -Info 37 [00:01:18.000] Project '/users/username/projects/a/tsconfig.json' (Configured) -Info 37 [00:01:19.000] Files (3) +Info 34 [00:01:15.000] ----------------------------------------------- +Info 35 [00:01:16.000] Project '/users/username/projects/a/tsconfig.json' (Configured) +Info 35 [00:01:17.000] Files (3) -Info 37 [00:01:20.000] ----------------------------------------------- -Info 37 [00:01:21.000] Project '/users/username/projects/b/tsconfig.json' (Configured) -Info 37 [00:01:22.000] Files (3) +Info 35 [00:01:18.000] ----------------------------------------------- +Info 35 [00:01:19.000] Project '/users/username/projects/b/tsconfig.json' (Configured) +Info 35 [00:01:20.000] Files (3) -Info 37 [00:01:23.000] ----------------------------------------------- -Info 37 [00:01:24.000] Open files: -Info 37 [00:01:25.000] FileName: /users/username/projects/a/a.ts ProjectRootPath: /users/username/projects/a -Info 37 [00:01:26.000] Projects: /users/username/projects/a/tsconfig.json -Info 37 [00:01:27.000] FileName: /users/username/projects/b/b.ts ProjectRootPath: /users/username/projects/b -Info 37 [00:01:28.000] Projects: /users/username/projects/b/tsconfig.json +Info 35 [00:01:21.000] ----------------------------------------------- +Info 35 [00:01:22.000] Open files: +Info 35 [00:01:23.000] FileName: /users/username/projects/a/a.ts ProjectRootPath: /users/username/projects/a +Info 35 [00:01:24.000] Projects: /users/username/projects/a/tsconfig.json +Info 35 [00:01:25.000] FileName: /users/username/projects/b/b.ts ProjectRootPath: /users/username/projects/b +Info 35 [00:01:26.000] Projects: /users/username/projects/b/tsconfig.json After request PolledWatches:: @@ -220,11 +218,11 @@ FsWatchesRecursive:: /users/username/projects/b: {} -Info 37 [00:01:29.000] response: +Info 35 [00:01:27.000] response: { "responseRequired": false } -Info 38 [00:01:30.000] request: +Info 36 [00:01:28.000] request: { "seq": 0, "type": "request", @@ -260,24 +258,24 @@ FsWatchesRecursive:: /users/username/projects/b: {} -Info 39 [00:01:31.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/a/c/fc.ts 500 undefined WatchType: Closed Script info -Info 40 [00:01:32.000] Search path: /users/username/projects/a/c -Info 41 [00:01:33.000] For info: /users/username/projects/a/c/fc.ts :: Config file name: /users/username/projects/a/tsconfig.json -Info 42 [00:01:34.000] Project '/users/username/projects/a/tsconfig.json' (Configured) -Info 42 [00:01:35.000] Files (3) - -Info 42 [00:01:36.000] ----------------------------------------------- -Info 42 [00:01:37.000] Project '/users/username/projects/b/tsconfig.json' (Configured) -Info 42 [00:01:38.000] Files (3) - -Info 42 [00:01:39.000] ----------------------------------------------- -Info 42 [00:01:40.000] Open files: -Info 42 [00:01:41.000] FileName: /users/username/projects/a/a.ts ProjectRootPath: /users/username/projects/a -Info 42 [00:01:42.000] Projects: /users/username/projects/a/tsconfig.json -Info 42 [00:01:43.000] FileName: /users/username/projects/b/b.ts ProjectRootPath: /users/username/projects/b -Info 42 [00:01:44.000] Projects: /users/username/projects/b/tsconfig.json -Info 42 [00:01:45.000] FileName: /users/username/projects/a/c/fc.ts ProjectRootPath: /users/username/projects/a -Info 42 [00:01:46.000] Projects: /users/username/projects/a/tsconfig.json +Info 37 [00:01:29.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/a/c/fc.ts 500 undefined WatchType: Closed Script info +Info 38 [00:01:30.000] Search path: /users/username/projects/a/c +Info 39 [00:01:31.000] For info: /users/username/projects/a/c/fc.ts :: Config file name: /users/username/projects/a/tsconfig.json +Info 40 [00:01:32.000] Project '/users/username/projects/a/tsconfig.json' (Configured) +Info 40 [00:01:33.000] Files (3) + +Info 40 [00:01:34.000] ----------------------------------------------- +Info 40 [00:01:35.000] Project '/users/username/projects/b/tsconfig.json' (Configured) +Info 40 [00:01:36.000] Files (3) + +Info 40 [00:01:37.000] ----------------------------------------------- +Info 40 [00:01:38.000] Open files: +Info 40 [00:01:39.000] FileName: /users/username/projects/a/a.ts ProjectRootPath: /users/username/projects/a +Info 40 [00:01:40.000] Projects: /users/username/projects/a/tsconfig.json +Info 40 [00:01:41.000] FileName: /users/username/projects/b/b.ts ProjectRootPath: /users/username/projects/b +Info 40 [00:01:42.000] Projects: /users/username/projects/b/tsconfig.json +Info 40 [00:01:43.000] FileName: /users/username/projects/a/c/fc.ts ProjectRootPath: /users/username/projects/a +Info 40 [00:01:44.000] Projects: /users/username/projects/a/tsconfig.json After request PolledWatches:: @@ -302,11 +300,11 @@ FsWatchesRecursive:: /users/username/projects/b: {} -Info 42 [00:01:47.000] response: +Info 40 [00:01:45.000] response: { "responseRequired": false } -Info 43 [00:01:48.000] request: +Info 41 [00:01:46.000] request: { "seq": 0, "type": "request", @@ -340,26 +338,26 @@ FsWatchesRecursive:: /users/username/projects/b: {} -Info 44 [00:01:49.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/b/c/fc.ts 500 undefined WatchType: Closed Script info -Info 45 [00:01:50.000] Search path: /users/username/projects/b/c -Info 46 [00:01:51.000] For info: /users/username/projects/b/c/fc.ts :: Config file name: /users/username/projects/b/tsconfig.json -Info 47 [00:01:52.000] Project '/users/username/projects/a/tsconfig.json' (Configured) -Info 47 [00:01:53.000] Files (3) - -Info 47 [00:01:54.000] ----------------------------------------------- -Info 47 [00:01:55.000] Project '/users/username/projects/b/tsconfig.json' (Configured) -Info 47 [00:01:56.000] Files (3) - -Info 47 [00:01:57.000] ----------------------------------------------- -Info 47 [00:01:58.000] Open files: -Info 47 [00:01:59.000] FileName: /users/username/projects/a/a.ts ProjectRootPath: /users/username/projects/a -Info 47 [00:02:00.000] Projects: /users/username/projects/a/tsconfig.json -Info 47 [00:02:01.000] FileName: /users/username/projects/b/b.ts ProjectRootPath: /users/username/projects/b -Info 47 [00:02:02.000] Projects: /users/username/projects/b/tsconfig.json -Info 47 [00:02:03.000] FileName: /users/username/projects/a/c/fc.ts ProjectRootPath: /users/username/projects/a -Info 47 [00:02:04.000] Projects: /users/username/projects/a/tsconfig.json -Info 47 [00:02:05.000] FileName: /users/username/projects/b/c/fc.ts ProjectRootPath: /users/username/projects/b -Info 47 [00:02:06.000] Projects: /users/username/projects/b/tsconfig.json +Info 42 [00:01:47.000] FileWatcher:: Close:: WatchInfo: /users/username/projects/b/c/fc.ts 500 undefined WatchType: Closed Script info +Info 43 [00:01:48.000] Search path: /users/username/projects/b/c +Info 44 [00:01:49.000] For info: /users/username/projects/b/c/fc.ts :: Config file name: /users/username/projects/b/tsconfig.json +Info 45 [00:01:50.000] Project '/users/username/projects/a/tsconfig.json' (Configured) +Info 45 [00:01:51.000] Files (3) + +Info 45 [00:01:52.000] ----------------------------------------------- +Info 45 [00:01:53.000] Project '/users/username/projects/b/tsconfig.json' (Configured) +Info 45 [00:01:54.000] Files (3) + +Info 45 [00:01:55.000] ----------------------------------------------- +Info 45 [00:01:56.000] Open files: +Info 45 [00:01:57.000] FileName: /users/username/projects/a/a.ts ProjectRootPath: /users/username/projects/a +Info 45 [00:01:58.000] Projects: /users/username/projects/a/tsconfig.json +Info 45 [00:01:59.000] FileName: /users/username/projects/b/b.ts ProjectRootPath: /users/username/projects/b +Info 45 [00:02:00.000] Projects: /users/username/projects/b/tsconfig.json +Info 45 [00:02:01.000] FileName: /users/username/projects/a/c/fc.ts ProjectRootPath: /users/username/projects/a +Info 45 [00:02:02.000] Projects: /users/username/projects/a/tsconfig.json +Info 45 [00:02:03.000] FileName: /users/username/projects/b/c/fc.ts ProjectRootPath: /users/username/projects/b +Info 45 [00:02:04.000] Projects: /users/username/projects/b/tsconfig.json After request PolledWatches:: @@ -382,11 +380,11 @@ FsWatchesRecursive:: /users/username/projects/b: {} -Info 47 [00:02:07.000] response: +Info 45 [00:02:05.000] response: { "responseRequired": false } -Info 48 [00:02:08.000] request: +Info 46 [00:02:06.000] request: { "seq": 0, "type": "request", @@ -441,7 +439,7 @@ FsWatchesRecursive:: /users/username/projects/b: {} -Info 49 [00:02:09.000] response: +Info 47 [00:02:07.000] response: { "response": { "info": { diff --git a/tests/baselines/reference/tsserver/syntacticServer/files-go-to-inferred-project-and-semantic-operations-fail.js b/tests/baselines/reference/tsserver/syntacticServer/files-go-to-inferred-project-and-semantic-operations-fail.js index e271cbc67a413..4595d18b11778 100644 --- a/tests/baselines/reference/tsserver/syntacticServer/files-go-to-inferred-project-and-semantic-operations-fail.js +++ b/tests/baselines/reference/tsserver/syntacticServer/files-go-to-inferred-project-and-semantic-operations-fail.js @@ -48,20 +48,19 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [00:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 3 [00:00:34.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 4 [00:00:35.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: false Elapsed:: *ms -Info 5 [00:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 6 [00:00:37.000] Files (0) NoProgram - -Info 7 [00:00:38.000] ----------------------------------------------- -Info 8 [00:00:39.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 8 [00:00:40.000] Files (0) NoProgram - -Info 8 [00:00:41.000] ----------------------------------------------- -Info 8 [00:00:42.000] Open files: -Info 8 [00:00:43.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 8 [00:00:44.000] Projects: /dev/null/inferredProject1* +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: false Elapsed:: *ms +Info 4 [00:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 5 [00:00:36.000] Files (0) NoProgram + +Info 6 [00:00:37.000] ----------------------------------------------- +Info 7 [00:00:38.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 7 [00:00:39.000] Files (0) NoProgram + +Info 7 [00:00:40.000] ----------------------------------------------- +Info 7 [00:00:41.000] Open files: +Info 7 [00:00:42.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 7 [00:00:43.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -70,11 +69,11 @@ FsWatches:: FsWatchesRecursive:: -Info 8 [00:00:45.000] response: +Info 7 [00:00:44.000] response: { "responseRequired": false } -Info 9 [00:00:46.000] request: +Info 8 [00:00:45.000] request: { "command": "completions", "arguments": { @@ -93,8 +92,8 @@ FsWatches:: FsWatchesRecursive:: -Info 10 [00:00:47.000] Request: completions not allowed in LanguageServiceMode.Syntactic -Info 11 [00:00:48.000] request: +Info 9 [00:00:46.000] Request: completions not allowed in LanguageServiceMode.Syntactic +Info 10 [00:00:47.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -113,8 +112,8 @@ FsWatches:: FsWatchesRecursive:: -Info 12 [00:00:49.000] Request: definitionAndBoundSpan not allowed in LanguageServiceMode.Syntactic -Info 13 [00:00:50.000] request: +Info 11 [00:00:48.000] Request: definitionAndBoundSpan not allowed in LanguageServiceMode.Syntactic +Info 12 [00:00:49.000] request: { "seq": 0, "type": "request", @@ -131,21 +130,21 @@ FsWatches:: FsWatchesRecursive:: -Info 14 [00:00:51.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 15 [00:00:52.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false Elapsed:: *ms -Info 16 [00:00:53.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 17 [00:00:54.000] Files (0) NoProgram - -Info 18 [00:00:55.000] ----------------------------------------------- -Info 19 [00:00:56.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 19 [00:00:57.000] Files (0) NoProgram - -Info 19 [00:00:58.000] ----------------------------------------------- -Info 19 [00:00:59.000] Open files: -Info 19 [00:01:00.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 19 [00:01:01.000] Projects: /dev/null/inferredProject1* -Info 19 [00:01:02.000] FileName: /user/username/projects/myproject/b.ts ProjectRootPath: undefined -Info 19 [00:01:03.000] Projects: /dev/null/inferredProject1* +Info 13 [00:00:50.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 14 [00:00:51.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: false Elapsed:: *ms +Info 15 [00:00:52.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 16 [00:00:53.000] Files (0) NoProgram + +Info 17 [00:00:54.000] ----------------------------------------------- +Info 18 [00:00:55.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 18 [00:00:56.000] Files (0) NoProgram + +Info 18 [00:00:57.000] ----------------------------------------------- +Info 18 [00:00:58.000] Open files: +Info 18 [00:00:59.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 18 [00:01:00.000] Projects: /dev/null/inferredProject1* +Info 18 [00:01:01.000] FileName: /user/username/projects/myproject/b.ts ProjectRootPath: undefined +Info 18 [00:01:02.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -154,11 +153,11 @@ FsWatches:: FsWatchesRecursive:: -Info 19 [00:01:04.000] response: +Info 18 [00:01:03.000] response: { "responseRequired": false } -Info 20 [00:01:05.000] request: +Info 19 [00:01:04.000] request: { "command": "completions", "arguments": { @@ -177,8 +176,8 @@ FsWatches:: FsWatchesRecursive:: -Info 21 [00:01:06.000] Request: completions not allowed in LanguageServiceMode.Syntactic -Info 22 [00:01:07.000] request: +Info 20 [00:01:05.000] Request: completions not allowed in LanguageServiceMode.Syntactic +Info 21 [00:01:06.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -197,8 +196,8 @@ FsWatches:: FsWatchesRecursive:: -Info 23 [00:01:08.000] Request: definitionAndBoundSpan not allowed in LanguageServiceMode.Syntactic -Info 24 [00:01:09.000] request: +Info 22 [00:01:07.000] Request: definitionAndBoundSpan not allowed in LanguageServiceMode.Syntactic +Info 23 [00:01:08.000] request: { "command": "definitionAndBoundSpan", "arguments": { @@ -217,8 +216,8 @@ FsWatches:: FsWatchesRecursive:: -Info 25 [00:01:10.000] Request: definitionAndBoundSpan not allowed in LanguageServiceMode.Syntactic -Info 26 [00:01:11.000] request: +Info 24 [00:01:09.000] Request: definitionAndBoundSpan not allowed in LanguageServiceMode.Syntactic +Info 25 [00:01:10.000] request: { "seq": 0, "type": "request", @@ -235,23 +234,23 @@ FsWatches:: FsWatchesRecursive:: -Info 27 [00:01:12.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 28 [00:01:13.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false Elapsed:: *ms -Info 29 [00:01:14.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 30 [00:01:15.000] Files (0) NoProgram - -Info 31 [00:01:16.000] ----------------------------------------------- -Info 32 [00:01:17.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 32 [00:01:18.000] Files (0) NoProgram - -Info 32 [00:01:19.000] ----------------------------------------------- -Info 32 [00:01:20.000] Open files: -Info 32 [00:01:21.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 32 [00:01:22.000] Projects: /dev/null/inferredProject1* -Info 32 [00:01:23.000] FileName: /user/username/projects/myproject/b.ts ProjectRootPath: undefined -Info 32 [00:01:24.000] Projects: /dev/null/inferredProject1* -Info 32 [00:01:25.000] FileName: /user/username/projects/myproject/c.ts ProjectRootPath: undefined -Info 32 [00:01:26.000] Projects: /dev/null/inferredProject1* +Info 26 [00:01:11.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 27 [00:01:12.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 3 structureChanged: false Elapsed:: *ms +Info 28 [00:01:13.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 29 [00:01:14.000] Files (0) NoProgram + +Info 30 [00:01:15.000] ----------------------------------------------- +Info 31 [00:01:16.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 31 [00:01:17.000] Files (0) NoProgram + +Info 31 [00:01:18.000] ----------------------------------------------- +Info 31 [00:01:19.000] Open files: +Info 31 [00:01:20.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 31 [00:01:21.000] Projects: /dev/null/inferredProject1* +Info 31 [00:01:22.000] FileName: /user/username/projects/myproject/b.ts ProjectRootPath: undefined +Info 31 [00:01:23.000] Projects: /dev/null/inferredProject1* +Info 31 [00:01:24.000] FileName: /user/username/projects/myproject/c.ts ProjectRootPath: undefined +Info 31 [00:01:25.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -260,11 +259,11 @@ FsWatches:: FsWatchesRecursive:: -Info 32 [00:01:27.000] response: +Info 31 [00:01:26.000] response: { "responseRequired": false } -Info 33 [00:01:28.000] request: +Info 32 [00:01:27.000] request: { "seq": 0, "type": "request", @@ -281,25 +280,25 @@ FsWatches:: FsWatchesRecursive:: -Info 34 [00:01:29.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 35 [00:01:30.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: false Elapsed:: *ms -Info 36 [00:01:31.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 37 [00:01:32.000] Files (0) NoProgram - -Info 38 [00:01:33.000] ----------------------------------------------- -Info 39 [00:01:34.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 39 [00:01:35.000] Files (0) NoProgram - -Info 39 [00:01:36.000] ----------------------------------------------- -Info 39 [00:01:37.000] Open files: -Info 39 [00:01:38.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 39 [00:01:39.000] Projects: /dev/null/inferredProject1* -Info 39 [00:01:40.000] FileName: /user/username/projects/myproject/b.ts ProjectRootPath: undefined -Info 39 [00:01:41.000] Projects: /dev/null/inferredProject1* -Info 39 [00:01:42.000] FileName: /user/username/projects/myproject/c.ts ProjectRootPath: undefined -Info 39 [00:01:43.000] Projects: /dev/null/inferredProject1* -Info 39 [00:01:44.000] FileName: /user/username/projects/myproject/node_modules/something/index.d.ts ProjectRootPath: undefined -Info 39 [00:01:45.000] Projects: /dev/null/inferredProject1* +Info 33 [00:01:28.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 34 [00:01:29.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 4 structureChanged: false Elapsed:: *ms +Info 35 [00:01:30.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 36 [00:01:31.000] Files (0) NoProgram + +Info 37 [00:01:32.000] ----------------------------------------------- +Info 38 [00:01:33.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 38 [00:01:34.000] Files (0) NoProgram + +Info 38 [00:01:35.000] ----------------------------------------------- +Info 38 [00:01:36.000] Open files: +Info 38 [00:01:37.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 38 [00:01:38.000] Projects: /dev/null/inferredProject1* +Info 38 [00:01:39.000] FileName: /user/username/projects/myproject/b.ts ProjectRootPath: undefined +Info 38 [00:01:40.000] Projects: /dev/null/inferredProject1* +Info 38 [00:01:41.000] FileName: /user/username/projects/myproject/c.ts ProjectRootPath: undefined +Info 38 [00:01:42.000] Projects: /dev/null/inferredProject1* +Info 38 [00:01:43.000] FileName: /user/username/projects/myproject/node_modules/something/index.d.ts ProjectRootPath: undefined +Info 38 [00:01:44.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -308,11 +307,11 @@ FsWatches:: FsWatchesRecursive:: -Info 39 [00:01:46.000] response: +Info 38 [00:01:45.000] response: { "responseRequired": false } -Info 40 [00:01:47.000] request: +Info 39 [00:01:46.000] request: { "seq": 0, "type": "request", @@ -329,17 +328,17 @@ FsWatches:: FsWatchesRecursive:: -Info 41 [00:01:48.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 41 [00:01:49.000] Files (0) NoProgram - -Info 41 [00:01:50.000] ----------------------------------------------- -Info 41 [00:01:51.000] Open files: -Info 41 [00:01:52.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 41 [00:01:53.000] Projects: /dev/null/inferredProject1* -Info 41 [00:01:54.000] FileName: /user/username/projects/myproject/b.ts ProjectRootPath: undefined -Info 41 [00:01:55.000] Projects: /dev/null/inferredProject1* -Info 41 [00:01:56.000] FileName: /user/username/projects/myproject/node_modules/something/index.d.ts ProjectRootPath: undefined -Info 41 [00:01:57.000] Projects: /dev/null/inferredProject1* +Info 40 [00:01:47.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 40 [00:01:48.000] Files (0) NoProgram + +Info 40 [00:01:49.000] ----------------------------------------------- +Info 40 [00:01:50.000] Open files: +Info 40 [00:01:51.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 40 [00:01:52.000] Projects: /dev/null/inferredProject1* +Info 40 [00:01:53.000] FileName: /user/username/projects/myproject/b.ts ProjectRootPath: undefined +Info 40 [00:01:54.000] Projects: /dev/null/inferredProject1* +Info 40 [00:01:55.000] FileName: /user/username/projects/myproject/node_modules/something/index.d.ts ProjectRootPath: undefined +Info 40 [00:01:56.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -348,11 +347,11 @@ FsWatches:: FsWatchesRecursive:: -Info 41 [00:01:58.000] response: +Info 40 [00:01:57.000] response: { "responseRequired": false } -Info 42 [00:01:59.000] request: +Info 41 [00:01:58.000] request: { "seq": 0, "type": "request", @@ -369,15 +368,15 @@ FsWatches:: FsWatchesRecursive:: -Info 43 [00:02:00.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 43 [00:02:01.000] Files (0) NoProgram +Info 42 [00:01:59.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 42 [00:02:00.000] Files (0) NoProgram -Info 43 [00:02:02.000] ----------------------------------------------- -Info 43 [00:02:03.000] Open files: -Info 43 [00:02:04.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 43 [00:02:05.000] Projects: /dev/null/inferredProject1* -Info 43 [00:02:06.000] FileName: /user/username/projects/myproject/node_modules/something/index.d.ts ProjectRootPath: undefined -Info 43 [00:02:07.000] Projects: /dev/null/inferredProject1* +Info 42 [00:02:01.000] ----------------------------------------------- +Info 42 [00:02:02.000] Open files: +Info 42 [00:02:03.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 42 [00:02:04.000] Projects: /dev/null/inferredProject1* +Info 42 [00:02:05.000] FileName: /user/username/projects/myproject/node_modules/something/index.d.ts ProjectRootPath: undefined +Info 42 [00:02:06.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -386,7 +385,7 @@ FsWatches:: FsWatchesRecursive:: -Info 43 [00:02:08.000] response: +Info 42 [00:02:07.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/syntacticServer/should-not-include-auto-type-reference-directives.js b/tests/baselines/reference/tsserver/syntacticServer/should-not-include-auto-type-reference-directives.js index b1ce80bd5f934..3a581e30e9f5b 100644 --- a/tests/baselines/reference/tsserver/syntacticServer/should-not-include-auto-type-reference-directives.js +++ b/tests/baselines/reference/tsserver/syntacticServer/should-not-include-auto-type-reference-directives.js @@ -51,20 +51,19 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [00:00:41.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 3 [00:00:42.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 4 [00:00:43.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: false Elapsed:: *ms -Info 5 [00:00:44.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 6 [00:00:45.000] Files (0) NoProgram - -Info 7 [00:00:46.000] ----------------------------------------------- -Info 8 [00:00:47.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 8 [00:00:48.000] Files (0) NoProgram - -Info 8 [00:00:49.000] ----------------------------------------------- -Info 8 [00:00:50.000] Open files: -Info 8 [00:00:51.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 8 [00:00:52.000] Projects: /dev/null/inferredProject1* +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: false Elapsed:: *ms +Info 4 [00:00:43.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 5 [00:00:44.000] Files (0) NoProgram + +Info 6 [00:00:45.000] ----------------------------------------------- +Info 7 [00:00:46.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 7 [00:00:47.000] Files (0) NoProgram + +Info 7 [00:00:48.000] ----------------------------------------------- +Info 7 [00:00:49.000] Open files: +Info 7 [00:00:50.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 7 [00:00:51.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -73,7 +72,7 @@ FsWatches:: FsWatchesRecursive:: -Info 8 [00:00:53.000] response: +Info 7 [00:00:52.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/syntacticServer/throws-on-unsupported-commands.js b/tests/baselines/reference/tsserver/syntacticServer/throws-on-unsupported-commands.js index 0baf50b78b478..009c63bef1f19 100644 --- a/tests/baselines/reference/tsserver/syntacticServer/throws-on-unsupported-commands.js +++ b/tests/baselines/reference/tsserver/syntacticServer/throws-on-unsupported-commands.js @@ -48,20 +48,19 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [00:00:33.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 3 [00:00:34.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 4 [00:00:35.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: false Elapsed:: *ms -Info 5 [00:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 6 [00:00:37.000] Files (0) NoProgram - -Info 7 [00:00:38.000] ----------------------------------------------- -Info 8 [00:00:39.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 8 [00:00:40.000] Files (0) NoProgram - -Info 8 [00:00:41.000] ----------------------------------------------- -Info 8 [00:00:42.000] Open files: -Info 8 [00:00:43.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined -Info 8 [00:00:44.000] Projects: /dev/null/inferredProject1* +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: false Elapsed:: *ms +Info 4 [00:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 5 [00:00:36.000] Files (0) NoProgram + +Info 6 [00:00:37.000] ----------------------------------------------- +Info 7 [00:00:38.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 7 [00:00:39.000] Files (0) NoProgram + +Info 7 [00:00:40.000] ----------------------------------------------- +Info 7 [00:00:41.000] Open files: +Info 7 [00:00:42.000] FileName: /user/username/projects/myproject/a.ts ProjectRootPath: undefined +Info 7 [00:00:43.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -70,11 +69,11 @@ FsWatches:: FsWatchesRecursive:: -Info 8 [00:00:45.000] response: +Info 7 [00:00:44.000] response: { "responseRequired": false } -Info 9 [00:00:46.000] request: +Info 8 [00:00:45.000] request: { "type": "request", "seq": 1, @@ -91,5 +90,5 @@ FsWatches:: FsWatchesRecursive:: -Info 10 [00:00:47.000] Request: semanticDiagnosticsSync not allowed in LanguageServiceMode.Syntactic -Info 11 [00:00:48.000] LanguageService Operation: getSemanticDiagnostics not allowed in LanguageServiceMode.Syntactic \ No newline at end of file +Info 9 [00:00:46.000] Request: semanticDiagnosticsSync not allowed in LanguageServiceMode.Syntactic +Info 10 [00:00:47.000] LanguageService Operation: getSemanticDiagnostics not allowed in LanguageServiceMode.Syntactic \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/typingsInstaller/configured-projects-discover-from-bower_components.js b/tests/baselines/reference/tsserver/typingsInstaller/configured-projects-discover-from-bower_components.js index 36bfec27380fe..18c729540b41f 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/configured-projects-discover-from-bower_components.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/configured-projects-discover-from-bower_components.js @@ -38,55 +38,54 @@ Info 5 [00:00:20.000] Config: /jsconfig.json : { } Info 6 [00:00:21.000] DirectoryWatcher:: Added:: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory Info 7 [00:00:22.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory -Info 8 [00:00:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:24.000] Starting updateGraphWorker: Project: /jsconfig.json -Info 10 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /jsconfig.json WatchType: Missing file -Info 11 [00:00:26.000] Finishing updateGraphWorker: Project: /jsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 12 [00:00:27.000] Project '/jsconfig.json' (Configured) -Info 13 [00:00:28.000] Files (1) +Info 8 [00:00:23.000] Starting updateGraphWorker: Project: /jsconfig.json +Info 9 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /jsconfig.json WatchType: Missing file +Info 10 [00:00:25.000] Finishing updateGraphWorker: Project: /jsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 11 [00:00:26.000] Project '/jsconfig.json' (Configured) +Info 12 [00:00:27.000] Files (1) /app.js app.js Matched by default include pattern '**/*' -Info 14 [00:00:29.000] ----------------------------------------------- -Info 15 [00:00:32.000] DirectoryWatcher:: Triggered with tmp :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory -Info 16 [00:00:33.000] Scheduled: /jsconfig.json -Info 17 [00:00:34.000] Scheduled: *ensureProjectForOpenFiles* -Info 18 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Triggered with tmp :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory -Info 19 [00:00:38.000] DirectoryWatcher:: Triggered with tmp/package.json :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory -Info 20 [00:00:39.000] Config: /jsconfig.json Detected new package.json: tmp/package.json -Info 21 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /tmp/package.json 250 undefined WatchType: package.json file -Info 22 [00:00:41.000] Project: /jsconfig.json Detected file add/remove of non supported extension: tmp/package.json -Info 23 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Triggered with tmp/package.json :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory -Info 24 [00:00:43.000] Starting updateGraphWorker: Project: /jsconfig.json -Info 25 [00:00:44.000] Finishing updateGraphWorker: Project: /jsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms -Info 26 [00:00:45.000] Project '/jsconfig.json' (Configured) -Info 26 [00:00:46.000] Files (1) - -Info 26 [00:00:47.000] ----------------------------------------------- -Info 26 [00:00:48.000] Open files: -Info 26 [00:00:49.000] FileName: /app.js ProjectRootPath: undefined -Info 26 [00:00:50.000] Projects: /jsconfig.json -Info 26 [00:00:56.000] DirectoryWatcher:: Triggered with tmp/node_modules :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory -Info 27 [00:00:57.000] Scheduled: /jsconfig.json, Cancelled earlier one -Info 28 [00:00:58.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 29 [00:00:59.000] Elapsed:: *ms DirectoryWatcher:: Triggered with tmp/node_modules :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory -Info 30 [00:01:01.000] DirectoryWatcher:: Triggered with tmp/node_modules/@types :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory -Info 31 [00:01:02.000] Scheduled: /jsconfig.json, Cancelled earlier one -Info 32 [00:01:03.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 33 [00:01:04.000] Elapsed:: *ms DirectoryWatcher:: Triggered with tmp/node_modules/@types :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory -Info 34 [00:01:06.000] DirectoryWatcher:: Triggered with tmp/node_modules/@types/jquery :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory -Info 35 [00:01:07.000] Scheduled: /jsconfig.json, Cancelled earlier one -Info 36 [00:01:08.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 37 [00:01:09.000] Elapsed:: *ms DirectoryWatcher:: Triggered with tmp/node_modules/@types/jquery :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory -Info 38 [00:01:11.000] DirectoryWatcher:: Triggered with tmp/node_modules/@types/jquery/index.d.ts :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory -Info 39 [00:01:12.000] Scheduled: /jsconfig.json, Cancelled earlier one -Info 40 [00:01:13.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 41 [00:01:14.000] Elapsed:: *ms DirectoryWatcher:: Triggered with tmp/node_modules/@types/jquery/index.d.ts :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory -Info 42 [00:01:15.000] Scheduled: /jsconfig.json, Cancelled earlier one -Info 43 [00:01:16.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 13 [00:00:28.000] ----------------------------------------------- +Info 14 [00:00:31.000] DirectoryWatcher:: Triggered with tmp :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory +Info 15 [00:00:32.000] Scheduled: /jsconfig.json +Info 16 [00:00:33.000] Scheduled: *ensureProjectForOpenFiles* +Info 17 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Triggered with tmp :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory +Info 18 [00:00:37.000] DirectoryWatcher:: Triggered with tmp/package.json :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory +Info 19 [00:00:38.000] Config: /jsconfig.json Detected new package.json: tmp/package.json +Info 20 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /tmp/package.json 250 undefined WatchType: package.json file +Info 21 [00:00:40.000] Project: /jsconfig.json Detected file add/remove of non supported extension: tmp/package.json +Info 22 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Triggered with tmp/package.json :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory +Info 23 [00:00:42.000] Starting updateGraphWorker: Project: /jsconfig.json +Info 24 [00:00:43.000] Finishing updateGraphWorker: Project: /jsconfig.json Version: 2 structureChanged: false structureIsReused:: Not Elapsed:: *ms +Info 25 [00:00:44.000] Project '/jsconfig.json' (Configured) +Info 25 [00:00:45.000] Files (1) + +Info 25 [00:00:46.000] ----------------------------------------------- +Info 25 [00:00:47.000] Open files: +Info 25 [00:00:48.000] FileName: /app.js ProjectRootPath: undefined +Info 25 [00:00:49.000] Projects: /jsconfig.json +Info 25 [00:00:55.000] DirectoryWatcher:: Triggered with tmp/node_modules :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory +Info 26 [00:00:56.000] Scheduled: /jsconfig.json, Cancelled earlier one +Info 27 [00:00:57.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 28 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with tmp/node_modules :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory +Info 29 [00:01:00.000] DirectoryWatcher:: Triggered with tmp/node_modules/@types :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory +Info 30 [00:01:01.000] Scheduled: /jsconfig.json, Cancelled earlier one +Info 31 [00:01:02.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 32 [00:01:03.000] Elapsed:: *ms DirectoryWatcher:: Triggered with tmp/node_modules/@types :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory +Info 33 [00:01:05.000] DirectoryWatcher:: Triggered with tmp/node_modules/@types/jquery :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory +Info 34 [00:01:06.000] Scheduled: /jsconfig.json, Cancelled earlier one +Info 35 [00:01:07.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 36 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Triggered with tmp/node_modules/@types/jquery :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory +Info 37 [00:01:10.000] DirectoryWatcher:: Triggered with tmp/node_modules/@types/jquery/index.d.ts :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory +Info 38 [00:01:11.000] Scheduled: /jsconfig.json, Cancelled earlier one +Info 39 [00:01:12.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 40 [00:01:13.000] Elapsed:: *ms DirectoryWatcher:: Triggered with tmp/node_modules/@types/jquery/index.d.ts :: WatchInfo: 1 undefined Config: /jsconfig.json WatchType: Wild card directory +Info 41 [00:01:14.000] Scheduled: /jsconfig.json, Cancelled earlier one +Info 42 [00:01:15.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one Before checking timeout queue length (2) and running //// [/tmp/package.json] { "private": true } @@ -113,11 +112,11 @@ FsWatchesRecursive:: /bower_components: {} -Info 44 [00:01:17.000] Running: /jsconfig.json -Info 45 [00:01:18.000] Starting updateGraphWorker: Project: /jsconfig.json -Info 46 [00:01:19.000] Finishing updateGraphWorker: Project: /jsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 47 [00:01:20.000] Project '/jsconfig.json' (Configured) -Info 48 [00:01:21.000] Files (2) +Info 43 [00:01:16.000] Running: /jsconfig.json +Info 44 [00:01:17.000] Starting updateGraphWorker: Project: /jsconfig.json +Info 45 [00:01:18.000] Finishing updateGraphWorker: Project: /jsconfig.json Version: 3 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 46 [00:01:19.000] Project '/jsconfig.json' (Configured) +Info 47 [00:01:20.000] Files (2) /app.js /tmp/node_modules/@types/jquery/index.d.ts @@ -127,24 +126,24 @@ Info 48 [00:01:21.000] Files (2) tmp/node_modules/@types/jquery/index.d.ts Matched by default include pattern '**/*' -Info 49 [00:01:22.000] ----------------------------------------------- -Info 50 [00:01:23.000] Running: *ensureProjectForOpenFiles* -Info 51 [00:01:24.000] Before ensureProjectForOpenFiles: -Info 52 [00:01:25.000] Project '/jsconfig.json' (Configured) -Info 52 [00:01:26.000] Files (2) - -Info 52 [00:01:27.000] ----------------------------------------------- -Info 52 [00:01:28.000] Open files: -Info 52 [00:01:29.000] FileName: /app.js ProjectRootPath: undefined -Info 52 [00:01:30.000] Projects: /jsconfig.json -Info 52 [00:01:31.000] After ensureProjectForOpenFiles: -Info 53 [00:01:32.000] Project '/jsconfig.json' (Configured) -Info 53 [00:01:33.000] Files (2) - -Info 53 [00:01:34.000] ----------------------------------------------- -Info 53 [00:01:35.000] Open files: -Info 53 [00:01:36.000] FileName: /app.js ProjectRootPath: undefined -Info 53 [00:01:37.000] Projects: /jsconfig.json +Info 48 [00:01:21.000] ----------------------------------------------- +Info 49 [00:01:22.000] Running: *ensureProjectForOpenFiles* +Info 50 [00:01:23.000] Before ensureProjectForOpenFiles: +Info 51 [00:01:24.000] Project '/jsconfig.json' (Configured) +Info 51 [00:01:25.000] Files (2) + +Info 51 [00:01:26.000] ----------------------------------------------- +Info 51 [00:01:27.000] Open files: +Info 51 [00:01:28.000] FileName: /app.js ProjectRootPath: undefined +Info 51 [00:01:29.000] Projects: /jsconfig.json +Info 51 [00:01:30.000] After ensureProjectForOpenFiles: +Info 52 [00:01:31.000] Project '/jsconfig.json' (Configured) +Info 52 [00:01:32.000] Files (2) + +Info 52 [00:01:33.000] ----------------------------------------------- +Info 52 [00:01:34.000] Open files: +Info 52 [00:01:35.000] FileName: /app.js ProjectRootPath: undefined +Info 52 [00:01:36.000] Projects: /jsconfig.json After checking timeout queue length (2) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/typingsInstaller/configured-projects.js b/tests/baselines/reference/tsserver/typingsInstaller/configured-projects.js index 761203dfcd7af..9bfb073744317 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/configured-projects.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/configured-projects.js @@ -31,30 +31,29 @@ Info 5 [00:00:18.000] Config: /a/b/tsconfig.json : { } Info 6 [00:00:19.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory Info 7 [00:00:20.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 undefined Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 8 [00:00:21.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 9 [00:00:22.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 10 [00:00:23.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/b/tsconfig.json WatchType: Missing file -Info 11 [00:00:24.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 12 [00:00:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots -Info 13 [00:00:26.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 14 [00:00:27.000] Project '/a/b/tsconfig.json' (Configured) -Info 15 [00:00:28.000] Files (1) +Info 8 [00:00:21.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 9 [00:00:22.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /a/b/tsconfig.json WatchType: Missing file +Info 10 [00:00:23.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 11 [00:00:24.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 undefined Project: /a/b/tsconfig.json WatchType: Type roots +Info 12 [00:00:25.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 13 [00:00:26.000] Project '/a/b/tsconfig.json' (Configured) +Info 14 [00:00:27.000] Files (1) /a/b/app.js app.js Matched by default include pattern '**/*' -Info 16 [00:00:29.000] ----------------------------------------------- -Info 17 [00:00:34.000] Project '/a/b/tsconfig.json' (Configured) -Info 17 [00:00:35.000] Files (1) +Info 15 [00:00:28.000] ----------------------------------------------- +Info 16 [00:00:33.000] Project '/a/b/tsconfig.json' (Configured) +Info 16 [00:00:34.000] Files (1) -Info 17 [00:00:36.000] ----------------------------------------------- -Info 17 [00:00:37.000] Open files: -Info 17 [00:00:38.000] FileName: /a/b/app.js ProjectRootPath: undefined -Info 17 [00:00:39.000] Projects: /a/b/tsconfig.json -Info 17 [00:00:48.000] Scheduled: /a/b/tsconfig.json -Info 18 [00:00:49.000] Scheduled: *ensureProjectForOpenFiles* +Info 16 [00:00:35.000] ----------------------------------------------- +Info 16 [00:00:36.000] Open files: +Info 16 [00:00:37.000] FileName: /a/b/app.js ProjectRootPath: undefined +Info 16 [00:00:38.000] Projects: /a/b/tsconfig.json +Info 16 [00:00:47.000] Scheduled: /a/b/tsconfig.json +Info 17 [00:00:48.000] Scheduled: *ensureProjectForOpenFiles* Before checking timeout queue length (2) and running //// [/a/data/package.json] { "private": true } @@ -83,11 +82,11 @@ FsWatchesRecursive:: /a/b: {} -Info 19 [00:00:50.000] Running: /a/b/tsconfig.json -Info 20 [00:00:51.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 21 [00:00:52.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 22 [00:00:53.000] Project '/a/b/tsconfig.json' (Configured) -Info 23 [00:00:54.000] Files (2) +Info 18 [00:00:49.000] Running: /a/b/tsconfig.json +Info 19 [00:00:50.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 20 [00:00:51.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 21 [00:00:52.000] Project '/a/b/tsconfig.json' (Configured) +Info 22 [00:00:53.000] Files (2) /a/b/app.js /a/data/node_modules/@types/jquery/index.d.ts @@ -97,24 +96,24 @@ Info 23 [00:00:54.000] Files (2) ../data/node_modules/@types/jquery/index.d.ts Matched by default include pattern '**/*' -Info 24 [00:00:55.000] ----------------------------------------------- -Info 25 [00:00:56.000] Running: *ensureProjectForOpenFiles* -Info 26 [00:00:57.000] Before ensureProjectForOpenFiles: -Info 27 [00:00:58.000] Project '/a/b/tsconfig.json' (Configured) -Info 27 [00:00:59.000] Files (2) - -Info 27 [00:01:00.000] ----------------------------------------------- -Info 27 [00:01:01.000] Open files: -Info 27 [00:01:02.000] FileName: /a/b/app.js ProjectRootPath: undefined -Info 27 [00:01:03.000] Projects: /a/b/tsconfig.json -Info 27 [00:01:04.000] After ensureProjectForOpenFiles: -Info 28 [00:01:05.000] Project '/a/b/tsconfig.json' (Configured) -Info 28 [00:01:06.000] Files (2) - -Info 28 [00:01:07.000] ----------------------------------------------- -Info 28 [00:01:08.000] Open files: -Info 28 [00:01:09.000] FileName: /a/b/app.js ProjectRootPath: undefined -Info 28 [00:01:10.000] Projects: /a/b/tsconfig.json +Info 23 [00:00:54.000] ----------------------------------------------- +Info 24 [00:00:55.000] Running: *ensureProjectForOpenFiles* +Info 25 [00:00:56.000] Before ensureProjectForOpenFiles: +Info 26 [00:00:57.000] Project '/a/b/tsconfig.json' (Configured) +Info 26 [00:00:58.000] Files (2) + +Info 26 [00:00:59.000] ----------------------------------------------- +Info 26 [00:01:00.000] Open files: +Info 26 [00:01:01.000] FileName: /a/b/app.js ProjectRootPath: undefined +Info 26 [00:01:02.000] Projects: /a/b/tsconfig.json +Info 26 [00:01:03.000] After ensureProjectForOpenFiles: +Info 27 [00:01:04.000] Project '/a/b/tsconfig.json' (Configured) +Info 27 [00:01:05.000] Files (2) + +Info 27 [00:01:06.000] ----------------------------------------------- +Info 27 [00:01:07.000] Open files: +Info 27 [00:01:08.000] FileName: /a/b/app.js ProjectRootPath: undefined +Info 27 [00:01:09.000] Projects: /a/b/tsconfig.json After checking timeout queue length (2) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/typingsInstaller/redo-resolutions-pointing-to-js-on-typing-install.js b/tests/baselines/reference/tsserver/typingsInstaller/redo-resolutions-pointing-to-js-on-typing-install.js index c61d36dda286e..6332a3043fdd8 100644 --- a/tests/baselines/reference/tsserver/typingsInstaller/redo-resolutions-pointing-to-js-on-typing-install.js +++ b/tests/baselines/reference/tsserver/typingsInstaller/redo-resolutions-pointing-to-js-on-typing-install.js @@ -16,26 +16,25 @@ FsWatchesRecursive:: Info 1 [00:00:22.000] Search path: /user/username/projects/a/b Info 2 [00:00:23.000] For info: /user/username/projects/a/b/app.js :: No config files found. -Info 3 [00:00:24.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 4 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/a/b/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 5 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/a/b/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 6 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/a/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 7 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/a/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 8 [00:00:29.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 9 [00:00:30.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 10 [00:00:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 11 [00:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/b/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 12 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/b/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 13 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 14 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 15 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file -Info 16 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 17 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 18 [00:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 19 [00:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 20 [00:00:41.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 21 [00:00:42.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 22 [00:00:43.000] Files (2) +Info 3 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/a/b/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 4 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/a/b/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 5 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/a/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 6 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/a/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 7 [00:00:28.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 8 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 9 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 10 [00:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/b/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 11 [00:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/b/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 12 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 13 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 14 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined Project: /dev/null/inferredProject1* WatchType: Missing file +Info 15 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 16 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/b/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 17 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 18 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 19 [00:00:40.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:00:41.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 21 [00:00:42.000] Files (2) /user/username/projects/node_modules/commander/index.js /user/username/projects/a/b/app.js @@ -45,16 +44,16 @@ Info 22 [00:00:43.000] Files (2) app.js Root file specified for compilation -Info 23 [00:00:44.000] ----------------------------------------------- -Info 24 [00:00:49.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 24 [00:00:50.000] Files (2) +Info 22 [00:00:43.000] ----------------------------------------------- +Info 23 [00:00:48.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 23 [00:00:49.000] Files (2) -Info 24 [00:00:51.000] ----------------------------------------------- -Info 24 [00:00:52.000] Open files: -Info 24 [00:00:53.000] FileName: /user/username/projects/a/b/app.js ProjectRootPath: undefined -Info 24 [00:00:54.000] Projects: /dev/null/inferredProject1* -Info 24 [00:01:03.000] Scheduled: /dev/null/inferredProject1* -Info 25 [00:01:04.000] Scheduled: *ensureProjectForOpenFiles* +Info 23 [00:00:50.000] ----------------------------------------------- +Info 23 [00:00:51.000] Open files: +Info 23 [00:00:52.000] FileName: /user/username/projects/a/b/app.js ProjectRootPath: undefined +Info 23 [00:00:53.000] Projects: /dev/null/inferredProject1* +Info 23 [00:01:02.000] Scheduled: /dev/null/inferredProject1* +Info 24 [00:01:03.000] Scheduled: *ensureProjectForOpenFiles* Before checking timeout queue length (2) and running //// [/user/username/projects/a/cache/package.json] { "private": true } @@ -91,13 +90,13 @@ FsWatchesRecursive:: /user/username/projects/node_modules: {} -Info 26 [00:01:05.000] Running: /dev/null/inferredProject1* -Info 27 [00:01:06.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 28 [00:01:07.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/cache/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 29 [00:01:08.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/cache/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 30 [00:01:09.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 31 [00:01:10.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 32 [00:01:11.000] Files (2) +Info 25 [00:01:04.000] Running: /dev/null/inferredProject1* +Info 26 [00:01:05.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 27 [00:01:06.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/cache/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 28 [00:01:07.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/a/cache/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 29 [00:01:08.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 30 [00:01:09.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 31 [00:01:10.000] Files (2) /user/username/projects/a/cache/node_modules/@types/commander/index.d.ts /user/username/projects/a/b/app.js @@ -108,9 +107,9 @@ Info 32 [00:01:11.000] Files (2) app.js Root file specified for compilation -Info 33 [00:01:12.000] ----------------------------------------------- -Info 34 [00:01:13.000] Scheduled: /dev/null/inferredProject1* -Info 35 [00:01:14.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 32 [00:01:11.000] ----------------------------------------------- +Info 33 [00:01:12.000] Scheduled: /dev/null/inferredProject1* +Info 34 [00:01:13.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one After checking timeout queue length (2) and running PolledWatches:: diff --git a/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options-errors.js b/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options-errors.js index 61d82900ef85a..ab63e3ad60759 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options-errors.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options-errors.js @@ -29,21 +29,20 @@ FsWatches:: FsWatchesRecursive:: -Info 1 [00:00:30.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 2 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 3 [00:00:32.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 4 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 5 [00:00:34.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/project.csproj -Info 6 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":[]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations -Info 7 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":[]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations -Info 8 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 9 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":[]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations -Info 10 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":[]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations -Info 11 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeDirectories":[]} Project: /user/username/projects/myproject/project.csproj WatchType: Type roots -Info 12 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeDirectories":[]} Project: /user/username/projects/myproject/project.csproj WatchType: Type roots -Info 13 [00:00:42.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/project.csproj Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 14 [00:00:43.000] Project '/user/username/projects/myproject/project.csproj' (External) -Info 15 [00:00:44.000] Files (4) +Info 1 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 2 [00:00:31.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 3 [00:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 4 [00:00:33.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/project.csproj +Info 5 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":[]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations +Info 6 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":[]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations +Info 7 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 8 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":[]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations +Info 9 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":[]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations +Info 10 [00:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeDirectories":[]} Project: /user/username/projects/myproject/project.csproj WatchType: Type roots +Info 11 [00:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeDirectories":[]} Project: /user/username/projects/myproject/project.csproj WatchType: Type roots +Info 12 [00:00:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/project.csproj Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 13 [00:00:42.000] Project '/user/username/projects/myproject/project.csproj' (External) +Info 14 [00:00:43.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/node_modules/bar/foo.d.ts /user/username/projects/myproject/node_modules/bar/index.d.ts @@ -62,16 +61,16 @@ Info 15 [00:00:44.000] Files (4) src/main.ts Root file specified for compilation -Info 16 [00:00:45.000] ----------------------------------------------- -Info 17 [00:00:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 18 [00:00:47.000] Project '/user/username/projects/myproject/project.csproj' (External) -Info 18 [00:00:48.000] Files (4) +Info 15 [00:00:44.000] ----------------------------------------------- +Info 16 [00:00:45.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 17 [00:00:46.000] Project '/user/username/projects/myproject/project.csproj' (External) +Info 17 [00:00:47.000] Files (4) -Info 18 [00:00:49.000] ----------------------------------------------- -Info 18 [00:00:50.000] Open files: -Info 18 [00:00:51.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 18 [00:00:52.000] Projects: /user/username/projects/myproject/project.csproj -Info 18 [00:00:53.000] [ +Info 17 [00:00:48.000] ----------------------------------------------- +Info 17 [00:00:49.000] Open files: +Info 17 [00:00:50.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 17 [00:00:51.000] Projects: /user/username/projects/myproject/project.csproj +Info 17 [00:00:52.000] [ { "messageText": "File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '**/../*'.", "category": 1, diff --git a/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options-in-host-configuration.js b/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options-in-host-configuration.js index 88c980168b020..cc82755aa6eb8 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options-in-host-configuration.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options-in-host-configuration.js @@ -90,18 +90,17 @@ FsWatches:: FsWatchesRecursive:: -Info 6 [00:00:35.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 7 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 {"excludeDirectories":["node_modules"]} WatchType: Closed Script info -Info 8 [00:00:37.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["node_modules"]} WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 9 [00:00:38.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/project.csproj -Info 10 [00:00:39.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations -Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 {"excludeDirectories":["node_modules"]} WatchType: Closed Script info -Info 12 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations -Info 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations -Info 14 [00:00:43.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Type roots -Info 15 [00:00:44.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/project.csproj Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:00:45.000] Project '/user/username/projects/myproject/project.csproj' (External) -Info 17 [00:00:46.000] Files (4) +Info 6 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 {"excludeDirectories":["node_modules"]} WatchType: Closed Script info +Info 7 [00:00:36.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["node_modules"]} WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 8 [00:00:37.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/project.csproj +Info 9 [00:00:38.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations +Info 10 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 {"excludeDirectories":["node_modules"]} WatchType: Closed Script info +Info 11 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations +Info 12 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations +Info 13 [00:00:42.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Type roots +Info 14 [00:00:43.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/project.csproj Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:44.000] Project '/user/username/projects/myproject/project.csproj' (External) +Info 16 [00:00:45.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/node_modules/bar/foo.d.ts /user/username/projects/myproject/node_modules/bar/index.d.ts @@ -120,7 +119,7 @@ Info 17 [00:00:46.000] Files (4) src/main.ts Root file specified for compilation -Info 18 [00:00:47.000] ----------------------------------------------- +Info 17 [00:00:46.000] ----------------------------------------------- After request PolledWatches:: @@ -135,12 +134,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 19 [00:00:48.000] response: +Info 18 [00:00:47.000] response: { "response": true, "responseRequired": true } -Info 20 [00:00:49.000] request: +Info 19 [00:00:48.000] request: { "seq": 0, "type": "request", @@ -163,14 +162,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 21 [00:00:50.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 {"excludeDirectories":["node_modules"]} WatchType: Closed Script info -Info 22 [00:00:51.000] Project '/user/username/projects/myproject/project.csproj' (External) -Info 22 [00:00:52.000] Files (4) +Info 20 [00:00:49.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 {"excludeDirectories":["node_modules"]} WatchType: Closed Script info +Info 21 [00:00:50.000] Project '/user/username/projects/myproject/project.csproj' (External) +Info 21 [00:00:51.000] Files (4) -Info 22 [00:00:53.000] ----------------------------------------------- -Info 22 [00:00:54.000] Open files: -Info 22 [00:00:55.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 22 [00:00:56.000] Projects: /user/username/projects/myproject/project.csproj +Info 21 [00:00:52.000] ----------------------------------------------- +Info 21 [00:00:53.000] Open files: +Info 21 [00:00:54.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 21 [00:00:55.000] Projects: /user/username/projects/myproject/project.csproj After request PolledWatches:: @@ -183,7 +182,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 22 [00:00:57.000] response: +Info 21 [00:00:56.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options.js b/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options.js index 2468b60f436ca..7829a109af47a 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/external-project-watch-options.js @@ -54,19 +54,18 @@ FsWatches:: FsWatchesRecursive:: -Info 2 [00:00:31.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 3 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 4 [00:00: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 -Info 5 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 6 [00:00:35.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/project.csproj -Info 7 [00:00:36.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations -Info 8 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 9 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations -Info 10 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations -Info 11 [00:00:40.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Type roots -Info 12 [00:00:41.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/project.csproj Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 13 [00:00:42.000] Project '/user/username/projects/myproject/project.csproj' (External) -Info 14 [00:00:43.000] Files (4) +Info 2 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 3 [00:00:32.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 4 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 5 [00:00:34.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/project.csproj +Info 6 [00:00:35.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations +Info 7 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 8 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations +Info 9 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Failed Lookup Locations +Info 10 [00:00:39.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/project.csproj WatchType: Type roots +Info 11 [00:00:40.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/project.csproj Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 12 [00:00:41.000] Project '/user/username/projects/myproject/project.csproj' (External) +Info 13 [00:00:42.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/node_modules/bar/foo.d.ts /user/username/projects/myproject/node_modules/bar/index.d.ts @@ -85,7 +84,7 @@ Info 14 [00:00:43.000] Files (4) src/main.ts Root file specified for compilation -Info 15 [00:00:44.000] ----------------------------------------------- +Info 14 [00:00:43.000] ----------------------------------------------- After request PolledWatches:: @@ -102,12 +101,12 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 16 [00:00:45.000] response: +Info 15 [00:00:44.000] response: { "response": true, "responseRequired": true } -Info 17 [00:00:46.000] request: +Info 16 [00:00:45.000] request: { "seq": 0, "type": "request", @@ -132,14 +131,14 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 18 [00:00:47.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info -Info 19 [00:00:48.000] Project '/user/username/projects/myproject/project.csproj' (External) -Info 19 [00:00:49.000] Files (4) +Info 17 [00:00:46.000] FileWatcher:: Close:: WatchInfo: /user/username/projects/myproject/src/main.ts 500 undefined WatchType: Closed Script info +Info 18 [00:00:47.000] Project '/user/username/projects/myproject/project.csproj' (External) +Info 18 [00:00:48.000] Files (4) -Info 19 [00:00:50.000] ----------------------------------------------- -Info 19 [00:00:51.000] Open files: -Info 19 [00:00:52.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 19 [00:00:53.000] Projects: /user/username/projects/myproject/project.csproj +Info 18 [00:00:49.000] ----------------------------------------------- +Info 18 [00:00:50.000] Open files: +Info 18 [00:00:51.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 18 [00:00:52.000] Projects: /user/username/projects/myproject/project.csproj After request PolledWatches:: @@ -154,7 +153,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 19 [00:00:54.000] response: +Info 18 [00:00:53.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/watchEnvironment/files-at-root.js b/tests/baselines/reference/tsserver/watchEnvironment/files-at-root.js index 1a5ac4b95aa6b..733cf89e640c9 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/files-at-root.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/files-at-root.js @@ -53,15 +53,14 @@ Info 6 [00:00:23.000] Config: c:/project/tsconfig.json : { } Info 7 [00:00:24.000] DirectoryWatcher:: Added:: WatchInfo: c:/project 1 undefined Config: c:/project/tsconfig.json WatchType: Wild card directory Info 8 [00:00:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/project 1 undefined Config: c:/project/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:27.000] FileWatcher:: Added:: WatchInfo: c:/project/file2.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:28.000] Starting updateGraphWorker: Project: c:/project/tsconfig.json -Info 12 [00:00:29.000] FileWatcher:: Added:: WatchInfo: c:/a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:30.000] DirectoryWatcher:: Added:: WatchInfo: c:/project/node_modules/@types 1 undefined Project: c:/project/tsconfig.json WatchType: Type roots -Info 14 [00:00:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/project/node_modules/@types 1 undefined Project: c:/project/tsconfig.json WatchType: Type roots -Info 15 [00:00:32.000] Finishing updateGraphWorker: Project: c:/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:00:33.000] Project 'c:/project/tsconfig.json' (Configured) -Info 17 [00:00:34.000] Files (3) +Info 9 [00:00:26.000] FileWatcher:: Added:: WatchInfo: c:/project/file2.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:27.000] Starting updateGraphWorker: Project: c:/project/tsconfig.json +Info 11 [00:00:28.000] FileWatcher:: Added:: WatchInfo: c:/a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: c:/project/node_modules/@types 1 undefined Project: c:/project/tsconfig.json WatchType: Type roots +Info 13 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/project/node_modules/@types 1 undefined Project: c:/project/tsconfig.json WatchType: Type roots +Info 14 [00:00:31.000] Finishing updateGraphWorker: Project: c:/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:32.000] Project 'c:/project/tsconfig.json' (Configured) +Info 16 [00:00:33.000] Files (3) c:/a/lib/lib.d.ts c:/project/file1.ts c:/project/file2.ts @@ -74,14 +73,14 @@ Info 17 [00:00:34.000] Files (3) file2.ts Matched by default include pattern '**/*' -Info 18 [00:00:35.000] ----------------------------------------------- -Info 19 [00:00:36.000] Project 'c:/project/tsconfig.json' (Configured) -Info 19 [00:00:37.000] Files (3) +Info 17 [00:00:34.000] ----------------------------------------------- +Info 18 [00:00:35.000] Project 'c:/project/tsconfig.json' (Configured) +Info 18 [00:00:36.000] Files (3) -Info 19 [00:00:38.000] ----------------------------------------------- -Info 19 [00:00:39.000] Open files: -Info 19 [00:00:40.000] FileName: c:/project/file1.ts ProjectRootPath: undefined -Info 19 [00:00:41.000] Projects: c:/project/tsconfig.json +Info 18 [00:00:37.000] ----------------------------------------------- +Info 18 [00:00:38.000] Open files: +Info 18 [00:00:39.000] FileName: c:/project/file1.ts ProjectRootPath: undefined +Info 18 [00:00:40.000] Projects: c:/project/tsconfig.json After request PolledWatches:: @@ -100,7 +99,7 @@ FsWatchesRecursive:: c:/project: {} -Info 19 [00:00:42.000] response: +Info 18 [00:00:41.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/watchEnvironment/files-at-windows-style-root.js b/tests/baselines/reference/tsserver/watchEnvironment/files-at-windows-style-root.js index 1a5ac4b95aa6b..733cf89e640c9 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/files-at-windows-style-root.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/files-at-windows-style-root.js @@ -53,15 +53,14 @@ Info 6 [00:00:23.000] Config: c:/project/tsconfig.json : { } Info 7 [00:00:24.000] DirectoryWatcher:: Added:: WatchInfo: c:/project 1 undefined Config: c:/project/tsconfig.json WatchType: Wild card directory Info 8 [00:00:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/project 1 undefined Config: c:/project/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:26.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:27.000] FileWatcher:: Added:: WatchInfo: c:/project/file2.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:28.000] Starting updateGraphWorker: Project: c:/project/tsconfig.json -Info 12 [00:00:29.000] FileWatcher:: Added:: WatchInfo: c:/a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:30.000] DirectoryWatcher:: Added:: WatchInfo: c:/project/node_modules/@types 1 undefined Project: c:/project/tsconfig.json WatchType: Type roots -Info 14 [00:00:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/project/node_modules/@types 1 undefined Project: c:/project/tsconfig.json WatchType: Type roots -Info 15 [00:00:32.000] Finishing updateGraphWorker: Project: c:/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 16 [00:00:33.000] Project 'c:/project/tsconfig.json' (Configured) -Info 17 [00:00:34.000] Files (3) +Info 9 [00:00:26.000] FileWatcher:: Added:: WatchInfo: c:/project/file2.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:27.000] Starting updateGraphWorker: Project: c:/project/tsconfig.json +Info 11 [00:00:28.000] FileWatcher:: Added:: WatchInfo: c:/a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: c:/project/node_modules/@types 1 undefined Project: c:/project/tsconfig.json WatchType: Type roots +Info 13 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/project/node_modules/@types 1 undefined Project: c:/project/tsconfig.json WatchType: Type roots +Info 14 [00:00:31.000] Finishing updateGraphWorker: Project: c:/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 15 [00:00:32.000] Project 'c:/project/tsconfig.json' (Configured) +Info 16 [00:00:33.000] Files (3) c:/a/lib/lib.d.ts c:/project/file1.ts c:/project/file2.ts @@ -74,14 +73,14 @@ Info 17 [00:00:34.000] Files (3) file2.ts Matched by default include pattern '**/*' -Info 18 [00:00:35.000] ----------------------------------------------- -Info 19 [00:00:36.000] Project 'c:/project/tsconfig.json' (Configured) -Info 19 [00:00:37.000] Files (3) +Info 17 [00:00:34.000] ----------------------------------------------- +Info 18 [00:00:35.000] Project 'c:/project/tsconfig.json' (Configured) +Info 18 [00:00:36.000] Files (3) -Info 19 [00:00:38.000] ----------------------------------------------- -Info 19 [00:00:39.000] Open files: -Info 19 [00:00:40.000] FileName: c:/project/file1.ts ProjectRootPath: undefined -Info 19 [00:00:41.000] Projects: c:/project/tsconfig.json +Info 18 [00:00:37.000] ----------------------------------------------- +Info 18 [00:00:38.000] Open files: +Info 18 [00:00:39.000] FileName: c:/project/file1.ts ProjectRootPath: undefined +Info 18 [00:00:40.000] Projects: c:/project/tsconfig.json After request PolledWatches:: @@ -100,7 +99,7 @@ FsWatchesRecursive:: c:/project: {} -Info 19 [00:00:42.000] response: +Info 18 [00:00:41.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-root.js b/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-root.js index 9481eac61df2e..135b05d4a6ca0 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-root.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-root.js @@ -53,17 +53,16 @@ Info 6 [00:00:27.000] Config: c:/myfolder/allproject/project/tsconfig.json : } Info 7 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: c:/myfolder/allproject/project 1 undefined Config: c:/myfolder/allproject/project/tsconfig.json WatchType: Wild card directory Info 8 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/myfolder/allproject/project 1 undefined Config: c:/myfolder/allproject/project/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:30.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:31.000] FileWatcher:: Added:: WatchInfo: c:/myfolder/allproject/project/file2.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:32.000] Starting updateGraphWorker: Project: c:/myfolder/allproject/project/tsconfig.json -Info 12 [00:00:33.000] FileWatcher:: Added:: WatchInfo: c:/a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: c:/myfolder/allproject/project/node_modules/@types 1 undefined Project: c:/myfolder/allproject/project/tsconfig.json WatchType: Type roots -Info 14 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/myfolder/allproject/project/node_modules/@types 1 undefined Project: c:/myfolder/allproject/project/tsconfig.json WatchType: Type roots -Info 15 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: c:/myfolder/allproject/node_modules/@types 1 undefined Project: c:/myfolder/allproject/project/tsconfig.json WatchType: Type roots -Info 16 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/myfolder/allproject/node_modules/@types 1 undefined Project: c:/myfolder/allproject/project/tsconfig.json WatchType: Type roots -Info 17 [00:00:38.000] Finishing updateGraphWorker: Project: c:/myfolder/allproject/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 18 [00:00:39.000] Project 'c:/myfolder/allproject/project/tsconfig.json' (Configured) -Info 19 [00:00:40.000] Files (3) +Info 9 [00:00:30.000] FileWatcher:: Added:: WatchInfo: c:/myfolder/allproject/project/file2.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:31.000] Starting updateGraphWorker: Project: c:/myfolder/allproject/project/tsconfig.json +Info 11 [00:00:32.000] FileWatcher:: Added:: WatchInfo: c:/a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: c:/myfolder/allproject/project/node_modules/@types 1 undefined Project: c:/myfolder/allproject/project/tsconfig.json WatchType: Type roots +Info 13 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/myfolder/allproject/project/node_modules/@types 1 undefined Project: c:/myfolder/allproject/project/tsconfig.json WatchType: Type roots +Info 14 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: c:/myfolder/allproject/node_modules/@types 1 undefined Project: c:/myfolder/allproject/project/tsconfig.json WatchType: Type roots +Info 15 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/myfolder/allproject/node_modules/@types 1 undefined Project: c:/myfolder/allproject/project/tsconfig.json WatchType: Type roots +Info 16 [00:00:37.000] Finishing updateGraphWorker: Project: c:/myfolder/allproject/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:00:38.000] Project 'c:/myfolder/allproject/project/tsconfig.json' (Configured) +Info 18 [00:00:39.000] Files (3) c:/a/lib/lib.d.ts c:/myfolder/allproject/project/file1.ts c:/myfolder/allproject/project/file2.ts @@ -76,14 +75,14 @@ Info 19 [00:00:40.000] Files (3) file2.ts Matched by default include pattern '**/*' -Info 20 [00:00:41.000] ----------------------------------------------- -Info 21 [00:00:42.000] Project 'c:/myfolder/allproject/project/tsconfig.json' (Configured) -Info 21 [00:00:43.000] Files (3) +Info 19 [00:00:40.000] ----------------------------------------------- +Info 20 [00:00:41.000] Project 'c:/myfolder/allproject/project/tsconfig.json' (Configured) +Info 20 [00:00:42.000] Files (3) -Info 21 [00:00:44.000] ----------------------------------------------- -Info 21 [00:00:45.000] Open files: -Info 21 [00:00:46.000] FileName: c:/myfolder/allproject/project/file1.ts ProjectRootPath: undefined -Info 21 [00:00:47.000] Projects: c:/myfolder/allproject/project/tsconfig.json +Info 20 [00:00:43.000] ----------------------------------------------- +Info 20 [00:00:44.000] Open files: +Info 20 [00:00:45.000] FileName: c:/myfolder/allproject/project/file1.ts ProjectRootPath: undefined +Info 20 [00:00:46.000] Projects: c:/myfolder/allproject/project/tsconfig.json After request PolledWatches:: @@ -104,7 +103,7 @@ FsWatchesRecursive:: c:/myfolder/allproject/project: {} -Info 21 [00:00:48.000] response: +Info 20 [00:00:47.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-windows-style-root.js b/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-windows-style-root.js index 9481eac61df2e..135b05d4a6ca0 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-windows-style-root.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/files-not-at-windows-style-root.js @@ -53,17 +53,16 @@ Info 6 [00:00:27.000] Config: c:/myfolder/allproject/project/tsconfig.json : } Info 7 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: c:/myfolder/allproject/project 1 undefined Config: c:/myfolder/allproject/project/tsconfig.json WatchType: Wild card directory Info 8 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/myfolder/allproject/project 1 undefined Config: c:/myfolder/allproject/project/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:30.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:31.000] FileWatcher:: Added:: WatchInfo: c:/myfolder/allproject/project/file2.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:32.000] Starting updateGraphWorker: Project: c:/myfolder/allproject/project/tsconfig.json -Info 12 [00:00:33.000] FileWatcher:: Added:: WatchInfo: c:/a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: c:/myfolder/allproject/project/node_modules/@types 1 undefined Project: c:/myfolder/allproject/project/tsconfig.json WatchType: Type roots -Info 14 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/myfolder/allproject/project/node_modules/@types 1 undefined Project: c:/myfolder/allproject/project/tsconfig.json WatchType: Type roots -Info 15 [00:00:36.000] DirectoryWatcher:: Added:: WatchInfo: c:/myfolder/allproject/node_modules/@types 1 undefined Project: c:/myfolder/allproject/project/tsconfig.json WatchType: Type roots -Info 16 [00:00:37.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/myfolder/allproject/node_modules/@types 1 undefined Project: c:/myfolder/allproject/project/tsconfig.json WatchType: Type roots -Info 17 [00:00:38.000] Finishing updateGraphWorker: Project: c:/myfolder/allproject/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 18 [00:00:39.000] Project 'c:/myfolder/allproject/project/tsconfig.json' (Configured) -Info 19 [00:00:40.000] Files (3) +Info 9 [00:00:30.000] FileWatcher:: Added:: WatchInfo: c:/myfolder/allproject/project/file2.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:31.000] Starting updateGraphWorker: Project: c:/myfolder/allproject/project/tsconfig.json +Info 11 [00:00:32.000] FileWatcher:: Added:: WatchInfo: c:/a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: c:/myfolder/allproject/project/node_modules/@types 1 undefined Project: c:/myfolder/allproject/project/tsconfig.json WatchType: Type roots +Info 13 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/myfolder/allproject/project/node_modules/@types 1 undefined Project: c:/myfolder/allproject/project/tsconfig.json WatchType: Type roots +Info 14 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: c:/myfolder/allproject/node_modules/@types 1 undefined Project: c:/myfolder/allproject/project/tsconfig.json WatchType: Type roots +Info 15 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/myfolder/allproject/node_modules/@types 1 undefined Project: c:/myfolder/allproject/project/tsconfig.json WatchType: Type roots +Info 16 [00:00:37.000] Finishing updateGraphWorker: Project: c:/myfolder/allproject/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:00:38.000] Project 'c:/myfolder/allproject/project/tsconfig.json' (Configured) +Info 18 [00:00:39.000] Files (3) c:/a/lib/lib.d.ts c:/myfolder/allproject/project/file1.ts c:/myfolder/allproject/project/file2.ts @@ -76,14 +75,14 @@ Info 19 [00:00:40.000] Files (3) file2.ts Matched by default include pattern '**/*' -Info 20 [00:00:41.000] ----------------------------------------------- -Info 21 [00:00:42.000] Project 'c:/myfolder/allproject/project/tsconfig.json' (Configured) -Info 21 [00:00:43.000] Files (3) +Info 19 [00:00:40.000] ----------------------------------------------- +Info 20 [00:00:41.000] Project 'c:/myfolder/allproject/project/tsconfig.json' (Configured) +Info 20 [00:00:42.000] Files (3) -Info 21 [00:00:44.000] ----------------------------------------------- -Info 21 [00:00:45.000] Open files: -Info 21 [00:00:46.000] FileName: c:/myfolder/allproject/project/file1.ts ProjectRootPath: undefined -Info 21 [00:00:47.000] Projects: c:/myfolder/allproject/project/tsconfig.json +Info 20 [00:00:43.000] ----------------------------------------------- +Info 20 [00:00:44.000] Open files: +Info 20 [00:00:45.000] FileName: c:/myfolder/allproject/project/file1.ts ProjectRootPath: undefined +Info 20 [00:00:46.000] Projects: c:/myfolder/allproject/project/tsconfig.json After request PolledWatches:: @@ -104,7 +103,7 @@ FsWatchesRecursive:: c:/myfolder/allproject/project: {} -Info 21 [00:00:48.000] response: +Info 20 [00:00:47.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options-errors.js b/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options-errors.js index 3055f103c91f9..f92f7f7b4d0f6 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options-errors.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options-errors.js @@ -31,24 +31,23 @@ FsWatchesRecursive:: Info 1 [00:00:30.000] Search path: /user/username/projects/myproject/src Info 2 [00:00:31.000] For info: /user/username/projects/myproject/src/main.ts :: No config files found. -Info 3 [00:00:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 4 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 6 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 7 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 8 [00:00:37.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 9 [00:00:38.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 10 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 11 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":[]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 12 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":[]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 14 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":[]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 15 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":[]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 16 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeDirectories":[]} Project: /dev/null/inferredProject1* WatchType: Type roots -Info 17 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeDirectories":[]} Project: /dev/null/inferredProject1* WatchType: Type roots -Info 18 [00:00:47.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 19 [00:00:48.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 20 [00:00:49.000] Files (4) +Info 3 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 4 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 5 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 6 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 7 [00:00:36.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 8 [00:00:37.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 9 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 10 [00:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":[]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 11 [00:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":[]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 13 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":[]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 14 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":[]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeDirectories":[]} Project: /dev/null/inferredProject1* WatchType: Type roots +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeDirectories":[]} Project: /dev/null/inferredProject1* WatchType: Type roots +Info 17 [00:00:46.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 18 [00:00:47.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 19 [00:00:48.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/node_modules/bar/foo.d.ts /user/username/projects/myproject/node_modules/bar/index.d.ts @@ -64,15 +63,15 @@ Info 20 [00:00:49.000] Files (4) src/main.ts Root file specified for compilation -Info 21 [00:00:50.000] ----------------------------------------------- -Info 22 [00:00:51.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 22 [00:00:52.000] Files (4) +Info 20 [00:00:49.000] ----------------------------------------------- +Info 21 [00:00:50.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 21 [00:00:51.000] Files (4) -Info 22 [00:00:53.000] ----------------------------------------------- -Info 22 [00:00:54.000] Open files: -Info 22 [00:00:55.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject -Info 22 [00:00:56.000] Projects: /dev/null/inferredProject1* -Info 22 [00:00:57.000] [ +Info 21 [00:00:52.000] ----------------------------------------------- +Info 21 [00:00:53.000] Open files: +Info 21 [00:00:54.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject +Info 21 [00:00:55.000] Projects: /dev/null/inferredProject1* +Info 21 [00:00:56.000] [ { "messageText": "File specification cannot contain a parent directory ('..') that appears after a recursive directory wildcard ('**'): '**/../*'.", "category": 1, diff --git a/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options-in-host-configuration.js b/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options-in-host-configuration.js index b4bec4ffacef7..428135d6f4b99 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options-in-host-configuration.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options-in-host-configuration.js @@ -112,21 +112,20 @@ FsWatchesRecursive:: Info 8 [00:00:37.000] Search path: /user/username/projects/myproject/src Info 9 [00:00:38.000] For info: /user/username/projects/myproject/src/main.ts :: No config files found. -Info 10 [00:00:39.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 {"excludeDirectories":["node_modules"]} WatchType: Config file for the inferred project root -Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 {"excludeDirectories":["node_modules"]} WatchType: Config file for the inferred project root -Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 {"excludeDirectories":["node_modules"]} WatchType: Config file for the inferred project root -Info 14 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 {"excludeDirectories":["node_modules"]} WatchType: Config file for the inferred project root -Info 15 [00:00:44.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 16 [00:00:45.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["node_modules"]} WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 17 [00:00:46.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 18 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 {"excludeDirectories":["node_modules"]} WatchType: Closed Script info -Info 19 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 20 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 21 [00:00:50.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots -Info 22 [00:00:51.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 23 [00:00:52.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 24 [00:00:53.000] Files (4) +Info 10 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 {"excludeDirectories":["node_modules"]} WatchType: Config file for the inferred project root +Info 11 [00:00:40.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 {"excludeDirectories":["node_modules"]} WatchType: Config file for the inferred project root +Info 12 [00:00:41.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 {"excludeDirectories":["node_modules"]} WatchType: Config file for the inferred project root +Info 13 [00:00:42.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 {"excludeDirectories":["node_modules"]} WatchType: Config file for the inferred project root +Info 14 [00:00:43.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 15 [00:00:44.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["node_modules"]} WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 16 [00:00:45.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 {"excludeDirectories":["node_modules"]} WatchType: Closed Script info +Info 18 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 19 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 20 [00:00:49.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots +Info 21 [00:00:50.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 22 [00:00:51.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 23 [00:00:52.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/node_modules/bar/foo.d.ts /user/username/projects/myproject/node_modules/bar/index.d.ts @@ -142,14 +141,14 @@ Info 24 [00:00:53.000] Files (4) src/main.ts Root file specified for compilation -Info 25 [00:00:54.000] ----------------------------------------------- -Info 26 [00:00:55.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 26 [00:00:56.000] Files (4) +Info 24 [00:00:53.000] ----------------------------------------------- +Info 25 [00:00:54.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 25 [00:00:55.000] Files (4) -Info 26 [00:00:57.000] ----------------------------------------------- -Info 26 [00:00:58.000] Open files: -Info 26 [00:00:59.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject -Info 26 [00:01:00.000] Projects: /dev/null/inferredProject1* +Info 25 [00:00:56.000] ----------------------------------------------- +Info 25 [00:00:57.000] Open files: +Info 25 [00:00:58.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject +Info 25 [00:00:59.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -170,7 +169,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 26 [00:01:01.000] response: +Info 25 [00:01:00.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options.js b/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options.js index 960e71f539941..321c8a290ea1b 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/inferred-project-watch-options.js @@ -76,22 +76,21 @@ FsWatchesRecursive:: Info 4 [00:00:33.000] Search path: /user/username/projects/myproject/src Info 5 [00:00:34.000] For info: /user/username/projects/myproject/src/main.ts :: No config files found. -Info 6 [00:00:35.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 7 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 8 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 9 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 10 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 11 [00:00:40.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 12 [00:00:41.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 13 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 14 [00:00:43.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 15 [00:00:44.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 16 [00:00:45.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 17 [00:00:46.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 18 [00:00:47.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots -Info 19 [00:00:48.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:00:49.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 21 [00:00:50.000] Files (4) +Info 6 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 7 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 8 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 9 [00:00:38.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 10 [00:00:39.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 11 [00:00:40.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 12 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 13 [00:00:42.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 14 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 15 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 16 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 17 [00:00:46.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /dev/null/inferredProject1* WatchType: Type roots +Info 18 [00:00:47.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:48.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 20 [00:00:49.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/node_modules/bar/foo.d.ts /user/username/projects/myproject/node_modules/bar/index.d.ts @@ -107,14 +106,14 @@ Info 21 [00:00:50.000] Files (4) src/main.ts Root file specified for compilation -Info 22 [00:00:51.000] ----------------------------------------------- -Info 23 [00:00:52.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 23 [00:00:53.000] Files (4) +Info 21 [00:00:50.000] ----------------------------------------------- +Info 22 [00:00:51.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 22 [00:00:52.000] Files (4) -Info 23 [00:00:54.000] ----------------------------------------------- -Info 23 [00:00:55.000] Open files: -Info 23 [00:00:56.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject -Info 23 [00:00:57.000] Projects: /dev/null/inferredProject1* +Info 22 [00:00:53.000] ----------------------------------------------- +Info 22 [00:00:54.000] Open files: +Info 22 [00:00:55.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: /user/username/projects/myproject +Info 22 [00:00:56.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -137,7 +136,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 23 [00:00:58.000] response: +Info 22 [00:00:57.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names-with-i.js b/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names-with-i.js index f0929dff89fa0..3f2ea4af35084 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names-with-i.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names-with-i.js @@ -35,18 +35,17 @@ FsWatchesRecursive:: Info 2 [00:00:21.000] Search path: /User/userName/Projects/i Info 3 [00:00:22.000] For info: /User/userName/Projects/i/foo.ts :: No config files found. -Info 4 [00:00:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 5 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /User/userName/Projects/i/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 6 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /User/userName/Projects/i/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 7 [00:00:26.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 8 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 9 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/i/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 10 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/i/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 11 [00:00:30.000] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/i/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 12 [00:00:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/i/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 13 [00:00:32.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 14 [00:00:33.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 15 [00:00:34.000] Files (2) +Info 4 [00:00:23.000] FileWatcher:: Added:: WatchInfo: /User/userName/Projects/i/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 5 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /User/userName/Projects/i/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 6 [00:00:25.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 7 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 8 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/i/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 9 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/i/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 10 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/i/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 11 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/i/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 12 [00:00:31.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 13 [00:00:32.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 14 [00:00:33.000] Files (2) /a/lib/lib.d.ts /User/userName/Projects/i/foo.ts @@ -56,14 +55,14 @@ Info 15 [00:00:34.000] Files (2) foo.ts Root file specified for compilation -Info 16 [00:00:35.000] ----------------------------------------------- -Info 17 [00:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 17 [00:00:37.000] Files (2) +Info 15 [00:00:34.000] ----------------------------------------------- +Info 16 [00:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 16 [00:00:36.000] Files (2) -Info 17 [00:00:38.000] ----------------------------------------------- -Info 17 [00:00:39.000] Open files: -Info 17 [00:00:40.000] FileName: /User/userName/Projects/i/foo.ts ProjectRootPath: /User/userName/Projects/i -Info 17 [00:00:41.000] Projects: /dev/null/inferredProject1* +Info 16 [00:00:37.000] ----------------------------------------------- +Info 16 [00:00:38.000] Open files: +Info 16 [00:00:39.000] FileName: /User/userName/Projects/i/foo.ts ProjectRootPath: /User/userName/Projects/i +Info 16 [00:00:40.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -82,7 +81,7 @@ FsWatches:: FsWatchesRecursive:: -Info 17 [00:00:42.000] response: +Info 16 [00:00:41.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names.js b/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names.js index 3771ac0f84621..c211da4e8b339 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/project-with-ascii-file-names.js @@ -35,18 +35,17 @@ FsWatchesRecursive:: Info 2 [00:00:21.000] Search path: /User/userName/Projects/I Info 3 [00:00:22.000] For info: /User/userName/Projects/I/foo.ts :: No config files found. -Info 4 [00:00:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 5 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /User/userName/Projects/I/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 6 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /User/userName/Projects/I/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 7 [00:00:26.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 8 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 9 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/I/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 10 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/I/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 11 [00:00:30.000] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/I/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 12 [00:00:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/I/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 13 [00:00:32.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 14 [00:00:33.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 15 [00:00:34.000] Files (2) +Info 4 [00:00:23.000] FileWatcher:: Added:: WatchInfo: /User/userName/Projects/I/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 5 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /User/userName/Projects/I/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 6 [00:00:25.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 7 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 8 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/I/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 9 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/I/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 10 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/I/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 11 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/I/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 12 [00:00:31.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 13 [00:00:32.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 14 [00:00:33.000] Files (2) /a/lib/lib.d.ts /User/userName/Projects/I/foo.ts @@ -56,14 +55,14 @@ Info 15 [00:00:34.000] Files (2) foo.ts Root file specified for compilation -Info 16 [00:00:35.000] ----------------------------------------------- -Info 17 [00:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 17 [00:00:37.000] Files (2) +Info 15 [00:00:34.000] ----------------------------------------------- +Info 16 [00:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 16 [00:00:36.000] Files (2) -Info 17 [00:00:38.000] ----------------------------------------------- -Info 17 [00:00:39.000] Open files: -Info 17 [00:00:40.000] FileName: /User/userName/Projects/I/foo.ts ProjectRootPath: /User/userName/Projects/I -Info 17 [00:00:41.000] Projects: /dev/null/inferredProject1* +Info 16 [00:00:37.000] ----------------------------------------------- +Info 16 [00:00:38.000] Open files: +Info 16 [00:00:39.000] FileName: /User/userName/Projects/I/foo.ts ProjectRootPath: /User/userName/Projects/I +Info 16 [00:00:40.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -82,7 +81,7 @@ FsWatches:: FsWatchesRecursive:: -Info 17 [00:00:42.000] response: +Info 16 [00:00:41.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/watchEnvironment/project-with-unicode-file-names.js b/tests/baselines/reference/tsserver/watchEnvironment/project-with-unicode-file-names.js index 38599daddfe2a..26a47b7bbf744 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/project-with-unicode-file-names.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/project-with-unicode-file-names.js @@ -35,18 +35,17 @@ FsWatchesRecursive:: Info 2 [00:00:21.000] Search path: /User/userName/Projects/Ä° Info 3 [00:00:22.000] For info: /User/userName/Projects/Ä°/foo.ts :: No config files found. -Info 4 [00:00:23.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 5 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /User/userName/Projects/Ä°/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 6 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /User/userName/Projects/Ä°/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 7 [00:00:26.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 8 [00:00:27.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 9 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/Ä°/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 10 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/Ä°/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations -Info 11 [00:00:30.000] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/Ä°/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 12 [00:00:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/Ä°/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 13 [00:00:32.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 14 [00:00:33.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 15 [00:00:34.000] Files (2) +Info 4 [00:00:23.000] FileWatcher:: Added:: WatchInfo: /User/userName/Projects/Ä°/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 5 [00:00:24.000] FileWatcher:: Added:: WatchInfo: /User/userName/Projects/Ä°/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 6 [00:00:25.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 7 [00:00:26.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 8 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/Ä°/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 9 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/Ä°/node_modules 1 undefined Project: /dev/null/inferredProject1* WatchType: Failed Lookup Locations +Info 10 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/Ä°/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 11 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /User/userName/Projects/Ä°/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 12 [00:00:31.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 13 [00:00:32.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 14 [00:00:33.000] Files (2) /a/lib/lib.d.ts /User/userName/Projects/Ä°/foo.ts @@ -56,14 +55,14 @@ Info 15 [00:00:34.000] Files (2) foo.ts Root file specified for compilation -Info 16 [00:00:35.000] ----------------------------------------------- -Info 17 [00:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 17 [00:00:37.000] Files (2) +Info 15 [00:00:34.000] ----------------------------------------------- +Info 16 [00:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 16 [00:00:36.000] Files (2) -Info 17 [00:00:38.000] ----------------------------------------------- -Info 17 [00:00:39.000] Open files: -Info 17 [00:00:40.000] FileName: /User/userName/Projects/Ä°/foo.ts ProjectRootPath: /User/userName/Projects/Ä° -Info 17 [00:00:41.000] Projects: /dev/null/inferredProject1* +Info 16 [00:00:37.000] ----------------------------------------------- +Info 16 [00:00:38.000] Open files: +Info 16 [00:00:39.000] FileName: /User/userName/Projects/Ä°/foo.ts ProjectRootPath: /User/userName/Projects/Ä° +Info 16 [00:00:40.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -82,7 +81,7 @@ FsWatches:: FsWatchesRecursive:: -Info 17 [00:00:42.000] response: +Info 16 [00:00:41.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/watchEnvironment/recursive-directory-does-not-watch-files-starting-with-dot-in-node_modules.js b/tests/baselines/reference/tsserver/watchEnvironment/recursive-directory-does-not-watch-files-starting-with-dot-in-node_modules.js index 7496ccb7c9b3d..a28c268c45617 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/recursive-directory-does-not-watch-files-starting-with-dot-in-node_modules.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/recursive-directory-does-not-watch-files-starting-with-dot-in-node_modules.js @@ -56,19 +56,18 @@ Info 6 [00:00:31.000] Config: /a/username/project/tsconfig.json : { } Info 7 [00:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project 1 undefined Config: /a/username/project/tsconfig.json WatchType: Wild card directory Info 8 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project 1 undefined Config: /a/username/project/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:34.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /a/username/project/src/file1.ts 500 undefined WatchType: Closed Script info -Info 11 [00:00:36.000] Starting updateGraphWorker: Project: /a/username/project/tsconfig.json -Info 12 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project/src 1 undefined Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project/src 1 undefined Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project/node_modules 1 undefined Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project/node_modules 1 undefined Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations -Info 17 [00:00:42.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project/node_modules/@types 1 undefined Project: /a/username/project/tsconfig.json WatchType: Type roots -Info 18 [00:00:43.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project/node_modules/@types 1 undefined Project: /a/username/project/tsconfig.json WatchType: Type roots -Info 19 [00:00:44.000] Finishing updateGraphWorker: Project: /a/username/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:00:45.000] Project '/a/username/project/tsconfig.json' (Configured) -Info 21 [00:00:46.000] Files (3) +Info 9 [00:00:34.000] FileWatcher:: Added:: WatchInfo: /a/username/project/src/file1.ts 500 undefined WatchType: Closed Script info +Info 10 [00:00:35.000] Starting updateGraphWorker: Project: /a/username/project/tsconfig.json +Info 11 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project/src 1 undefined Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project/src 1 undefined Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:39.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project/node_modules 1 undefined Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:40.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project/node_modules 1 undefined Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations +Info 16 [00:00:41.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project/node_modules/@types 1 undefined Project: /a/username/project/tsconfig.json WatchType: Type roots +Info 17 [00:00:42.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project/node_modules/@types 1 undefined Project: /a/username/project/tsconfig.json WatchType: Type roots +Info 18 [00:00:43.000] Finishing updateGraphWorker: Project: /a/username/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:44.000] Project '/a/username/project/tsconfig.json' (Configured) +Info 20 [00:00:45.000] Files (3) /a/lib/lib.d.ts /a/username/project/src/file1.ts /a/username/project/src/index.ts @@ -81,14 +80,14 @@ Info 21 [00:00:46.000] Files (3) src/index.ts Matched by default include pattern '**/*' -Info 22 [00:00:47.000] ----------------------------------------------- -Info 23 [00:00:48.000] Project '/a/username/project/tsconfig.json' (Configured) -Info 23 [00:00:49.000] Files (3) +Info 21 [00:00:46.000] ----------------------------------------------- +Info 22 [00:00:47.000] Project '/a/username/project/tsconfig.json' (Configured) +Info 22 [00:00:48.000] Files (3) -Info 23 [00:00:50.000] ----------------------------------------------- -Info 23 [00:00:51.000] Open files: -Info 23 [00:00:52.000] FileName: /a/username/project/src/index.ts ProjectRootPath: undefined -Info 23 [00:00:53.000] Projects: /a/username/project/tsconfig.json +Info 22 [00:00:49.000] ----------------------------------------------- +Info 22 [00:00:50.000] Open files: +Info 22 [00:00:51.000] FileName: /a/username/project/src/index.ts ProjectRootPath: undefined +Info 22 [00:00:52.000] Projects: /a/username/project/tsconfig.json After request PolledWatches:: @@ -111,7 +110,7 @@ FsWatches:: FsWatchesRecursive:: -Info 23 [00:00:54.000] response: +Info 22 [00:00:53.000] response: { "responseRequired": false } diff --git a/tests/baselines/reference/tsserver/watchEnvironment/uses-dynamic-polling-when-file-is-added-to-subfolder.js b/tests/baselines/reference/tsserver/watchEnvironment/uses-dynamic-polling-when-file-is-added-to-subfolder.js index 6e7cf97fb9886..ece45a25b610e 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/uses-dynamic-polling-when-file-is-added-to-subfolder.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/uses-dynamic-polling-when-file-is-added-to-subfolder.js @@ -58,17 +58,16 @@ Info 7 [00:00:28.000] FileWatcher:: Close:: WatchInfo: /a/username/project/ts Info 8 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /a/username/project/tsconfig.json 2000 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Config file Info 9 [00:00:30.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project 1 {"synchronousWatchDirectory":true} Config: /a/username/project/tsconfig.json WatchType: Wild card directory Info 10 [00:00:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project 1 {"synchronousWatchDirectory":true} Config: /a/username/project/tsconfig.json WatchType: Wild card directory -Info 11 [00:00:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 12 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/username/project/src/file1.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:34.000] Starting updateGraphWorker: Project: /a/username/project/tsconfig.json -Info 14 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project/node_modules/@types 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Type roots -Info 18 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project/node_modules/@types 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Type roots -Info 19 [00:00:40.000] Finishing updateGraphWorker: Project: /a/username/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:00:41.000] Project '/a/username/project/tsconfig.json' (Configured) -Info 21 [00:00:42.000] Files (3) +Info 11 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /a/username/project/src/file1.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:33.000] Starting updateGraphWorker: Project: /a/username/project/tsconfig.json +Info 13 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project/node_modules/@types 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Type roots +Info 17 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project/node_modules/@types 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Type roots +Info 18 [00:00:39.000] Finishing updateGraphWorker: Project: /a/username/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:40.000] Project '/a/username/project/tsconfig.json' (Configured) +Info 20 [00:00:41.000] Files (3) /a/lib/lib.d.ts /a/username/project/src/file1.ts /a/username/project/src/index.ts @@ -82,14 +81,14 @@ Info 21 [00:00:42.000] Files (3) Matched by default include pattern '**/*' Imported via "./" from file 'src/index.ts' -Info 22 [00:00:43.000] ----------------------------------------------- -Info 23 [00:00:44.000] Project '/a/username/project/tsconfig.json' (Configured) -Info 23 [00:00:45.000] Files (3) +Info 21 [00:00:42.000] ----------------------------------------------- +Info 22 [00:00:43.000] Project '/a/username/project/tsconfig.json' (Configured) +Info 22 [00:00:44.000] Files (3) -Info 23 [00:00:46.000] ----------------------------------------------- -Info 23 [00:00:47.000] Open files: -Info 23 [00:00:48.000] FileName: /a/username/project/src/index.ts ProjectRootPath: undefined -Info 23 [00:00:49.000] Projects: /a/username/project/tsconfig.json +Info 22 [00:00:45.000] ----------------------------------------------- +Info 22 [00:00:46.000] Open files: +Info 22 [00:00:47.000] FileName: /a/username/project/src/index.ts ProjectRootPath: undefined +Info 22 [00:00:48.000] Projects: /a/username/project/tsconfig.json After request PolledWatches:: @@ -104,11 +103,11 @@ FsWatches:: FsWatchesRecursive:: -Info 23 [00:00:50.000] response: +Info 22 [00:00:49.000] response: { "responseRequired": false } -Info 24 [00:00:51.000] request: +Info 23 [00:00:50.000] request: { "command": "completionInfo", "arguments": { @@ -147,7 +146,7 @@ FsWatches:: FsWatchesRecursive:: -Info 25 [00:00:52.000] response: +Info 24 [00:00:51.000] response: { "response": { "isGlobalCompletion": false, @@ -181,13 +180,13 @@ FsWatches:: FsWatchesRecursive:: -Info 26 [00:00:55.000] DirectoryWatcher:: Triggered with /a/username/project/src :: WatchInfo: /a/username/project 1 {"synchronousWatchDirectory":true} Config: /a/username/project/tsconfig.json WatchType: Wild card directory -Info 27 [00:00:56.000] Scheduled: /a/username/project/tsconfig.json -Info 28 [00:00:57.000] Scheduled: *ensureProjectForOpenFiles* -Info 29 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/username/project/src :: WatchInfo: /a/username/project 1 {"synchronousWatchDirectory":true} Config: /a/username/project/tsconfig.json WatchType: Wild card directory -Info 30 [00:00:59.000] DirectoryWatcher:: Triggered with /a/username/project/src :: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations -Info 31 [00:01:00.000] Scheduled: /a/username/project/tsconfig.jsonFailedLookupInvalidation -Info 32 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/username/project/src :: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:00:54.000] DirectoryWatcher:: Triggered with /a/username/project/src :: WatchInfo: /a/username/project 1 {"synchronousWatchDirectory":true} Config: /a/username/project/tsconfig.json WatchType: Wild card directory +Info 26 [00:00:55.000] Scheduled: /a/username/project/tsconfig.json +Info 27 [00:00:56.000] Scheduled: *ensureProjectForOpenFiles* +Info 28 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/username/project/src :: WatchInfo: /a/username/project 1 {"synchronousWatchDirectory":true} Config: /a/username/project/tsconfig.json WatchType: Wild card directory +Info 29 [00:00:58.000] DirectoryWatcher:: Triggered with /a/username/project/src :: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations +Info 30 [00:00:59.000] Scheduled: /a/username/project/tsconfig.jsonFailedLookupInvalidation +Info 31 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/username/project/src :: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations After running timeout callbacks PolledWatches:: @@ -202,7 +201,7 @@ FsWatches:: FsWatchesRecursive:: -Info 33 [00:01:02.000] request: +Info 32 [00:01:01.000] request: { "command": "completionInfo", "arguments": { @@ -227,12 +226,12 @@ FsWatches:: FsWatchesRecursive:: -Info 34 [00:01:03.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 35 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /a/username/project/src/file2.ts 500 undefined WatchType: Closed Script info -Info 36 [00:01:05.000] Starting updateGraphWorker: Project: /a/username/project/tsconfig.json -Info 37 [00:01:06.000] Finishing updateGraphWorker: Project: /a/username/project/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:07.000] Project '/a/username/project/tsconfig.json' (Configured) -Info 39 [00:01:08.000] Files (4) +Info 33 [00:01:02.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 34 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/username/project/src/file2.ts 500 undefined WatchType: Closed Script info +Info 35 [00:01:04.000] Starting updateGraphWorker: Project: /a/username/project/tsconfig.json +Info 36 [00:01:05.000] Finishing updateGraphWorker: Project: /a/username/project/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 37 [00:01:06.000] Project '/a/username/project/tsconfig.json' (Configured) +Info 38 [00:01:07.000] Files (4) /a/lib/lib.d.ts /a/username/project/src/file1.ts /a/username/project/src/index.ts @@ -249,7 +248,7 @@ Info 39 [00:01:08.000] Files (4) src/file2.ts Matched by default include pattern '**/*' -Info 40 [00:01:09.000] ----------------------------------------------- +Info 39 [00:01:08.000] ----------------------------------------------- After request PolledWatches:: @@ -266,7 +265,7 @@ FsWatches:: FsWatchesRecursive:: -Info 41 [00:01:10.000] response: +Info 40 [00:01:09.000] response: { "response": { "isGlobalCompletion": false, diff --git a/tests/baselines/reference/tsserver/watchEnvironment/uses-non-recursive-watchDirectory-when-file-is-added-to-subfolder.js b/tests/baselines/reference/tsserver/watchEnvironment/uses-non-recursive-watchDirectory-when-file-is-added-to-subfolder.js index 33db32b60e869..9104232e052fb 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/uses-non-recursive-watchDirectory-when-file-is-added-to-subfolder.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/uses-non-recursive-watchDirectory-when-file-is-added-to-subfolder.js @@ -58,17 +58,16 @@ Info 7 [00:00:28.000] FileWatcher:: Close:: WatchInfo: /a/username/project/ts Info 8 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /a/username/project/tsconfig.json 2000 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Config file Info 9 [00:00:30.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project 1 {"synchronousWatchDirectory":true} Config: /a/username/project/tsconfig.json WatchType: Wild card directory Info 10 [00:00:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project 1 {"synchronousWatchDirectory":true} Config: /a/username/project/tsconfig.json WatchType: Wild card directory -Info 11 [00:00:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 12 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/username/project/src/file1.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:34.000] Starting updateGraphWorker: Project: /a/username/project/tsconfig.json -Info 14 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project/node_modules/@types 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Type roots -Info 18 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project/node_modules/@types 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Type roots -Info 19 [00:00:40.000] Finishing updateGraphWorker: Project: /a/username/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:00:41.000] Project '/a/username/project/tsconfig.json' (Configured) -Info 21 [00:00:42.000] Files (3) +Info 11 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /a/username/project/src/file1.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:33.000] Starting updateGraphWorker: Project: /a/username/project/tsconfig.json +Info 13 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project/node_modules/@types 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Type roots +Info 17 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project/node_modules/@types 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Type roots +Info 18 [00:00:39.000] Finishing updateGraphWorker: Project: /a/username/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:40.000] Project '/a/username/project/tsconfig.json' (Configured) +Info 20 [00:00:41.000] Files (3) /a/lib/lib.d.ts /a/username/project/src/file1.ts /a/username/project/src/index.ts @@ -82,14 +81,14 @@ Info 21 [00:00:42.000] Files (3) Matched by default include pattern '**/*' Imported via "./" from file 'src/index.ts' -Info 22 [00:00:43.000] ----------------------------------------------- -Info 23 [00:00:44.000] Project '/a/username/project/tsconfig.json' (Configured) -Info 23 [00:00:45.000] Files (3) +Info 21 [00:00:42.000] ----------------------------------------------- +Info 22 [00:00:43.000] Project '/a/username/project/tsconfig.json' (Configured) +Info 22 [00:00:44.000] Files (3) -Info 23 [00:00:46.000] ----------------------------------------------- -Info 23 [00:00:47.000] Open files: -Info 23 [00:00:48.000] FileName: /a/username/project/src/index.ts ProjectRootPath: undefined -Info 23 [00:00:49.000] Projects: /a/username/project/tsconfig.json +Info 22 [00:00:45.000] ----------------------------------------------- +Info 22 [00:00:46.000] Open files: +Info 22 [00:00:47.000] FileName: /a/username/project/src/index.ts ProjectRootPath: undefined +Info 22 [00:00:48.000] Projects: /a/username/project/tsconfig.json After request PolledWatches:: @@ -110,11 +109,11 @@ FsWatches:: FsWatchesRecursive:: -Info 23 [00:00:50.000] response: +Info 22 [00:00:49.000] response: { "responseRequired": false } -Info 24 [00:00:51.000] request: +Info 23 [00:00:50.000] request: { "command": "completionInfo", "arguments": { @@ -165,7 +164,7 @@ FsWatches:: FsWatchesRecursive:: -Info 25 [00:00:52.000] response: +Info 24 [00:00:51.000] response: { "response": { "isGlobalCompletion": false, @@ -182,13 +181,13 @@ Info 25 [00:00:52.000] response: }, "responseRequired": true } -Info 26 [00:00:55.000] DirectoryWatcher:: Triggered with /a/username/project/src/file2.ts :: WatchInfo: /a/username/project 1 {"synchronousWatchDirectory":true} Config: /a/username/project/tsconfig.json WatchType: Wild card directory -Info 27 [00:00:56.000] Scheduled: /a/username/project/tsconfig.json -Info 28 [00:00:57.000] Scheduled: *ensureProjectForOpenFiles* -Info 29 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/username/project/src/file2.ts :: WatchInfo: /a/username/project 1 {"synchronousWatchDirectory":true} Config: /a/username/project/tsconfig.json WatchType: Wild card directory -Info 30 [00:00:59.000] DirectoryWatcher:: Triggered with /a/username/project/src/file2.ts :: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations -Info 31 [00:01:00.000] Scheduled: /a/username/project/tsconfig.jsonFailedLookupInvalidation -Info 32 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/username/project/src/file2.ts :: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:00:54.000] DirectoryWatcher:: Triggered with /a/username/project/src/file2.ts :: WatchInfo: /a/username/project 1 {"synchronousWatchDirectory":true} Config: /a/username/project/tsconfig.json WatchType: Wild card directory +Info 26 [00:00:55.000] Scheduled: /a/username/project/tsconfig.json +Info 27 [00:00:56.000] Scheduled: *ensureProjectForOpenFiles* +Info 28 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/username/project/src/file2.ts :: WatchInfo: /a/username/project 1 {"synchronousWatchDirectory":true} Config: /a/username/project/tsconfig.json WatchType: Wild card directory +Info 29 [00:00:58.000] DirectoryWatcher:: Triggered with /a/username/project/src/file2.ts :: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations +Info 30 [00:00:59.000] Scheduled: /a/username/project/tsconfig.jsonFailedLookupInvalidation +Info 31 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/username/project/src/file2.ts :: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations Before running timeout callbacks //// [/a/username/project/src/file2.ts] @@ -212,12 +211,12 @@ FsWatches:: FsWatchesRecursive:: -Info 33 [00:01:02.000] Running: /a/username/project/tsconfig.json -Info 34 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/username/project/src/file2.ts 500 undefined WatchType: Closed Script info -Info 35 [00:01:04.000] Starting updateGraphWorker: Project: /a/username/project/tsconfig.json -Info 36 [00:01:05.000] Finishing updateGraphWorker: Project: /a/username/project/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 37 [00:01:06.000] Project '/a/username/project/tsconfig.json' (Configured) -Info 38 [00:01:07.000] Files (4) +Info 32 [00:01:01.000] Running: /a/username/project/tsconfig.json +Info 33 [00:01:02.000] FileWatcher:: Added:: WatchInfo: /a/username/project/src/file2.ts 500 undefined WatchType: Closed Script info +Info 34 [00:01:03.000] Starting updateGraphWorker: Project: /a/username/project/tsconfig.json +Info 35 [00:01:04.000] Finishing updateGraphWorker: Project: /a/username/project/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 36 [00:01:05.000] Project '/a/username/project/tsconfig.json' (Configured) +Info 37 [00:01:06.000] Files (4) /a/lib/lib.d.ts /a/username/project/src/file1.ts /a/username/project/src/index.ts @@ -234,24 +233,24 @@ Info 38 [00:01:07.000] Files (4) src/file2.ts Matched by default include pattern '**/*' -Info 39 [00:01:08.000] ----------------------------------------------- -Info 40 [00:01:09.000] Running: *ensureProjectForOpenFiles* -Info 41 [00:01:10.000] Before ensureProjectForOpenFiles: -Info 42 [00:01:11.000] Project '/a/username/project/tsconfig.json' (Configured) -Info 42 [00:01:12.000] Files (4) - -Info 42 [00:01:13.000] ----------------------------------------------- -Info 42 [00:01:14.000] Open files: -Info 42 [00:01:15.000] FileName: /a/username/project/src/index.ts ProjectRootPath: undefined -Info 42 [00:01:16.000] Projects: /a/username/project/tsconfig.json -Info 42 [00:01:17.000] After ensureProjectForOpenFiles: -Info 43 [00:01:18.000] Project '/a/username/project/tsconfig.json' (Configured) -Info 43 [00:01:19.000] Files (4) - -Info 43 [00:01:20.000] ----------------------------------------------- -Info 43 [00:01:21.000] Open files: -Info 43 [00:01:22.000] FileName: /a/username/project/src/index.ts ProjectRootPath: undefined -Info 43 [00:01:23.000] Projects: /a/username/project/tsconfig.json +Info 38 [00:01:07.000] ----------------------------------------------- +Info 39 [00:01:08.000] Running: *ensureProjectForOpenFiles* +Info 40 [00:01:09.000] Before ensureProjectForOpenFiles: +Info 41 [00:01:10.000] Project '/a/username/project/tsconfig.json' (Configured) +Info 41 [00:01:11.000] Files (4) + +Info 41 [00:01:12.000] ----------------------------------------------- +Info 41 [00:01:13.000] Open files: +Info 41 [00:01:14.000] FileName: /a/username/project/src/index.ts ProjectRootPath: undefined +Info 41 [00:01:15.000] Projects: /a/username/project/tsconfig.json +Info 41 [00:01:16.000] After ensureProjectForOpenFiles: +Info 42 [00:01:17.000] Project '/a/username/project/tsconfig.json' (Configured) +Info 42 [00:01:18.000] Files (4) + +Info 42 [00:01:19.000] ----------------------------------------------- +Info 42 [00:01:20.000] Open files: +Info 42 [00:01:21.000] FileName: /a/username/project/src/index.ts ProjectRootPath: undefined +Info 42 [00:01:22.000] Projects: /a/username/project/tsconfig.json After running timeout callbacks PolledWatches:: @@ -274,7 +273,7 @@ FsWatches:: FsWatchesRecursive:: -Info 43 [00:01:24.000] request: +Info 42 [00:01:23.000] request: { "command": "completionInfo", "arguments": { @@ -329,7 +328,7 @@ FsWatches:: FsWatchesRecursive:: -Info 44 [00:01:25.000] response: +Info 43 [00:01:24.000] response: { "response": { "isGlobalCompletion": false, diff --git a/tests/baselines/reference/tsserver/watchEnvironment/uses-watchFile-when-file-is-added-to-subfolder.js b/tests/baselines/reference/tsserver/watchEnvironment/uses-watchFile-when-file-is-added-to-subfolder.js index 8af2e808a9e41..246a7ec047e5c 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/uses-watchFile-when-file-is-added-to-subfolder.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/uses-watchFile-when-file-is-added-to-subfolder.js @@ -58,17 +58,16 @@ Info 7 [00:00:28.000] FileWatcher:: Close:: WatchInfo: /a/username/project/ts Info 8 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /a/username/project/tsconfig.json 2000 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Config file Info 9 [00:00:30.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project 1 {"synchronousWatchDirectory":true} Config: /a/username/project/tsconfig.json WatchType: Wild card directory Info 10 [00:00:31.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project 1 {"synchronousWatchDirectory":true} Config: /a/username/project/tsconfig.json WatchType: Wild card directory -Info 11 [00:00:32.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 12 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/username/project/src/file1.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:34.000] Starting updateGraphWorker: Project: /a/username/project/tsconfig.json -Info 14 [00:00:35.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:36.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project/node_modules/@types 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Type roots -Info 18 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project/node_modules/@types 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Type roots -Info 19 [00:00:40.000] Finishing updateGraphWorker: Project: /a/username/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:00:41.000] Project '/a/username/project/tsconfig.json' (Configured) -Info 21 [00:00:42.000] Files (3) +Info 11 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /a/username/project/src/file1.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:33.000] Starting updateGraphWorker: Project: /a/username/project/tsconfig.json +Info 13 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /a/username/project/node_modules/@types 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Type roots +Info 17 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/username/project/node_modules/@types 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Type roots +Info 18 [00:00:39.000] Finishing updateGraphWorker: Project: /a/username/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:40.000] Project '/a/username/project/tsconfig.json' (Configured) +Info 20 [00:00:41.000] Files (3) /a/lib/lib.d.ts /a/username/project/src/file1.ts /a/username/project/src/index.ts @@ -82,14 +81,14 @@ Info 21 [00:00:42.000] Files (3) Matched by default include pattern '**/*' Imported via "./" from file 'src/index.ts' -Info 22 [00:00:43.000] ----------------------------------------------- -Info 23 [00:00:44.000] Project '/a/username/project/tsconfig.json' (Configured) -Info 23 [00:00:45.000] Files (3) +Info 21 [00:00:42.000] ----------------------------------------------- +Info 22 [00:00:43.000] Project '/a/username/project/tsconfig.json' (Configured) +Info 22 [00:00:44.000] Files (3) -Info 23 [00:00:46.000] ----------------------------------------------- -Info 23 [00:00:47.000] Open files: -Info 23 [00:00:48.000] FileName: /a/username/project/src/index.ts ProjectRootPath: undefined -Info 23 [00:00:49.000] Projects: /a/username/project/tsconfig.json +Info 22 [00:00:45.000] ----------------------------------------------- +Info 22 [00:00:46.000] Open files: +Info 22 [00:00:47.000] FileName: /a/username/project/src/index.ts ProjectRootPath: undefined +Info 22 [00:00:48.000] Projects: /a/username/project/tsconfig.json After request PolledWatches:: @@ -110,11 +109,11 @@ FsWatches:: FsWatchesRecursive:: -Info 23 [00:00:50.000] response: +Info 22 [00:00:49.000] response: { "responseRequired": false } -Info 24 [00:00:51.000] request: +Info 23 [00:00:50.000] request: { "command": "completionInfo", "arguments": { @@ -165,7 +164,7 @@ FsWatches:: FsWatchesRecursive:: -Info 25 [00:00:52.000] response: +Info 24 [00:00:51.000] response: { "response": { "isGlobalCompletion": false, @@ -182,13 +181,13 @@ Info 25 [00:00:52.000] response: }, "responseRequired": true } -Info 26 [00:00:55.000] DirectoryWatcher:: Triggered with /a/username/project/src :: WatchInfo: /a/username/project 1 {"synchronousWatchDirectory":true} Config: /a/username/project/tsconfig.json WatchType: Wild card directory -Info 27 [00:00:56.000] Scheduled: /a/username/project/tsconfig.json -Info 28 [00:00:57.000] Scheduled: *ensureProjectForOpenFiles* -Info 29 [00:00:58.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/username/project/src :: WatchInfo: /a/username/project 1 {"synchronousWatchDirectory":true} Config: /a/username/project/tsconfig.json WatchType: Wild card directory -Info 30 [00:00:59.000] DirectoryWatcher:: Triggered with /a/username/project/src :: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations -Info 31 [00:01:00.000] Scheduled: /a/username/project/tsconfig.jsonFailedLookupInvalidation -Info 32 [00:01:01.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/username/project/src :: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations +Info 25 [00:00:54.000] DirectoryWatcher:: Triggered with /a/username/project/src :: WatchInfo: /a/username/project 1 {"synchronousWatchDirectory":true} Config: /a/username/project/tsconfig.json WatchType: Wild card directory +Info 26 [00:00:55.000] Scheduled: /a/username/project/tsconfig.json +Info 27 [00:00:56.000] Scheduled: *ensureProjectForOpenFiles* +Info 28 [00:00:57.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/username/project/src :: WatchInfo: /a/username/project 1 {"synchronousWatchDirectory":true} Config: /a/username/project/tsconfig.json WatchType: Wild card directory +Info 29 [00:00:58.000] DirectoryWatcher:: Triggered with /a/username/project/src :: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations +Info 30 [00:00:59.000] Scheduled: /a/username/project/tsconfig.jsonFailedLookupInvalidation +Info 31 [00:01:00.000] Elapsed:: *ms DirectoryWatcher:: Triggered with /a/username/project/src :: WatchInfo: /a/username/project/src 1 {"synchronousWatchDirectory":true} Project: /a/username/project/tsconfig.json WatchType: Failed Lookup Locations Before running timeout callbacks //// [/a/username/project/src/file2.ts] @@ -212,13 +211,13 @@ FsWatches:: FsWatchesRecursive:: -Info 33 [00:01:02.000] Running: /a/username/project/tsconfig.json -Info 34 [00:01:03.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one -Info 35 [00:01:04.000] FileWatcher:: Added:: WatchInfo: /a/username/project/src/file2.ts 500 undefined WatchType: Closed Script info -Info 36 [00:01:05.000] Starting updateGraphWorker: Project: /a/username/project/tsconfig.json -Info 37 [00:01:06.000] Finishing updateGraphWorker: Project: /a/username/project/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 38 [00:01:07.000] Project '/a/username/project/tsconfig.json' (Configured) -Info 39 [00:01:08.000] Files (4) +Info 32 [00:01:01.000] Running: /a/username/project/tsconfig.json +Info 33 [00:01:02.000] Scheduled: *ensureProjectForOpenFiles*, Cancelled earlier one +Info 34 [00:01:03.000] FileWatcher:: Added:: WatchInfo: /a/username/project/src/file2.ts 500 undefined WatchType: Closed Script info +Info 35 [00:01:04.000] Starting updateGraphWorker: Project: /a/username/project/tsconfig.json +Info 36 [00:01:05.000] Finishing updateGraphWorker: Project: /a/username/project/tsconfig.json Version: 2 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 37 [00:01:06.000] Project '/a/username/project/tsconfig.json' (Configured) +Info 38 [00:01:07.000] Files (4) /a/lib/lib.d.ts /a/username/project/src/file1.ts /a/username/project/src/index.ts @@ -235,7 +234,7 @@ Info 39 [00:01:08.000] Files (4) src/file2.ts Matched by default include pattern '**/*' -Info 40 [00:01:09.000] ----------------------------------------------- +Info 39 [00:01:08.000] ----------------------------------------------- After running timeout callbacks PolledWatches:: @@ -258,7 +257,7 @@ FsWatches:: FsWatchesRecursive:: -Info 41 [00:01:10.000] request: +Info 40 [00:01:09.000] request: { "command": "completionInfo", "arguments": { @@ -313,7 +312,7 @@ FsWatches:: FsWatchesRecursive:: -Info 42 [00:01:11.000] response: +Info 41 [00:01:10.000] response: { "response": { "isGlobalCompletion": false, diff --git a/tests/baselines/reference/tsserver/watchEnvironment/watching-files-with-network-style-paths.js b/tests/baselines/reference/tsserver/watchEnvironment/watching-files-with-network-style-paths.js index b1e9a7dbd5e74..69374c43b26f8 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/watching-files-with-network-style-paths.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/watching-files-with-network-style-paths.js @@ -35,16 +35,15 @@ FsWatchesRecursive:: Info 3 [00:00:18.000] Search path: c:/myprojects/project Info 4 [00:00:19.000] For info: c:/myprojects/project/x.js :: No config files found. -Info 5 [00:00:20.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 6 [00:00:21.000] FileWatcher:: Added:: WatchInfo: c:/myprojects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 7 [00:00:22.000] FileWatcher:: Added:: WatchInfo: c:/myprojects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 8 [00:00:23.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 9 [00:00:24.000] FileWatcher:: Added:: WatchInfo: c:/a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 10 [00:00:25.000] DirectoryWatcher:: Added:: WatchInfo: c:/myprojects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 11 [00:00:26.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/myprojects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 12 [00:00:27.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 13 [00:00:28.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 14 [00:00:29.000] Files (2) +Info 5 [00:00:20.000] FileWatcher:: Added:: WatchInfo: c:/myprojects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 6 [00:00:21.000] FileWatcher:: Added:: WatchInfo: c:/myprojects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 7 [00:00:22.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 8 [00:00:23.000] FileWatcher:: Added:: WatchInfo: c:/a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 9 [00:00:24.000] DirectoryWatcher:: Added:: WatchInfo: c:/myprojects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 10 [00:00:25.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/myprojects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 11 [00:00:26.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 12 [00:00:27.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 13 [00:00:28.000] Files (2) c:/a/lib/lib.d.ts c:/myprojects/project/x.js @@ -54,14 +53,14 @@ Info 14 [00:00:29.000] Files (2) x.js Root file specified for compilation -Info 15 [00:00:30.000] ----------------------------------------------- -Info 16 [00:00:31.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 16 [00:00:32.000] Files (2) +Info 14 [00:00:29.000] ----------------------------------------------- +Info 15 [00:00:30.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 15 [00:00:31.000] Files (2) -Info 16 [00:00:33.000] ----------------------------------------------- -Info 16 [00:00:34.000] Open files: -Info 16 [00:00:35.000] FileName: c:/myprojects/project/x.js ProjectRootPath: undefined -Info 16 [00:00:36.000] Projects: /dev/null/inferredProject1* +Info 15 [00:00:32.000] ----------------------------------------------- +Info 15 [00:00:33.000] Open files: +Info 15 [00:00:34.000] FileName: c:/myprojects/project/x.js ProjectRootPath: undefined +Info 15 [00:00:35.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -82,13 +81,13 @@ c:/a/lib/lib.d.ts: FsWatchesRecursive:: -Info 16 [00:00:37.000] response: +Info 15 [00:00:36.000] response: { "responseRequired": false } -Info 17 [00:00:17.000] For files of style //vda1cs4850/myprojects/project/x.js -Info 18 [00:00:18.000] Provided types map file "//vda1cs4850/a/lib/typesMap.json" doesn't exist -Info 19 [00:00:19.000] request: +Info 16 [00:00:17.000] For files of style //vda1cs4850/myprojects/project/x.js +Info 17 [00:00:18.000] Provided types map file "//vda1cs4850/a/lib/typesMap.json" doesn't exist +Info 18 [00:00:19.000] request: { "seq": 0, "type": "request", @@ -121,18 +120,17 @@ FsWatches:: FsWatchesRecursive:: -Info 20 [00:00:20.000] Search path: //vda1cs4850/myprojects/project -Info 21 [00:00:21.000] For info: //vda1cs4850/myprojects/project/x.js :: No config files found. -Info 22 [00:00:22.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 23 [00:00:23.000] FileWatcher:: Added:: WatchInfo: //vda1cs4850/myprojects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 24 [00:00:24.000] FileWatcher:: Added:: WatchInfo: //vda1cs4850/myprojects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 25 [00:00:25.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 26 [00:00:26.000] FileWatcher:: Added:: WatchInfo: //vda1cs4850/a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 27 [00:00:27.000] DirectoryWatcher:: Added:: WatchInfo: //vda1cs4850/myprojects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 28 [00:00:28.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: //vda1cs4850/myprojects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 29 [00:00:29.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 30 [00:00:30.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 31 [00:00:31.000] Files (2) +Info 19 [00:00:20.000] Search path: //vda1cs4850/myprojects/project +Info 20 [00:00:21.000] For info: //vda1cs4850/myprojects/project/x.js :: No config files found. +Info 21 [00:00:22.000] FileWatcher:: Added:: WatchInfo: //vda1cs4850/myprojects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 22 [00:00:23.000] FileWatcher:: Added:: WatchInfo: //vda1cs4850/myprojects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 23 [00:00:24.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 24 [00:00:25.000] FileWatcher:: Added:: WatchInfo: //vda1cs4850/a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 25 [00:00:26.000] DirectoryWatcher:: Added:: WatchInfo: //vda1cs4850/myprojects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 26 [00:00:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: //vda1cs4850/myprojects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 27 [00:00:28.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 28 [00:00:29.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 29 [00:00:30.000] Files (2) //vda1cs4850/a/lib/lib.d.ts //vda1cs4850/myprojects/project/x.js @@ -142,14 +140,14 @@ Info 31 [00:00:31.000] Files (2) x.js Root file specified for compilation -Info 32 [00:00:32.000] ----------------------------------------------- -Info 33 [00:00:33.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 33 [00:00:34.000] Files (2) +Info 30 [00:00:31.000] ----------------------------------------------- +Info 31 [00:00:32.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 31 [00:00:33.000] Files (2) -Info 33 [00:00:35.000] ----------------------------------------------- -Info 33 [00:00:36.000] Open files: -Info 33 [00:00:37.000] FileName: //vda1cs4850/myprojects/project/x.js ProjectRootPath: undefined -Info 33 [00:00:38.000] Projects: /dev/null/inferredProject1* +Info 31 [00:00:34.000] ----------------------------------------------- +Info 31 [00:00:35.000] Open files: +Info 31 [00:00:36.000] FileName: //vda1cs4850/myprojects/project/x.js ProjectRootPath: undefined +Info 31 [00:00:37.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -170,13 +168,13 @@ FsWatches:: FsWatchesRecursive:: -Info 33 [00:00:39.000] response: +Info 31 [00:00:38.000] response: { "responseRequired": false } -Info 34 [00:00:19.000] For files of style //vda1cs4850/c$/myprojects/project/x.js -Info 35 [00:00:20.000] Provided types map file "//vda1cs4850/a/lib/typesMap.json" doesn't exist -Info 36 [00:00:21.000] request: +Info 32 [00:00:19.000] For files of style //vda1cs4850/c$/myprojects/project/x.js +Info 33 [00:00:20.000] Provided types map file "//vda1cs4850/a/lib/typesMap.json" doesn't exist +Info 34 [00:00:21.000] request: { "seq": 0, "type": "request", @@ -209,18 +207,17 @@ FsWatches:: FsWatchesRecursive:: -Info 37 [00:00:22.000] Search path: //vda1cs4850/c$/myprojects/project -Info 38 [00:00:23.000] For info: //vda1cs4850/c$/myprojects/project/x.js :: No config files found. -Info 39 [00:00:24.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 40 [00:00:25.000] FileWatcher:: Added:: WatchInfo: //vda1cs4850/c$/myprojects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 41 [00:00:26.000] FileWatcher:: Added:: WatchInfo: //vda1cs4850/c$/myprojects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 42 [00:00:27.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 43 [00:00:28.000] FileWatcher:: Added:: WatchInfo: //vda1cs4850/a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 44 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: //vda1cs4850/c$/myprojects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 45 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: //vda1cs4850/c$/myprojects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 46 [00:00:31.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 47 [00:00:32.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 48 [00:00:33.000] Files (2) +Info 35 [00:00:22.000] Search path: //vda1cs4850/c$/myprojects/project +Info 36 [00:00:23.000] For info: //vda1cs4850/c$/myprojects/project/x.js :: No config files found. +Info 37 [00:00:24.000] FileWatcher:: Added:: WatchInfo: //vda1cs4850/c$/myprojects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 38 [00:00:25.000] FileWatcher:: Added:: WatchInfo: //vda1cs4850/c$/myprojects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 39 [00:00:26.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 40 [00:00:27.000] FileWatcher:: Added:: WatchInfo: //vda1cs4850/a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 41 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: //vda1cs4850/c$/myprojects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 42 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: //vda1cs4850/c$/myprojects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 43 [00:00:30.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 44 [00:00:31.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 45 [00:00:32.000] Files (2) //vda1cs4850/a/lib/lib.d.ts //vda1cs4850/c$/myprojects/project/x.js @@ -230,14 +227,14 @@ Info 48 [00:00:33.000] Files (2) x.js Root file specified for compilation -Info 49 [00:00:34.000] ----------------------------------------------- -Info 50 [00:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 50 [00:00:36.000] Files (2) +Info 46 [00:00:33.000] ----------------------------------------------- +Info 47 [00:00:34.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 47 [00:00:35.000] Files (2) -Info 50 [00:00:37.000] ----------------------------------------------- -Info 50 [00:00:38.000] Open files: -Info 50 [00:00:39.000] FileName: //vda1cs4850/c$/myprojects/project/x.js ProjectRootPath: undefined -Info 50 [00:00:40.000] Projects: /dev/null/inferredProject1* +Info 47 [00:00:36.000] ----------------------------------------------- +Info 47 [00:00:37.000] Open files: +Info 47 [00:00:38.000] FileName: //vda1cs4850/c$/myprojects/project/x.js ProjectRootPath: undefined +Info 47 [00:00:39.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -258,13 +255,13 @@ FsWatches:: FsWatchesRecursive:: -Info 50 [00:00:41.000] response: +Info 47 [00:00:40.000] response: { "responseRequired": false } -Info 51 [00:00:19.000] For files of style c:/users/username/myprojects/project/x.js -Info 52 [00:00:20.000] Provided types map file "c:/a/lib/typesMap.json" doesn't exist -Info 53 [00:00:21.000] request: +Info 48 [00:00:19.000] For files of style c:/users/username/myprojects/project/x.js +Info 49 [00:00:20.000] Provided types map file "c:/a/lib/typesMap.json" doesn't exist +Info 50 [00:00:21.000] request: { "seq": 0, "type": "request", @@ -297,18 +294,17 @@ FsWatches:: FsWatchesRecursive:: -Info 54 [00:00:22.000] Search path: c:/users/username/myprojects/project -Info 55 [00:00:23.000] For info: c:/users/username/myprojects/project/x.js :: No config files found. -Info 56 [00:00:24.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 57 [00:00:25.000] FileWatcher:: Added:: WatchInfo: c:/users/username/myprojects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 58 [00:00:26.000] FileWatcher:: Added:: WatchInfo: c:/users/username/myprojects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 59 [00:00:27.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 60 [00:00:28.000] FileWatcher:: Added:: WatchInfo: c:/a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 61 [00:00:29.000] DirectoryWatcher:: Added:: WatchInfo: c:/users/username/myprojects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 62 [00:00:30.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/users/username/myprojects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 63 [00:00:31.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 64 [00:00:32.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 65 [00:00:33.000] Files (2) +Info 51 [00:00:22.000] Search path: c:/users/username/myprojects/project +Info 52 [00:00:23.000] For info: c:/users/username/myprojects/project/x.js :: No config files found. +Info 53 [00:00:24.000] FileWatcher:: Added:: WatchInfo: c:/users/username/myprojects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 54 [00:00:25.000] FileWatcher:: Added:: WatchInfo: c:/users/username/myprojects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 55 [00:00:26.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 56 [00:00:27.000] FileWatcher:: Added:: WatchInfo: c:/a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 57 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: c:/users/username/myprojects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 58 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: c:/users/username/myprojects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 59 [00:00:30.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 60 [00:00:31.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 61 [00:00:32.000] Files (2) c:/a/lib/lib.d.ts c:/users/username/myprojects/project/x.js @@ -318,14 +314,14 @@ Info 65 [00:00:33.000] Files (2) x.js Root file specified for compilation -Info 66 [00:00:34.000] ----------------------------------------------- -Info 67 [00:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 67 [00:00:36.000] Files (2) +Info 62 [00:00:33.000] ----------------------------------------------- +Info 63 [00:00:34.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 63 [00:00:35.000] Files (2) -Info 67 [00:00:37.000] ----------------------------------------------- -Info 67 [00:00:38.000] Open files: -Info 67 [00:00:39.000] FileName: c:/users/username/myprojects/project/x.js ProjectRootPath: undefined -Info 67 [00:00:40.000] Projects: /dev/null/inferredProject1* +Info 63 [00:00:36.000] ----------------------------------------------- +Info 63 [00:00:37.000] Open files: +Info 63 [00:00:38.000] FileName: c:/users/username/myprojects/project/x.js ProjectRootPath: undefined +Info 63 [00:00:39.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -346,13 +342,13 @@ c:/a/lib/lib.d.ts: FsWatchesRecursive:: -Info 67 [00:00:41.000] response: +Info 63 [00:00:40.000] response: { "responseRequired": false } -Info 68 [00:00:23.000] For files of style //vda1cs4850/c$/users/username/myprojects/project/x.js -Info 69 [00:00:24.000] Provided types map file "//vda1cs4850/a/lib/typesMap.json" doesn't exist -Info 70 [00:00:25.000] request: +Info 64 [00:00:23.000] For files of style //vda1cs4850/c$/users/username/myprojects/project/x.js +Info 65 [00:00:24.000] Provided types map file "//vda1cs4850/a/lib/typesMap.json" doesn't exist +Info 66 [00:00:25.000] request: { "seq": 0, "type": "request", @@ -385,18 +381,17 @@ FsWatches:: FsWatchesRecursive:: -Info 71 [00:00:26.000] Search path: //vda1cs4850/c$/users/username/myprojects/project -Info 72 [00:00:27.000] For info: //vda1cs4850/c$/users/username/myprojects/project/x.js :: No config files found. -Info 73 [00:00:28.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 74 [00:00:29.000] FileWatcher:: Added:: WatchInfo: //vda1cs4850/c$/users/username/myprojects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 75 [00:00:30.000] FileWatcher:: Added:: WatchInfo: //vda1cs4850/c$/users/username/myprojects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root -Info 76 [00:00:31.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* -Info 77 [00:00:32.000] FileWatcher:: Added:: WatchInfo: //vda1cs4850/a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 78 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: //vda1cs4850/c$/users/username/myprojects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 79 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: //vda1cs4850/c$/users/username/myprojects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots -Info 80 [00:00:35.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 81 [00:00:36.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 82 [00:00:37.000] Files (2) +Info 67 [00:00:26.000] Search path: //vda1cs4850/c$/users/username/myprojects/project +Info 68 [00:00:27.000] For info: //vda1cs4850/c$/users/username/myprojects/project/x.js :: No config files found. +Info 69 [00:00:28.000] FileWatcher:: Added:: WatchInfo: //vda1cs4850/c$/users/username/myprojects/project/tsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 70 [00:00:29.000] FileWatcher:: Added:: WatchInfo: //vda1cs4850/c$/users/username/myprojects/project/jsconfig.json 2000 undefined WatchType: Config file for the inferred project root +Info 71 [00:00:30.000] Starting updateGraphWorker: Project: /dev/null/inferredProject1* +Info 72 [00:00:31.000] FileWatcher:: Added:: WatchInfo: //vda1cs4850/a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 73 [00:00:32.000] DirectoryWatcher:: Added:: WatchInfo: //vda1cs4850/c$/users/username/myprojects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 74 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: //vda1cs4850/c$/users/username/myprojects/project/node_modules/@types 1 undefined Project: /dev/null/inferredProject1* WatchType: Type roots +Info 75 [00:00:34.000] Finishing updateGraphWorker: Project: /dev/null/inferredProject1* Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 76 [00:00:35.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 77 [00:00:36.000] Files (2) //vda1cs4850/a/lib/lib.d.ts //vda1cs4850/c$/users/username/myprojects/project/x.js @@ -406,14 +401,14 @@ Info 82 [00:00:37.000] Files (2) x.js Root file specified for compilation -Info 83 [00:00:38.000] ----------------------------------------------- -Info 84 [00:00:39.000] Project '/dev/null/inferredProject1*' (Inferred) -Info 84 [00:00:40.000] Files (2) +Info 78 [00:00:37.000] ----------------------------------------------- +Info 79 [00:00:38.000] Project '/dev/null/inferredProject1*' (Inferred) +Info 79 [00:00:39.000] Files (2) -Info 84 [00:00:41.000] ----------------------------------------------- -Info 84 [00:00:42.000] Open files: -Info 84 [00:00:43.000] FileName: //vda1cs4850/c$/users/username/myprojects/project/x.js ProjectRootPath: undefined -Info 84 [00:00:44.000] Projects: /dev/null/inferredProject1* +Info 79 [00:00:40.000] ----------------------------------------------- +Info 79 [00:00:41.000] Open files: +Info 79 [00:00:42.000] FileName: //vda1cs4850/c$/users/username/myprojects/project/x.js ProjectRootPath: undefined +Info 79 [00:00:43.000] Projects: /dev/null/inferredProject1* After request PolledWatches:: @@ -434,7 +429,7 @@ FsWatches:: FsWatchesRecursive:: -Info 84 [00:00:45.000] response: +Info 79 [00:00:44.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-is-single-watcher-per-file.js b/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-is-single-watcher-per-file.js index e1a70b7d6f66c..87b8f76ef39ee 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-is-single-watcher-per-file.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/when-watchFile-is-single-watcher-per-file.js @@ -51,19 +51,18 @@ Info 6 [00:00:27.000] Config: /user/username/projects/myproject/tsconfig.json } Info 7 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 8 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 1 undefined Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 9 [00:00:30.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 10 [00:00:31.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 11 [00:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 12 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 13 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 14 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 15 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 500 undefined WatchType: Closed Script info -Info 16 [00:00:37.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:38.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 18 [00:00:39.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 19 [00:00:40.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:00:41.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 21 [00:00:42.000] Files (3) +Info 9 [00:00:30.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 10 [00:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 11 [00:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 12 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 13 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject 0 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 14 [00:00:35.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 500 undefined WatchType: Closed Script info +Info 15 [00:00:36.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:37.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 17 [00:00:38.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 undefined Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 18 [00:00:39.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:40.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 20 [00:00:41.000] Files (3) /a/lib/lib.d.ts /user/username/projects/myproject/tsconfig.json /user/username/projects/myproject/index.ts @@ -76,16 +75,16 @@ Info 21 [00:00:42.000] Files (3) index.ts Matched by default include pattern '**/*' -Info 22 [00:00:43.000] ----------------------------------------------- -Info 23 [00:00:44.000] Search path: /user/username/projects/myproject -Info 24 [00:00:45.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. -Info 25 [00:00:46.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 25 [00:00:47.000] Files (3) +Info 21 [00:00:42.000] ----------------------------------------------- +Info 22 [00:00:43.000] Search path: /user/username/projects/myproject +Info 23 [00:00:44.000] For info: /user/username/projects/myproject/tsconfig.json :: No config files found. +Info 24 [00:00:45.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 24 [00:00:46.000] Files (3) -Info 25 [00:00:48.000] ----------------------------------------------- -Info 25 [00:00:49.000] Open files: -Info 25 [00:00:50.000] FileName: /user/username/projects/myproject/index.ts ProjectRootPath: undefined -Info 25 [00:00:51.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 24 [00:00:47.000] ----------------------------------------------- +Info 24 [00:00:48.000] Open files: +Info 24 [00:00:49.000] FileName: /user/username/projects/myproject/index.ts ProjectRootPath: undefined +Info 24 [00:00:50.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -106,7 +105,7 @@ FsWatchesRecursive:: /user/username/projects/myproject: {} -Info 25 [00:00:52.000] response: +Info 24 [00:00:51.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configFile.js b/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configFile.js index 1e4f5b6c66596..81a62f850d3ac 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configFile.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configFile.js @@ -62,18 +62,17 @@ Info 7 [00:00:38.000] FileWatcher:: Close:: WatchInfo: /user/username/project Info 8 [00:00:39.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file Info 9 [00:00:40.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 10 [00:00:41.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 11 [00:00:42.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 12 [00:00:43.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 13 [00:00:44.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 14 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 15 [00:00:46.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 16 [00:00:47.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 17 [00:00:48.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 18 [00:00:49.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [00:00:50.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 20 [00:00:51.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 21 [00:00:52.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 22 [00:00:53.000] Files (4) +Info 11 [00:00:42.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 12 [00:00:43.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 13 [00:00:44.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 undefined WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 14 [00:00:45.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 15 [00:00:46.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 16 [00:00:47.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 17 [00:00:48.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:49.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 19 [00:00:50.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 20 [00:00:51.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 21 [00:00:52.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/node_modules/bar/foo.d.ts /user/username/projects/myproject/node_modules/bar/index.d.ts @@ -89,14 +88,14 @@ Info 22 [00:00:53.000] Files (4) src/main.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 23 [00:00:54.000] ----------------------------------------------- -Info 24 [00:00:55.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 24 [00:00:56.000] Files (4) +Info 22 [00:00:53.000] ----------------------------------------------- +Info 23 [00:00:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 23 [00:00:55.000] Files (4) -Info 24 [00:00:57.000] ----------------------------------------------- -Info 24 [00:00:58.000] Open files: -Info 24 [00:00:59.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 24 [00:01:00.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 23 [00:00:56.000] ----------------------------------------------- +Info 23 [00:00:57.000] Open files: +Info 23 [00:00:58.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 23 [00:00:59.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -113,7 +112,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/node_modules: {} -Info 24 [00:01:01.000] response: +Info 23 [00:01:00.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configuration.js b/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configuration.js index 8e672be14e997..ef681215b0c75 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configuration.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/with-excludeDirectories-option-in-configuration.js @@ -98,17 +98,16 @@ Info 11 [00:00:42.000] FileWatcher:: Close:: WatchInfo: /user/username/project Info 12 [00:00:43.000] FileWatcher:: Added:: WatchInfo: /user/username/projects/myproject/tsconfig.json 2000 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Config file Info 13 [00:00:44.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory Info 14 [00:00:45.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Config: /user/username/projects/myproject/tsconfig.json WatchType: Wild card directory -Info 15 [00:00:46.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 16 [00:00:47.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json -Info 17 [00:00:48.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["node_modules"]} WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache -Info 18 [00:00:49.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 19 [00:00:50.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 {"excludeDirectories":["node_modules"]} WatchType: Closed Script info -Info 20 [00:00:51.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 21 [00:00:52.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations -Info 22 [00:00:53.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots -Info 23 [00:00:54.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 24 [00:00:55.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 25 [00:00:56.000] Files (4) +Info 15 [00:00:46.000] Starting updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json +Info 16 [00:00:47.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["node_modules"]} WatchType: node_modules for closed script infos and package.jsons affecting module specifier cache +Info 17 [00:00:48.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 18 [00:00:49.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 {"excludeDirectories":["node_modules"]} WatchType: Closed Script info +Info 19 [00:00:50.000] DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 20 [00:00:51.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/myproject/src 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Failed Lookup Locations +Info 21 [00:00:52.000] ExcludeWatcher:: Added:: WatchInfo: /user/username/projects/myproject/node_modules/@types 1 {"excludeDirectories":["/user/username/projects/myproject/node_modules"]} Project: /user/username/projects/myproject/tsconfig.json WatchType: Type roots +Info 22 [00:00:53.000] Finishing updateGraphWorker: Project: /user/username/projects/myproject/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 23 [00:00:54.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 24 [00:00:55.000] Files (4) /a/lib/lib.d.ts /user/username/projects/myproject/node_modules/bar/foo.d.ts /user/username/projects/myproject/node_modules/bar/index.d.ts @@ -124,14 +123,14 @@ Info 25 [00:00:56.000] Files (4) src/main.ts Matched by include pattern 'src' in 'tsconfig.json' -Info 26 [00:00:57.000] ----------------------------------------------- -Info 27 [00:00:58.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) -Info 27 [00:00:59.000] Files (4) +Info 25 [00:00:56.000] ----------------------------------------------- +Info 26 [00:00:57.000] Project '/user/username/projects/myproject/tsconfig.json' (Configured) +Info 26 [00:00:58.000] Files (4) -Info 27 [00:01:00.000] ----------------------------------------------- -Info 27 [00:01:01.000] Open files: -Info 27 [00:01:02.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined -Info 27 [00:01:03.000] Projects: /user/username/projects/myproject/tsconfig.json +Info 26 [00:00:59.000] ----------------------------------------------- +Info 26 [00:01:00.000] Open files: +Info 26 [00:01:01.000] FileName: /user/username/projects/myproject/src/main.ts ProjectRootPath: undefined +Info 26 [00:01:02.000] Projects: /user/username/projects/myproject/tsconfig.json After request PolledWatches:: @@ -146,7 +145,7 @@ FsWatchesRecursive:: /user/username/projects/myproject/src: {} -Info 27 [00:01:04.000] response: +Info 26 [00:01:03.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/watchEnvironment/with-fallbackPolling-option-as-host-configuration.js b/tests/baselines/reference/tsserver/watchEnvironment/with-fallbackPolling-option-as-host-configuration.js index ef7839c9dce21..66e8d9e1ed00c 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/with-fallbackPolling-option-as-host-configuration.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/with-fallbackPolling-option-as-host-configuration.js @@ -88,15 +88,14 @@ Info 10 [00:00:27.000] Config: /a/b/tsconfig.json : { } Info 11 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 {"fallbackPolling":1} Config: /a/b/tsconfig.json WatchType: Wild card directory Info 12 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 {"fallbackPolling":1} Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 13 [00:00:30.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 14 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /a/b/commonFile2.ts 500 {"fallbackPolling":1} WatchType: Closed Script info -Info 15 [00:00:32.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 16 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 {"fallbackPolling":1} WatchType: Closed Script info -Info 17 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"fallbackPolling":1} Project: /a/b/tsconfig.json WatchType: Type roots -Info 18 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"fallbackPolling":1} Project: /a/b/tsconfig.json WatchType: Type roots -Info 19 [00:00:36.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:00:37.000] Project '/a/b/tsconfig.json' (Configured) -Info 21 [00:00:38.000] Files (3) +Info 13 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /a/b/commonFile2.ts 500 {"fallbackPolling":1} WatchType: Closed Script info +Info 14 [00:00:31.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 15 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 {"fallbackPolling":1} WatchType: Closed Script info +Info 16 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"fallbackPolling":1} Project: /a/b/tsconfig.json WatchType: Type roots +Info 17 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"fallbackPolling":1} Project: /a/b/tsconfig.json WatchType: Type roots +Info 18 [00:00:35.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:36.000] Project '/a/b/tsconfig.json' (Configured) +Info 20 [00:00:37.000] Files (3) /a/lib/lib.d.ts /a/b/commonFile1.ts /a/b/commonFile2.ts @@ -109,14 +108,14 @@ Info 21 [00:00:38.000] Files (3) commonFile2.ts Matched by default include pattern '**/*' -Info 22 [00:00:39.000] ----------------------------------------------- -Info 23 [00:00:40.000] Project '/a/b/tsconfig.json' (Configured) -Info 23 [00:00:41.000] Files (3) +Info 21 [00:00:38.000] ----------------------------------------------- +Info 22 [00:00:39.000] Project '/a/b/tsconfig.json' (Configured) +Info 22 [00:00:40.000] Files (3) -Info 23 [00:00:42.000] ----------------------------------------------- -Info 23 [00:00:43.000] Open files: -Info 23 [00:00:44.000] FileName: /a/b/commonFile1.ts ProjectRootPath: /a/b -Info 23 [00:00:45.000] Projects: /a/b/tsconfig.json +Info 22 [00:00:41.000] ----------------------------------------------- +Info 22 [00:00:42.000] Open files: +Info 22 [00:00:43.000] FileName: /a/b/commonFile1.ts ProjectRootPath: /a/b +Info 22 [00:00:44.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -135,7 +134,7 @@ FsWatches:: FsWatchesRecursive:: -Info 23 [00:00:46.000] response: +Info 22 [00:00:45.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/watchEnvironment/with-fallbackPolling-option-in-configFile.js b/tests/baselines/reference/tsserver/watchEnvironment/with-fallbackPolling-option-in-configFile.js index f4d74764b3034..3076e2b6b3ea0 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/with-fallbackPolling-option-in-configFile.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/with-fallbackPolling-option-in-configFile.js @@ -91,15 +91,14 @@ Info 10 [00:00:27.000] Config: /a/b/tsconfig.json : { } Info 11 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 {"fallbackPolling":1} Config: /a/b/tsconfig.json WatchType: Wild card directory Info 12 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 {"fallbackPolling":1} Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 13 [00:00:30.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 14 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /a/b/commonFile2.ts 500 {"fallbackPolling":1} WatchType: Closed Script info -Info 15 [00:00:32.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 16 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 {"fallbackPolling":1} WatchType: Closed Script info -Info 17 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"fallbackPolling":1} Project: /a/b/tsconfig.json WatchType: Type roots -Info 18 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"fallbackPolling":1} Project: /a/b/tsconfig.json WatchType: Type roots -Info 19 [00:00:36.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:00:37.000] Project '/a/b/tsconfig.json' (Configured) -Info 21 [00:00:38.000] Files (3) +Info 13 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /a/b/commonFile2.ts 500 {"fallbackPolling":1} WatchType: Closed Script info +Info 14 [00:00:31.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 15 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 {"fallbackPolling":1} WatchType: Closed Script info +Info 16 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"fallbackPolling":1} Project: /a/b/tsconfig.json WatchType: Type roots +Info 17 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"fallbackPolling":1} Project: /a/b/tsconfig.json WatchType: Type roots +Info 18 [00:00:35.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:36.000] Project '/a/b/tsconfig.json' (Configured) +Info 20 [00:00:37.000] Files (3) /a/lib/lib.d.ts /a/b/commonFile1.ts /a/b/commonFile2.ts @@ -112,14 +111,14 @@ Info 21 [00:00:38.000] Files (3) commonFile2.ts Matched by default include pattern '**/*' -Info 22 [00:00:39.000] ----------------------------------------------- -Info 23 [00:00:40.000] Project '/a/b/tsconfig.json' (Configured) -Info 23 [00:00:41.000] Files (3) +Info 21 [00:00:38.000] ----------------------------------------------- +Info 22 [00:00:39.000] Project '/a/b/tsconfig.json' (Configured) +Info 22 [00:00:40.000] Files (3) -Info 23 [00:00:42.000] ----------------------------------------------- -Info 23 [00:00:43.000] Open files: -Info 23 [00:00:44.000] FileName: /a/b/commonFile1.ts ProjectRootPath: /a/b -Info 23 [00:00:45.000] Projects: /a/b/tsconfig.json +Info 22 [00:00:41.000] ----------------------------------------------- +Info 22 [00:00:42.000] Open files: +Info 22 [00:00:43.000] FileName: /a/b/commonFile1.ts ProjectRootPath: /a/b +Info 22 [00:00:44.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -138,7 +137,7 @@ FsWatches:: FsWatchesRecursive:: -Info 23 [00:00:46.000] response: +Info 22 [00:00:45.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/watchEnvironment/with-watchDirectory-option-as-host-configuration.js b/tests/baselines/reference/tsserver/watchEnvironment/with-watchDirectory-option-as-host-configuration.js index c1d3c475d0566..38af87196dd31 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/with-watchDirectory-option-as-host-configuration.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/with-watchDirectory-option-as-host-configuration.js @@ -88,15 +88,14 @@ Info 10 [00:00:27.000] Config: /a/b/tsconfig.json : { } Info 11 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 {"watchDirectory":0} Config: /a/b/tsconfig.json WatchType: Wild card directory Info 12 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 {"watchDirectory":0} Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 13 [00:00:30.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 14 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /a/b/commonFile2.ts 500 {"watchDirectory":0} WatchType: Closed Script info -Info 15 [00:00:32.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 16 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 {"watchDirectory":0} WatchType: Closed Script info -Info 17 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"watchDirectory":0} Project: /a/b/tsconfig.json WatchType: Type roots -Info 18 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"watchDirectory":0} Project: /a/b/tsconfig.json WatchType: Type roots -Info 19 [00:00:36.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:00:37.000] Project '/a/b/tsconfig.json' (Configured) -Info 21 [00:00:38.000] Files (3) +Info 13 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /a/b/commonFile2.ts 500 {"watchDirectory":0} WatchType: Closed Script info +Info 14 [00:00:31.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 15 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 {"watchDirectory":0} WatchType: Closed Script info +Info 16 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"watchDirectory":0} Project: /a/b/tsconfig.json WatchType: Type roots +Info 17 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"watchDirectory":0} Project: /a/b/tsconfig.json WatchType: Type roots +Info 18 [00:00:35.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:36.000] Project '/a/b/tsconfig.json' (Configured) +Info 20 [00:00:37.000] Files (3) /a/lib/lib.d.ts /a/b/commonFile1.ts /a/b/commonFile2.ts @@ -109,14 +108,14 @@ Info 21 [00:00:38.000] Files (3) commonFile2.ts Matched by default include pattern '**/*' -Info 22 [00:00:39.000] ----------------------------------------------- -Info 23 [00:00:40.000] Project '/a/b/tsconfig.json' (Configured) -Info 23 [00:00:41.000] Files (3) +Info 21 [00:00:38.000] ----------------------------------------------- +Info 22 [00:00:39.000] Project '/a/b/tsconfig.json' (Configured) +Info 22 [00:00:40.000] Files (3) -Info 23 [00:00:42.000] ----------------------------------------------- -Info 23 [00:00:43.000] Open files: -Info 23 [00:00:44.000] FileName: /a/b/commonFile1.ts ProjectRootPath: /a/b -Info 23 [00:00:45.000] Projects: /a/b/tsconfig.json +Info 22 [00:00:41.000] ----------------------------------------------- +Info 22 [00:00:42.000] Open files: +Info 22 [00:00:43.000] FileName: /a/b/commonFile1.ts ProjectRootPath: /a/b +Info 22 [00:00:44.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -135,7 +134,7 @@ FsWatches:: FsWatchesRecursive:: -Info 23 [00:00:46.000] response: +Info 22 [00:00:45.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/watchEnvironment/with-watchDirectory-option-in-configFile.js b/tests/baselines/reference/tsserver/watchEnvironment/with-watchDirectory-option-in-configFile.js index 50fd5850c7d89..da2bcc6370003 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/with-watchDirectory-option-in-configFile.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/with-watchDirectory-option-in-configFile.js @@ -59,15 +59,14 @@ Info 7 [00:00:24.000] FileWatcher:: Close:: WatchInfo: /a/b/tsconfig.json 200 Info 8 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 {"watchDirectory":0} Project: /a/b/tsconfig.json WatchType: Config file Info 9 [00:00:26.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 {"watchDirectory":0} Config: /a/b/tsconfig.json WatchType: Wild card directory Info 10 [00:00:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 {"watchDirectory":0} Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 11 [00:00:28.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 12 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /a/b/commonFile2.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:30.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 14 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"watchDirectory":0} Project: /a/b/tsconfig.json WatchType: Type roots -Info 16 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"watchDirectory":0} Project: /a/b/tsconfig.json WatchType: Type roots -Info 17 [00:00:34.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 18 [00:00:35.000] Project '/a/b/tsconfig.json' (Configured) -Info 19 [00:00:36.000] Files (3) +Info 11 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /a/b/commonFile2.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:29.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 13 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"watchDirectory":0} Project: /a/b/tsconfig.json WatchType: Type roots +Info 15 [00:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"watchDirectory":0} Project: /a/b/tsconfig.json WatchType: Type roots +Info 16 [00:00:33.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:00:34.000] Project '/a/b/tsconfig.json' (Configured) +Info 18 [00:00:35.000] Files (3) /a/lib/lib.d.ts /a/b/commonFile1.ts /a/b/commonFile2.ts @@ -80,14 +79,14 @@ Info 19 [00:00:36.000] Files (3) commonFile2.ts Matched by default include pattern '**/*' -Info 20 [00:00:37.000] ----------------------------------------------- -Info 21 [00:00:38.000] Project '/a/b/tsconfig.json' (Configured) -Info 21 [00:00:39.000] Files (3) +Info 19 [00:00:36.000] ----------------------------------------------- +Info 20 [00:00:37.000] Project '/a/b/tsconfig.json' (Configured) +Info 20 [00:00:38.000] Files (3) -Info 21 [00:00:40.000] ----------------------------------------------- -Info 21 [00:00:41.000] Open files: -Info 21 [00:00:42.000] FileName: /a/b/commonFile1.ts ProjectRootPath: /a/b -Info 21 [00:00:43.000] Projects: /a/b/tsconfig.json +Info 20 [00:00:39.000] ----------------------------------------------- +Info 20 [00:00:40.000] Open files: +Info 20 [00:00:41.000] FileName: /a/b/commonFile1.ts ProjectRootPath: /a/b +Info 20 [00:00:42.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -106,7 +105,7 @@ FsWatches:: FsWatchesRecursive:: -Info 21 [00:00:44.000] response: +Info 20 [00:00:43.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/watchEnvironment/with-watchFile-option-as-host-configuration.js b/tests/baselines/reference/tsserver/watchEnvironment/with-watchFile-option-as-host-configuration.js index 9cda816b2d9b8..a0fddae4c0d14 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/with-watchFile-option-as-host-configuration.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/with-watchFile-option-as-host-configuration.js @@ -88,15 +88,14 @@ Info 10 [00:00:27.000] Config: /a/b/tsconfig.json : { } Info 11 [00:00:28.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 {"watchFile":4} Config: /a/b/tsconfig.json WatchType: Wild card directory Info 12 [00:00:29.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 {"watchFile":4} Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 13 [00:00:30.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 14 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /a/b/commonFile2.ts 500 {"watchFile":4} WatchType: Closed Script info -Info 15 [00:00:32.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 16 [00:00:33.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 {"watchFile":4} WatchType: Closed Script info -Info 17 [00:00:34.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"watchFile":4} Project: /a/b/tsconfig.json WatchType: Type roots -Info 18 [00:00:35.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"watchFile":4} Project: /a/b/tsconfig.json WatchType: Type roots -Info 19 [00:00:36.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 20 [00:00:37.000] Project '/a/b/tsconfig.json' (Configured) -Info 21 [00:00:38.000] Files (3) +Info 13 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /a/b/commonFile2.ts 500 {"watchFile":4} WatchType: Closed Script info +Info 14 [00:00:31.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 15 [00:00:32.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 {"watchFile":4} WatchType: Closed Script info +Info 16 [00:00:33.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"watchFile":4} Project: /a/b/tsconfig.json WatchType: Type roots +Info 17 [00:00:34.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"watchFile":4} Project: /a/b/tsconfig.json WatchType: Type roots +Info 18 [00:00:35.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 19 [00:00:36.000] Project '/a/b/tsconfig.json' (Configured) +Info 20 [00:00:37.000] Files (3) /a/lib/lib.d.ts /a/b/commonFile1.ts /a/b/commonFile2.ts @@ -109,14 +108,14 @@ Info 21 [00:00:38.000] Files (3) commonFile2.ts Matched by default include pattern '**/*' -Info 22 [00:00:39.000] ----------------------------------------------- -Info 23 [00:00:40.000] Project '/a/b/tsconfig.json' (Configured) -Info 23 [00:00:41.000] Files (3) +Info 21 [00:00:38.000] ----------------------------------------------- +Info 22 [00:00:39.000] Project '/a/b/tsconfig.json' (Configured) +Info 22 [00:00:40.000] Files (3) -Info 23 [00:00:42.000] ----------------------------------------------- -Info 23 [00:00:43.000] Open files: -Info 23 [00:00:44.000] FileName: /a/b/commonFile1.ts ProjectRootPath: /a/b -Info 23 [00:00:45.000] Projects: /a/b/tsconfig.json +Info 22 [00:00:41.000] ----------------------------------------------- +Info 22 [00:00:42.000] Open files: +Info 22 [00:00:43.000] FileName: /a/b/commonFile1.ts ProjectRootPath: /a/b +Info 22 [00:00:44.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -135,7 +134,7 @@ FsWatchesRecursive:: /a/b: {} -Info 23 [00:00:46.000] response: +Info 22 [00:00:45.000] response: { "responseRequired": false } \ No newline at end of file diff --git a/tests/baselines/reference/tsserver/watchEnvironment/with-watchFile-option-in-configFile.js b/tests/baselines/reference/tsserver/watchEnvironment/with-watchFile-option-in-configFile.js index 2b1435794368e..a7899083dcce5 100644 --- a/tests/baselines/reference/tsserver/watchEnvironment/with-watchFile-option-in-configFile.js +++ b/tests/baselines/reference/tsserver/watchEnvironment/with-watchFile-option-in-configFile.js @@ -59,15 +59,14 @@ Info 7 [00:00:24.000] FileWatcher:: Close:: WatchInfo: /a/b/tsconfig.json 200 Info 8 [00:00:25.000] FileWatcher:: Added:: WatchInfo: /a/b/tsconfig.json 2000 {"watchFile":4} Project: /a/b/tsconfig.json WatchType: Config file Info 9 [00:00:26.000] DirectoryWatcher:: Added:: WatchInfo: /a/b 1 {"watchFile":4} Config: /a/b/tsconfig.json WatchType: Wild card directory Info 10 [00:00:27.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b 1 {"watchFile":4} Config: /a/b/tsconfig.json WatchType: Wild card directory -Info 11 [00:00:28.000] Plugins were requested but not running in environment that supports 'require'. Nothing will be loaded -Info 12 [00:00:29.000] FileWatcher:: Added:: WatchInfo: /a/b/commonFile2.ts 500 undefined WatchType: Closed Script info -Info 13 [00:00:30.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json -Info 14 [00:00:31.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info -Info 15 [00:00:32.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"watchFile":4} Project: /a/b/tsconfig.json WatchType: Type roots -Info 16 [00:00:33.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"watchFile":4} Project: /a/b/tsconfig.json WatchType: Type roots -Info 17 [00:00:34.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms -Info 18 [00:00:35.000] Project '/a/b/tsconfig.json' (Configured) -Info 19 [00:00:36.000] Files (3) +Info 11 [00:00:28.000] FileWatcher:: Added:: WatchInfo: /a/b/commonFile2.ts 500 undefined WatchType: Closed Script info +Info 12 [00:00:29.000] Starting updateGraphWorker: Project: /a/b/tsconfig.json +Info 13 [00:00:30.000] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info +Info 14 [00:00:31.000] DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"watchFile":4} Project: /a/b/tsconfig.json WatchType: Type roots +Info 15 [00:00:32.000] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /a/b/node_modules/@types 1 {"watchFile":4} Project: /a/b/tsconfig.json WatchType: Type roots +Info 16 [00:00:33.000] Finishing updateGraphWorker: Project: /a/b/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms +Info 17 [00:00:34.000] Project '/a/b/tsconfig.json' (Configured) +Info 18 [00:00:35.000] Files (3) /a/lib/lib.d.ts /a/b/commonFile1.ts /a/b/commonFile2.ts @@ -80,14 +79,14 @@ Info 19 [00:00:36.000] Files (3) commonFile2.ts Matched by default include pattern '**/*' -Info 20 [00:00:37.000] ----------------------------------------------- -Info 21 [00:00:38.000] Project '/a/b/tsconfig.json' (Configured) -Info 21 [00:00:39.000] Files (3) +Info 19 [00:00:36.000] ----------------------------------------------- +Info 20 [00:00:37.000] Project '/a/b/tsconfig.json' (Configured) +Info 20 [00:00:38.000] Files (3) -Info 21 [00:00:40.000] ----------------------------------------------- -Info 21 [00:00:41.000] Open files: -Info 21 [00:00:42.000] FileName: /a/b/commonFile1.ts ProjectRootPath: /a/b -Info 21 [00:00:43.000] Projects: /a/b/tsconfig.json +Info 20 [00:00:39.000] ----------------------------------------------- +Info 20 [00:00:40.000] Open files: +Info 20 [00:00:41.000] FileName: /a/b/commonFile1.ts ProjectRootPath: /a/b +Info 20 [00:00:42.000] Projects: /a/b/tsconfig.json After request PolledWatches:: @@ -106,7 +105,7 @@ FsWatchesRecursive:: /a/b: {} -Info 21 [00:00:44.000] response: +Info 20 [00:00:43.000] response: { "responseRequired": false } \ No newline at end of file